commit
16e50a081b
|
@ -37,7 +37,7 @@ func (o Order) UpdateORStatus(p model.OrderUpdateORStatus) error {
|
|||
|
||||
// CancelDelivery ...
|
||||
func (o Order) CancelDelivery(p model.OrderCancelDelivery) error {
|
||||
msg, err := natsio.GetServer().Request(subject.Order.UpdateORStatus, toBytes(p))
|
||||
msg, err := natsio.GetServer().Request(subject.Order.CancelDelivery, toBytes(p))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
|
@ -26,3 +26,8 @@ func (e JSONEncoder) Subscribe(subject string, cb nats.Handler) (*nats.Subscript
|
|||
func (e JSONEncoder) Publish(reply string, data interface{}) error {
|
||||
return e.encConn.Publish(reply, data)
|
||||
}
|
||||
|
||||
// Request ...
|
||||
func (e JSONEncoder) Request(subject string, data interface{}, res interface{}) error {
|
||||
return e.encConn.Request(subject, data, res, requestTimeout)
|
||||
}
|
||||
|
|
|
@ -47,9 +47,9 @@ type WarehousePaymentMethod struct {
|
|||
// WarehouseDelivery ...
|
||||
type WarehouseDelivery struct {
|
||||
DeliveryMethods []string `json:"deliveryMethods"`
|
||||
PriorityServiceCodes []string `json:"priorityDeliveryServiceCodes"`
|
||||
EnabledSources []int `json:"enabledDeliverySources"`
|
||||
Types []string `json:"type"`
|
||||
PriorityServiceCodes []string `json:"priorityServiceCodes"`
|
||||
EnabledSources []int `json:"enabledSources"`
|
||||
Types []string `json:"types"`
|
||||
}
|
||||
|
||||
// WarehousePartner ...
|
||||
|
|
Loading…
Reference in New Issue