diff --git a/erp/shipment/modify/saleProduct.go b/erp/shipment/modify/saleProduct.go index e7698c6..c3abb2b 100644 --- a/erp/shipment/modify/saleProduct.go +++ b/erp/shipment/modify/saleProduct.go @@ -56,6 +56,8 @@ type SaleProductItem struct { TotalCustomsGrossWeight decimal.Decimal `json:"totalCustomsGrossWeight"` SalePrice decimal.Decimal `json:"salePrice"` SaleAmount decimal.Decimal `json:"saleAmount"` + CustomsPrice decimal.Decimal `json:"customsPrice"` + CustomsAmount decimal.Decimal `json:"customsAmount"` FactoryName string `json:"factoryName"` CurrencyRate decimal.Decimal `json:"currencyRate"` Brand string `json:"brand"` @@ -202,6 +204,8 @@ type SaleProductEdit struct { CustomsGrossWeight decimal.Decimal // 报关毛重 TotalCustomsGrossWeight decimal.Decimal // 报关总毛重 SalePrice decimal.Decimal // 销售单价 + CustomsPrice decimal.Decimal // 报关单价 + CustomsAmount decimal.Decimal // 报关总价 CustomsBrand string // 品牌 DomesticSupply string // 货源地 FactoryName string // 工厂名称 diff --git a/erp/shipment/saleProduct.go b/erp/shipment/saleProduct.go index 371d1fc..cad90e3 100644 --- a/erp/shipment/saleProduct.go +++ b/erp/shipment/saleProduct.go @@ -57,6 +57,8 @@ type SaleProductItem struct { TotalCustomsGrossWeight decimal.Decimal `json:"totalCustomsGrossWeight"` SalePrice decimal.Decimal `json:"salePrice"` SaleAmount decimal.Decimal `json:"saleAmount"` + CustomsPrice decimal.Decimal `json:"customsPrice"` + CustomsAmount decimal.Decimal `json:"customsAmount"` FactoryName string `json:"factoryName"` CurrencyRate decimal.Decimal `json:"currencyRate"` Brand string `json:"brand"` @@ -207,6 +209,8 @@ type SaleProductEdit struct { TotalCustomsGrossWeight decimal.Decimal // 报关总毛重 SalePrice decimal.Decimal // 销售单价 CustomsBrand string // 品牌 + CustomsPrice decimal.Decimal // 报关价格 + CustomsAmount decimal.Decimal // 报关总价 DomesticSupply string // 货源地 FactoryName string // 工厂名称 HsSerial int64 // 是否商检 1=商检 2=未商检