@@ -2611,6 +2611,15 @@ public class TMSController extends BaseRESTfulController {
return tmsTruckFeign.getSaleSteelReport(map,startTime,endTime,carrierSsoId,receiveName,materialName,specification,remark,capacityNo,carrierName,consigneeName,saler,easPrimaryId);
}
+ @ApiOperation(value = "销售钢材统计报表")
+ @PostMapping("/getSaleSteelSpellingReport")
+ public Map<String,Object> getSaleSteelSpellingReport(@RequestBody(required = false)Map<String,Object>map){
+ if(map==null){
+ map=new HashMap<>();
+ }
+ return tmsTruckFeign.getSaleSteelSpellingReport(map);
+
@ApiOperation(value = "计费详单(未结算)")
@PostMapping("/getSaleSteelReportNew")
public Map<String,Object> getSaleSteelReportNew(@RequestBody(required = false)Map<String,Object>map,
@@ -736,6 +736,9 @@ public interface TmsTruckFeign {
@RequestParam("easPrimaryId") String easPrimaryId
);
+ @PostMapping("/api/v1/truckTms/statisticalReport/getSaleSteelSpellingReport")
+ Map<String, Object> getSaleSteelSpellingReport(@RequestBody(required = false)Map<String, Object> map);
@PostMapping("/api/v1/truckTms/statisticalReport/getSaleSteelReportNew")
Map<String, Object> getSaleSteelReportNew(@RequestBody(required = false)Map<String, Object> map,
@RequestParam("startTime")String startTime,