|
@@ -1956,6 +1956,21 @@ public class TMSController extends BaseRESTfulController {
|
|
|
){
|
|
|
return tmsTruckFeign.getAllSaleReport(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, startTime, endTime, carrierSsoId);
|
|
|
}
|
|
|
+ @ApiOperation(value="查询内转统计报表")
|
|
|
+ @PostMapping("/getAllInwardResult")
|
|
|
+ public Map<String, Object> getAllInwardResult(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ String startTime, String endTime,
|
|
|
+ String carrierSsoId
|
|
|
+ ){
|
|
|
+ return tmsTruckFeign.getAllInwardResult(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, startTime, endTime, carrierSsoId);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
@ApiOperation(value="查询零星物资进厂统计报表")
|
|
|
@PostMapping("/getSporadicSuppliesReport1")
|
|
|
public Map<String, Object> getSporadicSuppliesReport1(@RequestBody(required=false) Map<String,Object> mapValue,
|