|
@@ -2433,6 +2433,21 @@ public class TMSController extends BaseRESTfulController {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ //根据用户输入提货联系人模糊查询提货联系人、提货人身份证号、联系电话
|
|
|
+ @ApiOperation(value="根据发货通知中用户输入提货联系人模糊查询提货联系人、提货人身份证号、联系电话", notes="模糊查询")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "personName",value = "用户输入的输入提货联系人", required = false, dataType = "String")
|
|
|
+ })
|
|
|
+
|
|
|
+ @PostMapping("/getNoticeContactNumberByPerson")
|
|
|
+ public Map<String,Object> getNoticeContactNumberByPerson(@RequestParam(value ="personName")String personName){
|
|
|
+ return tmsshipFeign.getNoticeContactNumberByPerson(personName);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
@ApiOperation(value="获取内转报表")
|
|
|
@PostMapping("/getOutFactoryInwardList")
|
|
|
public Map<String, Object> getOutFactoryInwardList(@RequestBody(required=false) Map<String,Object> mapValue,
|