- OrderAccounting

This commit is contained in:
gazebo
2019-03-19 11:51:03 +08:00
parent d158b0fc02
commit 5c640c08c5

View File

@@ -151,7 +151,7 @@ func (c *DjswController) transferResponse(inCallbackResponse *jdapi.CallbackResp
return inCallbackResponse
}
func (c *DjswController) AfterSaleBillStatus() {
func (c *DjswController) afterSaleBillStatus() {
var obj *jdapi.CallbackOrderMsg
var callbackResponse *jdapi.CallbackResponse
obj, callbackResponse = api.JdAPI.GetOrderCallbackMsg(c.Ctx.Input.RequestBody)
@@ -162,3 +162,11 @@ func (c *DjswController) AfterSaleBillStatus() {
c.Data["json"] = callbackResponse
c.ServeJSON()
}
func (c *DjswController) AfterSaleBillStatus() {
c.afterSaleBillStatus()
}
func (c *DjswController) OrderAccounting() {
c.afterSaleBillStatus()
}