已到店
This commit is contained in:
@@ -21,7 +21,7 @@ import java.util.Set;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 预约端-联系人列表
|
* 预约端
|
||||||
*
|
*
|
||||||
* @author ww
|
* @author ww
|
||||||
* @description
|
* @description
|
||||||
@@ -96,6 +96,18 @@ public class BkContactListController {
|
|||||||
bkOrderService.upStatus(StpKit.USER.getShopId(), "已取消", bkOrder.getId(), bkOrder.getCancelReason());
|
bkOrderService.upStatus(StpKit.USER.getShopId(), "已取消", bkOrder.getId(), bkOrder.getCancelReason());
|
||||||
return CzgResult.success();
|
return CzgResult.success();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 预约端-预约单:已到店
|
||||||
|
*/
|
||||||
|
// @SaAdminCheckPermission(value = "bk:bkOrder:storeArrival", name = "预约端-预约单:已到店")
|
||||||
|
@PostMapping("/bkOrder/storeArrival")
|
||||||
|
public CzgResult<Void> storeArrival(@RequestBody BkOrderDTO bkOrder) {
|
||||||
|
AssertUtil.isNull(bkOrder.getId(), "已到店的预约单id不能为空");
|
||||||
|
bkOrderService.upStatus(StpKit.USER.getShopId(), "已到店", bkOrder.getId(), "");
|
||||||
|
return CzgResult.success();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user