25 lines
769 B
Go
25 lines
769 B
Go
package models
|
|
|
|
type OrderProductionUpdateLine struct {
|
|
OrderLineID string `json:"OrderLineID"`
|
|
NewItemCode string `json:"NewItemCode"`
|
|
NewColor string `json:"NewColor"`
|
|
NewDim2 string `json:"NewDim2"`
|
|
NewDesc string `json:"NewDesc"`
|
|
}
|
|
|
|
type OrderProductionUpdatePayload struct {
|
|
Lines []OrderProductionUpdateLine `json:"lines"`
|
|
InsertMissing bool `json:"insertMissing"`
|
|
}
|
|
|
|
type OrderProductionMissingVariant struct {
|
|
OrderLineID string `json:"OrderLineID"`
|
|
ItemTypeCode int16 `json:"ItemTypeCode"`
|
|
ItemCode string `json:"ItemCode"`
|
|
ColorCode string `json:"ColorCode"`
|
|
ItemDim1Code string `json:"ItemDim1Code"`
|
|
ItemDim2Code string `json:"ItemDim2Code"`
|
|
ItemDim3Code string `json:"ItemDim3Code"`
|
|
}
|