update GC
This commit is contained in:
		
							parent
							
								
									9acd7e48b4
								
							
						
					
					
						commit
						43aa67fa2e
					
				| 
						 | 
				
			
			@ -5,6 +5,7 @@ type OrderUpdateORStatus struct {
 | 
			
		|||
	OrderCode      string `json:"orderCode"`
 | 
			
		||||
	ORCode         string `json:"orCode"`
 | 
			
		||||
	Status         string `json:"status"`
 | 
			
		||||
	DeliveryStatus string `json:"deliveryStatus"`
 | 
			
		||||
	Reason         string `json:"reason"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -63,3 +63,9 @@ type CancelOutboundRequest struct {
 | 
			
		|||
	ORCode string `json:"orCode"`
 | 
			
		||||
	Note   string `json:"note"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SyncORStatusRequest ...
 | 
			
		||||
type SyncORStatusRequest struct {
 | 
			
		||||
	ORCode    string `json:"orCode"`
 | 
			
		||||
	OrderCode string `json:"orderCode"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -59,3 +59,11 @@ type WarehousePartner struct {
 | 
			
		|||
	Enabled        bool   `json:"enabled"`
 | 
			
		||||
	Authentication string `json:"authentication"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SyncORStatusResponse ...
 | 
			
		||||
type SyncORStatusResponse struct {
 | 
			
		||||
	ORCode         string `json:"orCode"`
 | 
			
		||||
	OrderCode      string `json:"orderCode"`
 | 
			
		||||
	Status         string `json:"status"`
 | 
			
		||||
	DeliveryStatus string `json:"deliveryStatus"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -9,11 +9,7 @@ func getCommunicationValue(val string) string {
 | 
			
		|||
var Communication = struct {
 | 
			
		||||
	RequestHTTP  string
 | 
			
		||||
	ResponseHTTP string
 | 
			
		||||
	WebhookTNC        string
 | 
			
		||||
	WebhookGlobalCare string
 | 
			
		||||
}{
 | 
			
		||||
	RequestHTTP:  getCommunicationValue("request_http"),
 | 
			
		||||
	ResponseHTTP: getCommunicationValue("response_http"),
 | 
			
		||||
	WebhookTNC:        getCommunicationValue("webhook_tnc"),
 | 
			
		||||
	WebhookGlobalCare: getCommunicationValue("webhook_global_care"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -9,8 +9,6 @@ func getOrderValue(val string) string {
 | 
			
		|||
var Order = struct {
 | 
			
		||||
	UpdateORStatus string
 | 
			
		||||
	CancelDelivery string
 | 
			
		||||
	WebhookTNC        string
 | 
			
		||||
	WebhookGlobalCare string
 | 
			
		||||
}{
 | 
			
		||||
	UpdateORStatus: getOrderValue("update_outbound_request_status"),
 | 
			
		||||
	CancelDelivery: getOrderValue("cancel_delivery"),
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -11,9 +11,15 @@ var Warehouse = struct {
 | 
			
		|||
	UpdateOutboundRequestLogistic string
 | 
			
		||||
	CancelOutboundRequest         string
 | 
			
		||||
	GetConfiguration              string
 | 
			
		||||
	SyncORStatus                  string
 | 
			
		||||
	WebhookTNC                    string
 | 
			
		||||
	WebhookGlobalCare             string
 | 
			
		||||
}{
 | 
			
		||||
	CreateOutboundRequest:         getWarehouseValue("create_outbound_request"),
 | 
			
		||||
	UpdateOutboundRequestLogistic: getWarehouseValue("update_outbound_request_logistic_info"),
 | 
			
		||||
	CancelOutboundRequest:         getWarehouseValue("cancel_outbound_request"),
 | 
			
		||||
	GetConfiguration:              getWarehouseValue("get_configuration"),
 | 
			
		||||
	SyncORStatus:                  getWarehouseValue("sync_or_status"),
 | 
			
		||||
	WebhookTNC:                    getWarehouseValue("webhook_tnc"),
 | 
			
		||||
	WebhookGlobalCare:             getWarehouseValue("webhook_global_care"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue