Merge branch 'feature/selly-mall-v1-kin' into develop
This commit is contained in:
commit
4b728e559d
|
@ -202,3 +202,23 @@ func (w Warehouse) UpdateStatusWarehousePendingInactive(p model.UpdateStatusWare
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UpdateIsSellyMall ...
|
||||||
|
func (w Warehouse) UpdateIsSellyMall(p model.UpdateIsSellyMallRequest) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.UpdateIsSellyMall, toBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return fmt.Errorf("nats: update_is_selly_mall %v", err)
|
||||||
|
}
|
||||||
|
if r.Error != "" {
|
||||||
|
return errors.New(r.Error)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
|
@ -120,6 +120,11 @@ type UpdateStatusWarehousePendingInactiveRequest struct {
|
||||||
Warehouses []UpdateStatusWarehousePendingInactive `json:"warehouses"`
|
Warehouses []UpdateStatusWarehousePendingInactive `json:"warehouses"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UpdateIsSellyMallRequest ...
|
||||||
|
type UpdateIsSellyMallRequest struct {
|
||||||
|
SupplierID string `json:"supplier"`
|
||||||
|
}
|
||||||
|
|
||||||
// UpdateStatusWarehousePendingInactive ...
|
// UpdateStatusWarehousePendingInactive ...
|
||||||
type UpdateStatusWarehousePendingInactive struct {
|
type UpdateStatusWarehousePendingInactive struct {
|
||||||
WarehouseID string `json:"warehouse"`
|
WarehouseID string `json:"warehouse"`
|
||||||
|
|
|
@ -31,6 +31,7 @@ var Warehouse = struct {
|
||||||
GetWarehouses string
|
GetWarehouses string
|
||||||
UpdateORDeliveryStatus string
|
UpdateORDeliveryStatus string
|
||||||
UpdateStatusWarehousePendingInactive string
|
UpdateStatusWarehousePendingInactive string
|
||||||
|
UpdateIsSellyMall string
|
||||||
}{
|
}{
|
||||||
SyncWarehouseIntoServiceSupplier: getWarehouseValue("sync_warehouse_into_service_supplier"),
|
SyncWarehouseIntoServiceSupplier: getWarehouseValue("sync_warehouse_into_service_supplier"),
|
||||||
CreateWarehouseIntoServiceSupplier: getWarehouseValue("create_warehouse_into_service_supplier"),
|
CreateWarehouseIntoServiceSupplier: getWarehouseValue("create_warehouse_into_service_supplier"),
|
||||||
|
@ -54,4 +55,5 @@ var Warehouse = struct {
|
||||||
GetWarehouses: getWarehouseValue("get_warehouses"),
|
GetWarehouses: getWarehouseValue("get_warehouses"),
|
||||||
UpdateORDeliveryStatus: getWarehouseValue("update_or_delivery_status"),
|
UpdateORDeliveryStatus: getWarehouseValue("update_or_delivery_status"),
|
||||||
UpdateStatusWarehousePendingInactive: getWarehouseValue("update_pending_active_product_by_warehouse_ids"),
|
UpdateStatusWarehousePendingInactive: getWarehouseValue("update_pending_active_product_by_warehouse_ids"),
|
||||||
|
UpdateIsSellyMall: getWarehouseValue("update_is_selly_mall"),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue