|
|
|
@ -609,5 +609,14 @@ public class OrderInvoiceController { |
|
|
|
|
public R rewriteBzdh(@RequestBody RewriteBzdhDTO dto) { |
|
|
|
|
return bzdhService.rewriteBzdh(dto); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 页面上有直接调用order-management-invoice模块的接口,这个模块没有order_process_info Mapper |
|
|
|
|
* 有时候需要查询一些定制化字段,写此方法弥补这个问题 |
|
|
|
|
*/ |
|
|
|
|
@PostMapping("/getOrderMessageByMap") |
|
|
|
|
public R getOrderMessageByMap(@RequestBody Map map){ |
|
|
|
|
return R.ok(orderProcessService.getOrderMessageByMap(map)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|