|
@@ -52,7 +52,7 @@ public class DeliveryOrderController {
|
|
|
@SaCheckPermission("deliveryOrder.add")
|
|
|
@OperationLog(type = SysOperationLogType.ADD)
|
|
|
@PostMapping("/add")
|
|
|
- public ResponseResult<Long> add(
|
|
|
+ public ResponseResult<String> add(
|
|
|
@MyRequestBody DeliveryOrderDto deliveryOrderDto,
|
|
|
@MyRequestBody List<DeliveryOrderItemsDto> deliveryOrderItemsDtoList) {
|
|
|
ResponseResult<Tuple2<DeliveryOrder, JSONObject>> verifyResult =
|
|
@@ -77,7 +77,7 @@ public class DeliveryOrderController {
|
|
|
@SaCheckPermission("deliveryOrder.update")
|
|
|
@OperationLog(type = SysOperationLogType.UPDATE)
|
|
|
@PostMapping("/update")
|
|
|
- public ResponseResult<Long> update(
|
|
|
+ public ResponseResult<String> update(
|
|
|
@MyRequestBody DeliveryOrderDto deliveryOrderDto,
|
|
|
@MyRequestBody List<DeliveryOrderItemsDto> deliveryOrderItemsDtoList) {
|
|
|
String errorMessage;
|
|
@@ -105,7 +105,7 @@ public class DeliveryOrderController {
|
|
|
@SaCheckPermission("deliveryOrder.delete")
|
|
|
@OperationLog(type = SysOperationLogType.DELETE)
|
|
|
@PostMapping("/delete")
|
|
|
- public ResponseResult<Void> delete(@MyRequestBody Long id) {
|
|
|
+ public ResponseResult<Void> delete(@MyRequestBody String id) {
|
|
|
if (MyCommonUtil.existBlankArgument(id)) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.ARGUMENT_NULL_EXIST);
|
|
|
}
|
|
@@ -121,11 +121,11 @@ public class DeliveryOrderController {
|
|
|
@SaCheckPermission("deliveryOrder.delete")
|
|
|
@OperationLog(type = SysOperationLogType.DELETE_BATCH)
|
|
|
@PostMapping("/deleteBatch")
|
|
|
- public ResponseResult<Void> deleteBatch(@MyRequestBody List<Long> idList) {
|
|
|
+ public ResponseResult<Void> deleteBatch(@MyRequestBody List<String> idList) {
|
|
|
if (MyCommonUtil.existBlankArgument(idList)) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.ARGUMENT_NULL_EXIST);
|
|
|
}
|
|
|
- for (Long id : idList) {
|
|
|
+ for (String id : idList) {
|
|
|
ResponseResult<Void> responseResult = this.doDelete(id);
|
|
|
if (!responseResult.isSuccess()) {
|
|
|
return responseResult;
|
|
@@ -252,7 +252,7 @@ public class DeliveryOrderController {
|
|
|
*/
|
|
|
@SaCheckPermission("deliveryOrder.view")
|
|
|
@GetMapping("/view")
|
|
|
- public ResponseResult<DeliveryOrderVo> view(@RequestParam Long id) {
|
|
|
+ public ResponseResult<DeliveryOrderVo> view(@RequestParam String id) {
|
|
|
DeliveryOrder deliveryOrder = deliveryOrderService.getByIdWithRelation(id, MyRelationParam.full());
|
|
|
if (deliveryOrder == null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
@@ -299,7 +299,7 @@ public class DeliveryOrderController {
|
|
|
return ResponseResult.success(new Tuple2<>(deliveryOrder, relationData));
|
|
|
}
|
|
|
|
|
|
- private ResponseResult<Void> doDelete(Long id) {
|
|
|
+ private ResponseResult<Void> doDelete(String id) {
|
|
|
String errorMessage;
|
|
|
// 验证关联Id的数据合法性
|
|
|
DeliveryOrder originalDeliveryOrder = deliveryOrderService.getById(id);
|