Merge remote-tracking branch 'origin/master'

This commit is contained in:
gaowdong 2025-03-18 16:22:48 +08:00
commit 8e106fd5ca
1 changed files with 2 additions and 2 deletions

View File

@ -98,8 +98,8 @@ public class OrderInfoWebController {
value = "订单核销",
notes = "cmt-订单核销"
)
public AjaxResult orderWriteOffWeb(@RequestParam Long orderId) {
this.orderWebBusiness.orderWriteOffWeb(orderId);
public AjaxResult orderWriteOffWeb(@RequestBody OrderRefundWebDTO content) {
this.orderWebBusiness.orderWriteOffWeb(content.getOrderId());
return AjaxResult.success();
}