|
|
|
@ -166,14 +166,15 @@ public class OrderInfoController { |
|
|
|
|
@ApiOperation(value = "发票列表", notes = "发票列表修改报账单号") |
|
|
|
|
@SysLog(operation = "发票列表", operationDesc = "发票列表修改报账单号", key = "订单发票管理") |
|
|
|
|
public R updateBillNumber(@RequestParam("bzdh") String bzdh, |
|
|
|
|
@RequestParam("orderInfoId") String orderInfoId, |
|
|
|
|
@RequestParam("fpqqlsh")String fpqqlsh, |
|
|
|
|
@RequestParam("xhfNsrsbh")String xhfNsrsbh) { |
|
|
|
|
@RequestParam("orderInfoId") String orderInfoId |
|
|
|
|
// @RequestParam("fpqqlsh")String fpqqlsh,
|
|
|
|
|
// @RequestParam("xhfNsrsbh")String xhfNsrsbh
|
|
|
|
|
) { |
|
|
|
|
if(StringUtils.isBlank(bzdh)||StringUtils.isBlank(orderInfoId)){ |
|
|
|
|
return R.error("请求参数有误"); |
|
|
|
|
} |
|
|
|
|
try { |
|
|
|
|
int i = orderInfoService.updateBillNumber(bzdh, orderInfoId,fpqqlsh,xhfNsrsbh); |
|
|
|
|
int i = orderInfoService.updateBillNumber(bzdh, orderInfoId,"",""); |
|
|
|
|
if(i > 0){ |
|
|
|
|
return R.ok(); |
|
|
|
|
} |
|
|
|
|