Commit b3abfc9e by huluobin

订单金额重算

parent 88f3ccf2
...@@ -272,4 +272,11 @@ public class OrderManageController { ...@@ -272,4 +272,11 @@ public class OrderManageController {
marketService.achievementReCalc(orderId); marketService.achievementReCalc(orderId);
return JsonResult.success(); return JsonResult.success();
} }
@ApiOperation("重算订单金额")
@GetMapping("/technician/ordermanage/no_calcOrderAmount/{orderId}")
public JsonResult<Void> calcOrderAmount(@PathVariable Integer orderId) {
marketService.calcOrderAmount(orderId);
return JsonResult.success();
}
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment