feat: add separate calc vat field
This commit is contained in:
parent
3b60582e66
commit
8535924d53
3 changed files with 22 additions and 4 deletions
|
|
@ -1103,10 +1103,16 @@ model Product {
|
|||
price Float
|
||||
agentPrice Float
|
||||
serviceCharge Float
|
||||
vatIncluded Boolean?
|
||||
expenseType String?
|
||||
|
||||
calcVat Boolean @default(true)
|
||||
vatIncluded Boolean @default(true)
|
||||
calcVat Boolean @default(true)
|
||||
|
||||
agentPriceVatIncluded Boolean? @default(true)
|
||||
agentPriceCalcVat Boolean? @default(true)
|
||||
|
||||
serviceChargeVatIncluded Boolean? @default(true)
|
||||
serviceChargeCalcVat Boolean? @default(true)
|
||||
|
||||
status Status @default(CREATED)
|
||||
statusOrder Int @default(0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue