feat: add remark field to credit note form and payload

This commit is contained in:
puriphatt 2025-01-14 11:07:57 +07:00
parent 283c08ae2e
commit 7d1f32a5cb
2 changed files with 18 additions and 13 deletions

View file

@ -5,6 +5,7 @@ import { CreatedBy } from '../types';
export type CreditNotePayload = {
quotationId: string;
requestWorkId: string[];
remark?: string;
reason: string;
detail: string;
paybackType: 'BankTransfer' | 'Cash';
@ -21,6 +22,7 @@ export type CreditNote = {
quotationId: string;
quotation: QuotationFull;
requestWork: RequestWork[];
remark?: string;
reason: string;
detail: string;
paybackType: 'BankTransfer' | 'Cash';