feat: add request cancel field

This commit is contained in:
Methapon2001 2025-03-05 09:33:06 +07:00
parent 5842935a54
commit 1f2a063974

View file

@ -1442,6 +1442,9 @@ model RequestData {
requestDataStatus RequestDataStatus @default(Pending)
customerRequestCancel Boolean?
customerRequestCancelReason String?
flow Json?
requestWork RequestWork[]
@ -1477,6 +1480,9 @@ model RequestWork {
stepStatus RequestWorkStepStatus[]
customerRequestCancel Boolean?
customerRequestCancelReason String?
creditNote CreditNote? @relation(fields: [creditNoteId], references: [id], onDelete: SetNull)
creditNoteId String?
}