feat(crm): add deal create/update controls with status and payment

This commit is contained in:
Ruslan Bakiev
2026-02-27 09:44:15 +07:00
parent 881a8c6d39
commit 12af9979ab
13 changed files with 907 additions and 94 deletions

View File

@@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE "Deal" ADD COLUMN "paidAmount" INTEGER;

View File

@@ -342,6 +342,7 @@ model Deal {
title String
stage String
amount Int?
paidAmount Int?
nextStep String?
summary String?
currentStepId String?