feat: add installment no to quotation data

This is for when issue invoice.
This commit is contained in:
Methapon Metanipat 2024-10-25 09:01:32 +07:00
parent af463ee509
commit 73ec9bd323
3 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "QuotationProductServiceList" ADD COLUMN "installmentNo" INTEGER;

View file

@ -1208,6 +1208,8 @@ model QuotationProductServiceList {
discount Float
pricePerUnit Float
installmentNo Int?
productId String
product Product @relation(fields: [productId], references: [id])