From 9502903793b630c84c0e043aeaeb537e76220da3 Mon Sep 17 00:00:00 2001 From: kanade Date: Fri, 27 Sep 2024 15:51:08 +0800 Subject: [PATCH] =?UTF-8?q?=E9=83=A8=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- erp/shipment.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/erp/shipment.go b/erp/shipment.go index 14b7df2..8e44a46 100644 --- a/erp/shipment.go +++ b/erp/shipment.go @@ -216,10 +216,11 @@ func (s *shipment) Edit(ctx context.Context, args ArgsShipmentEdit) (err error) } type ReplyCustoms struct { - CostAmount decimal.Decimal `json:"costAmount"` - CustomsCostAmount decimal.Decimal `json:"customsCostAmount"` - SaleTotalAmount decimal.Decimal `json:"saleTotalAmount"` - Products []CustomsProductItem `json:"products"` + CostAmount decimal.Decimal `json:"costAmount"` + CustomsCostAmount decimal.Decimal `json:"customsCostAmount"` + SaleTotalAmount decimal.Decimal `json:"saleTotalAmount"` + CustomsTotalAmount decimal.Decimal `json:"customsTotalAmount"` + Products []CustomsProductItem `json:"products"` } type CustomsProductItem struct {