76 lines
1.9 KiB
Go
76 lines
1.9 KiB
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"errors"
|
||
|
|
||
|
"github.com/Selly-Modules/natsio"
|
||
|
"github.com/Selly-Modules/natsio/model"
|
||
|
"github.com/Selly-Modules/natsio/subject"
|
||
|
)
|
||
|
|
||
|
// Warehouse ...
|
||
|
type Warehouse struct{}
|
||
|
|
||
|
// GetWarehouse ...
|
||
|
func GetWarehouse() Warehouse {
|
||
|
return Warehouse{}
|
||
|
}
|
||
|
|
||
|
// CreateOutboundRequest ...
|
||
|
func (w Warehouse) CreateOutboundRequest(p model.OutboundRequestPayload) (*model.OutboundRequestResponse, error) {
|
||
|
msg, err := natsio.GetServer().Request(subject.WarehouseCreateOutboundRequest, toBytes(p))
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
var r struct {
|
||
|
Data *model.OutboundRequestResponse `json:"data"`
|
||
|
Error string `json:"error"`
|
||
|
}
|
||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if r.Error != "" {
|
||
|
return nil, errors.New(r.Error)
|
||
|
}
|
||
|
return r.Data, nil
|
||
|
}
|
||
|
|
||
|
// UpdateOutboundRequestLogisticInfo ...
|
||
|
func (w Warehouse) UpdateOutboundRequestLogisticInfo(p model.UpdateOutboundRequestLogisticInfoPayload) error {
|
||
|
msg, err := natsio.GetServer().Request(subject.WarehouseUpdateOutboundRequestLogistic, toBytes(p))
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
var r struct {
|
||
|
Data *model.OutboundRequestResponse `json:"data"`
|
||
|
Error string `json:"error"`
|
||
|
}
|
||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
if r.Error != "" {
|
||
|
return errors.New(r.Error)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// GetConfigByWarehouseID ...
|
||
|
func (w Warehouse) GetConfigByWarehouseID(warehouseID string) (*model.WarehouseConfiguration, error) {
|
||
|
msg, err := natsio.GetServer().Request(subject.WarehouseGetConfiguration, toBytes(warehouseID))
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
var r struct {
|
||
|
Data *model.WarehouseConfiguration `json:"data"`
|
||
|
Error string `json:"error"`
|
||
|
}
|
||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if r.Error != "" {
|
||
|
return nil, errors.New(r.Error)
|
||
|
}
|
||
|
return r.Data, nil
|
||
|
}
|