refactor(FE-311): Remove credit_term from purchase request data and UI

This commit is contained in:
rstubryan
2025-12-09 10:13:48 +07:00
parent a45de4fb13
commit 8e80d668fa
4 changed files with 2 additions and 88 deletions
-2
View File
@@ -51,7 +51,6 @@ export type BasePurchase = {
po_document_path?: string | null;
po_date: string;
supplier: Supplier;
credit_term?: number;
due_date: string;
notes?: string | null;
deleted_at?: string | null;
@@ -67,7 +66,6 @@ export type Purchase = BaseMetadata & BasePurchase;
export type CreatePurchaseRequestPayload = {
supplier_id: number;
credit_term: number;
notes?: string | null;
items: {
warehouse_id: number;