| | |
| | | import ( |
| | | "aps_crm/constvar" |
| | | "aps_crm/model" |
| | | "github.com/shopspring/decimal" |
| | | ) |
| | | |
| | | type AddSalesDetails struct { |
| | |
| | | ClientId int `json:"clientId"` //客户id |
| | | Number string `json:"number"` //销售明细单号 |
| | | } |
| | | |
| | | // ConfirmOutput 发货 |
| | | type ConfirmOutput struct { |
| | | SaleDetailNumber string `json:"saleDetailNumber"` |
| | | Products []ConfirmOutputProducts `json:"products"` |
| | | } |
| | | |
| | | // ConfirmOutputOver 确认发货完成 |
| | | type ConfirmOutputOver struct { |
| | | SaleDetailNumber string `json:"saleDetailNumber"` |
| | | } |
| | | |
| | | type ConfirmOutputProducts struct { |
| | | Number string `json:"number"` //产品编号 |
| | | OutputAmount decimal.Decimal `json:"outputAmount"` //本次发货数量 |
| | | } |