- renmae PickedUpGoods to PickupGoods.

This commit is contained in:
gazebo
2018-07-30 07:58:43 +08:00
parent 5c4d34554f
commit 7fae4dd52a
4 changed files with 9 additions and 9 deletions

View File

@@ -262,7 +262,7 @@ func (c *OrderController) AcceptOrRefuseOrder(order *model.GoodsOrder, isAcceptI
// 饿了么没有拣货这个状态,直接返回成功
// 真实流程中也不会调用这个方法,因为接收订单后状态会直接转移到已拣货
func (c *OrderController) PickedUpGoods(order *model.GoodsOrder) (err error) {
func (c *OrderController) PickupGoods(order *model.GoodsOrder) (err error) {
return nil
}