| | |
| | | SalePrice string `json:"salePrice"` //销售单价 |
| | | Valorem string `json:"valorem"` //价税合计 |
| | | Warehouse string `json:"warehouse"` |
| | | Amount string `json:"amount"` //在库数量 |
| | | Amount string `json:"amount"` //出库数量 |
| | | AvailableNumber string `json:"availableNumber"` //可用库存 |
| | | Status int `json:"status"` //0就绪 1完成 |
| | | } |
| | | type OutputInfo struct { |
| | | Number string `json:"number"` //产品编码 |
| | |
| | | Unit string `json:"unit"` //单位 |
| | | Amount decimal.Decimal `json:"amount"` //订单数量 |
| | | FinishAmount int64 `json:"finishAmount"` //完成数量 |
| | | DeliveryAmount int64 `json:"deliveryAmount"` //发货数量 |
| | | DeliveryAmount int `json:"deliveryAmount"` //发货数量 |
| | | PurchaseAmount int64 `json:"purchaseAmount"` //采购数量 |
| | | PurchaseFinishAmount int64 `json:"purchaseFinishAmount"` //采购完成数量 |
| | | MakeAmount int64 `json:"makeAmount"` //制造数量 |