|
@@ -899,6 +899,15 @@ public class BMSController extends BaseRESTfulController {
|
|
|
return bmstruckFeign.addTruckDetail(map);
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("updateConsignee")
|
|
|
+ @ApiOperation(value = "修改详单收货客户")
|
|
|
+ RESTfulResult updateConsignee(@RequestBody Map<String,Object> map) {
|
|
|
+ if(map==null){
|
|
|
+ return failed("参数为空!");
|
|
|
+ }
|
|
|
+ return bmstruckFeign.updateConsignee(map);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation("查询发票图片")
|
|
|
@PostMapping("/getStatementPhoto")
|
|
|
public List<String> getStatementPhoto(@RequestParam BigDecimal statementId) throws Exception{
|