Compare commits

..

No commits in common. "570cf7b8f18da79ee364f528dbe272ed349c71aa" and "308825f9c214f63a8e1fecc4bb1c1efd9b712eed" have entirely different histories.

1 changed files with 5 additions and 1 deletions

View File

@ -33,7 +33,7 @@ type ORPayload struct {
CustomerEmail string `json:"customer_email"`
PackType string `json:"pack_type"`
PriorityType string `json:"priority_type"`
WarehouseCode string `json:"warehouse_code"`
Warehouse ORWarehouse `json:"warehouse"`
}
type ORProductLine struct {
@ -58,6 +58,10 @@ type ProdCondType struct {
Name string `json:"name"`
}
type ORWarehouse struct {
WarehouseId int `json:"warehouse_id"`
}
type ORResult struct {
OrCode string `json:"or_code"`
OrId int `json:"or_id"`