diff --git a/erp/accounting/product.go b/erp/accounting/product.go index d118d1c..d7434dd 100644 --- a/erp/accounting/product.go +++ b/erp/accounting/product.go @@ -30,6 +30,7 @@ type ProductItem struct { OuterNum *int64 `json:"outerNum"` BoxCount int64 `json:"boxCount"` PurchasePrice decimal.Decimal `json:"purchasePrice"` + InvoiceAmount decimal.Decimal `json:"invoiceAmount"` Amount decimal.Decimal `json:"amount"` Volume *decimal.Decimal `json:"volume"` TotalVolume decimal.Decimal `json:"totalVolume"` diff --git a/erp/receipt/claim.go b/erp/receipt/claim.go index 5070f91..0cd37fd 100644 --- a/erp/receipt/claim.go +++ b/erp/receipt/claim.go @@ -55,6 +55,7 @@ type ClaimAdd struct { Amount decimal.Decimal // 应收金额 Remarks string // 备注 InvoiceSerial string // 发票编号 + CustomId int64 // 客户ID } // Add @TITLE 添加