Compare commits
	
		
			8 Commits
		
	
	
		
			master
			...
			integrate-
		
	
	| Author | SHA1 | Date | 
|---|---|---|
| 
							
							
								 | 
						1b89d5f368 | |
| 
							
							
								 | 
						86845399e3 | |
| 
							
							
								 | 
						baf8a98e35 | |
| 
							
							
								 | 
						d06719b0e6 | |
| 
							
							
								 | 
						73181bc583 | |
| 
							
							
								 | 
						9e4e6868a4 | |
| 
							
							
								 | 
						b5ba7c7bf1 | |
| 
							
							
								 | 
						48e585dc16 | 
| 
						 | 
					@ -98,3 +98,24 @@ func (o Order) ORNotUpdateStatus(p model.OrderORsNotUpdateStatus) error {
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	return nil
 | 
						return nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// GetSupplierOrders ...
 | 
				
			||||||
 | 
					func (o Order) GetSupplierOrders(p model.OrderSupplierQuery) (*model.SupplierOrderList, error) {
 | 
				
			||||||
 | 
						msg, err := natsio.GetServer().Request(subject.Order.GetSupplierOrders, toBytes(p))
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							return nil, err
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						var (
 | 
				
			||||||
 | 
							r struct {
 | 
				
			||||||
 | 
								Data  model.SupplierOrderList `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
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -38,3 +38,13 @@ type OrderUpdateLogisticInfoFailed struct {
 | 
				
			||||||
type OrderORsNotUpdateStatus struct {
 | 
					type OrderORsNotUpdateStatus struct {
 | 
				
			||||||
	ORCodes []string `json:"orCodes"`
 | 
						ORCodes []string `json:"orCodes"`
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// OrderSupplierQuery ...
 | 
				
			||||||
 | 
					type OrderSupplierQuery struct {
 | 
				
			||||||
 | 
						Limit        int64    `json:"limit"`
 | 
				
			||||||
 | 
						Page         int64    `json:"page"`
 | 
				
			||||||
 | 
						FromDate     string   `json:"fromDate"`
 | 
				
			||||||
 | 
						ToDate       string   `json:"toDate"`
 | 
				
			||||||
 | 
						SupplierID   string   `json:"supplierId"`
 | 
				
			||||||
 | 
						WarehouseIDs []string `json:"warehouseIDs"`
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,35 @@
 | 
				
			||||||
 | 
					package model
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import "time"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// SupplierOrderList ...
 | 
				
			||||||
 | 
					type SupplierOrderList struct {
 | 
				
			||||||
 | 
						List  []SupplierOrder `json:"list"`
 | 
				
			||||||
 | 
						Total int64           `json:"total" example:"100"`
 | 
				
			||||||
 | 
						Limit int64           `json:"limit" example:"20"`
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// SupplierOrder ...
 | 
				
			||||||
 | 
					type SupplierOrder struct {
 | 
				
			||||||
 | 
						ID              string                `json:"_id"`
 | 
				
			||||||
 | 
						Code            string                `json:"code"`
 | 
				
			||||||
 | 
						CreatedAt       time.Time             `json:"createdAt"`
 | 
				
			||||||
 | 
						Status          string                `json:"status"`
 | 
				
			||||||
 | 
						WarehouseStatus string                `json:"warehouseStatus"`
 | 
				
			||||||
 | 
						Items           []SupplierOrderItem   `json:"items"`
 | 
				
			||||||
 | 
						Delivery        SupplierOrderDelivery `json:"delivery"`
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// SupplierOrderItem ...
 | 
				
			||||||
 | 
					type SupplierOrderItem struct {
 | 
				
			||||||
 | 
						ID          string `json:"_id" example:"1231"`
 | 
				
			||||||
 | 
						SupplierSKU string `json:"supplierSku" example:"SUPPLIER_SKU"`
 | 
				
			||||||
 | 
						Quantity    int64  `json:"quantity" example:"2"`
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// SupplierOrderDelivery ...
 | 
				
			||||||
 | 
					type SupplierOrderDelivery struct {
 | 
				
			||||||
 | 
						Code    string `json:"code" example:"123187287"`
 | 
				
			||||||
 | 
						Status  string `json:"status" enums:"waiting_to_confirm,waiting_to_pick,picking,picked,delay_pickup,pickup_failed,delivering,delay_delivery,delivered,cancelled,delivery_failed,waiting_to_return,returning,delay_return,compensation,returned"`
 | 
				
			||||||
 | 
						TPLCode string `json:"tplCode" enums:"SLY,GHTK,GHN,SSC,SPY,VTP,SE,NTL,BEST"`
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -36,9 +36,11 @@ type InsuranceOpts struct {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// OutboundRequestItem ...
 | 
					// OutboundRequestItem ...
 | 
				
			||||||
type OutboundRequestItem struct {
 | 
					type OutboundRequestItem struct {
 | 
				
			||||||
	SupplierSKU string `json:"supplierSKU"`
 | 
						SupplierSKU string  `json:"supplierSKU"`
 | 
				
			||||||
	Quantity    int64  `json:"quantity"`
 | 
						Quantity    int64   `json:"quantity"`
 | 
				
			||||||
	UnitCode    string `json:"unitCode"`
 | 
						UnitCode    string  `json:"unitCode"`
 | 
				
			||||||
 | 
						Price       float64 `json:"price"`
 | 
				
			||||||
 | 
						Name        string  `json:"name"`
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// CustomerInfo ...
 | 
					// CustomerInfo ...
 | 
				
			||||||
| 
						 | 
					@ -63,18 +65,22 @@ type UpdateOutboundRequestLogisticInfoPayload struct {
 | 
				
			||||||
	ShippingLabel string `json:"shippingLabel"`
 | 
						ShippingLabel string `json:"shippingLabel"`
 | 
				
			||||||
	TrackingCode  string `json:"trackingCode"`
 | 
						TrackingCode  string `json:"trackingCode"`
 | 
				
			||||||
	ORCode        string `json:"orCode"`
 | 
						ORCode        string `json:"orCode"`
 | 
				
			||||||
 | 
						TPLCode       string `json:"tplCode"`
 | 
				
			||||||
 | 
						OrderID       string `json:"orderId"`
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// CancelOutboundRequest ...
 | 
					// CancelOutboundRequest ...
 | 
				
			||||||
type CancelOutboundRequest struct {
 | 
					type CancelOutboundRequest struct {
 | 
				
			||||||
	ORCode string `json:"orCode"`
 | 
						ORCode  string `json:"orCode"`
 | 
				
			||||||
	Note   string `json:"note"`
 | 
						OrderID string `json:"orderId"`
 | 
				
			||||||
 | 
						Note    string `json:"note"`
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// SyncORStatusRequest ...
 | 
					// SyncORStatusRequest ...
 | 
				
			||||||
type SyncORStatusRequest struct {
 | 
					type SyncORStatusRequest struct {
 | 
				
			||||||
	ORCode    string `json:"orCode"`
 | 
						ORCode    string `json:"orCode"`
 | 
				
			||||||
	OrderCode string `json:"orderCode"`
 | 
						OrderCode string `json:"orderCode"`
 | 
				
			||||||
 | 
						OrderID   string `json:"orderId"`
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// UpdateSupplierIsClosedRequest ...
 | 
					// UpdateSupplierIsClosedRequest ...
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -12,10 +12,12 @@ var Order = struct {
 | 
				
			||||||
	ChangeDeliveryStatus     string
 | 
						ChangeDeliveryStatus     string
 | 
				
			||||||
	UpdateLogisticInfoFailed string
 | 
						UpdateLogisticInfoFailed string
 | 
				
			||||||
	ORNotUpdateStatus        string
 | 
						ORNotUpdateStatus        string
 | 
				
			||||||
 | 
						GetSupplierOrders        string
 | 
				
			||||||
}{
 | 
					}{
 | 
				
			||||||
	UpdateORStatus:           getOrderValue("update_outbound_request_status"),
 | 
						UpdateORStatus:           getOrderValue("update_outbound_request_status"),
 | 
				
			||||||
	CancelDelivery:           getOrderValue("cancel_delivery"),
 | 
						CancelDelivery:           getOrderValue("cancel_delivery"),
 | 
				
			||||||
	ChangeDeliveryStatus:     getOrderValue("change_delivery_status"),
 | 
						ChangeDeliveryStatus:     getOrderValue("change_delivery_status"),
 | 
				
			||||||
	UpdateLogisticInfoFailed: getOrderValue("update_logistic_info_failed"),
 | 
						UpdateLogisticInfoFailed: getOrderValue("update_logistic_info_failed"),
 | 
				
			||||||
	ORNotUpdateStatus:        getOrderValue("outbound_request_not_update_status"),
 | 
						ORNotUpdateStatus:        getOrderValue("outbound_request_not_update_status"),
 | 
				
			||||||
 | 
						GetSupplierOrders:        getOrderValue("get_supplier_orders"),
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -14,6 +14,7 @@ var Warehouse = struct {
 | 
				
			||||||
	SyncORStatus                  string
 | 
						SyncORStatus                  string
 | 
				
			||||||
	WebhookTNC                    string
 | 
						WebhookTNC                    string
 | 
				
			||||||
	WebhookGlobalCare             string
 | 
						WebhookGlobalCare             string
 | 
				
			||||||
 | 
						WebhookOnPoint                string
 | 
				
			||||||
	FindOne                       string
 | 
						FindOne                       string
 | 
				
			||||||
	FindByCondition               string
 | 
						FindByCondition               string
 | 
				
			||||||
	Distinct                      string
 | 
						Distinct                      string
 | 
				
			||||||
| 
						 | 
					@ -32,6 +33,7 @@ var Warehouse = struct {
 | 
				
			||||||
	SyncORStatus:                  getWarehouseValue("sync_or_status"),
 | 
						SyncORStatus:                  getWarehouseValue("sync_or_status"),
 | 
				
			||||||
	WebhookTNC:                    getWarehouseValue("webhook_tnc"),
 | 
						WebhookTNC:                    getWarehouseValue("webhook_tnc"),
 | 
				
			||||||
	WebhookGlobalCare:             getWarehouseValue("webhook_global_care"),
 | 
						WebhookGlobalCare:             getWarehouseValue("webhook_global_care"),
 | 
				
			||||||
 | 
						WebhookOnPoint:                getWarehouseValue("webhook_on_point"),
 | 
				
			||||||
	FindOne:                       getWarehouseValue("find_one"),
 | 
						FindOne:                       getWarehouseValue("find_one"),
 | 
				
			||||||
	FindByCondition:               getWarehouseValue("find_all_by_condition"),
 | 
						FindByCondition:               getWarehouseValue("find_all_by_condition"),
 | 
				
			||||||
	Distinct:                      getWarehouseValue("distinct"),
 | 
						Distinct:                      getWarehouseValue("distinct"),
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue