onpoint-stock-update #166
|
@ -130,3 +130,7 @@ type UpdateStatusWarehousePendingInactive struct {
|
|||
WarehouseID string `json:"warehouse"`
|
||||
PendingInactive bool `json:"pendingInactive"`
|
||||
}
|
||||
|
||||
type GetListWarehouseConfigReq struct {
|
||||
ConfigPartnerCode string `json:"configPartnerCode"`
|
||||
}
|
||||
|
|
|
@ -181,3 +181,9 @@ type GetWarehousesResponse struct {
|
|||
Limit int64 `json:"limit"`
|
||||
List []WarehouseInfo `json:"list"`
|
||||
}
|
||||
|
||||
type GetListWarehouseConfigRes struct {
|
||||
Total int64 `json:"total"`
|
||||
Limit int64 `json:"limit"`
|
||||
List []WarehouseConfiguration `json:"list"`
|
||||
}
|
||||
|
|
|
@ -32,6 +32,7 @@ var Warehouse = struct {
|
|||
UpdateIsSellyMall string
|
||||
UpdateWarehouseConfig string
|
||||
BulkWriteWarehouseConfig string
|
||||
GetListWarehouseConfig string
|
||||
}{
|
||||
CreateWarehouseIntoServiceSupplier: getWarehouseValue("create_warehouse_into_service_supplier"),
|
||||
UpdateWarehouseIntoServiceSupplier: getWarehouseValue("update_warehouse_into_service_supplier"),
|
||||
|
@ -56,4 +57,5 @@ var Warehouse = struct {
|
|||
UpdateIsSellyMall: getWarehouseValue("update_is_selly_mall"),
|
||||
UpdateWarehouseConfig: getWarehouseValue("update_warehouse_config"),
|
||||
BulkWriteWarehouseConfig: getWarehouseValue("bulk_write_warehouse_config"),
|
||||
GetListWarehouseConfig: getWarehouseValue("get_list_warehouse_config"),
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue