|
@@ -16,6 +16,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
+import javax.websocket.server.ServerEndpoint;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
@@ -2676,4 +2677,10 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String,Object> changeNumber(@RequestParam String orderNumber){
|
|
|
return tmsTruckFeign.changeNumber(orderNumber);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation("根据车序号id查询主干数据")
|
|
|
+ @PostMapping("/getSteelReportDetailsBySmId")
|
|
|
+ public Map<String,Object> getSteelReportDetailsBySmId(@RequestParam BigDecimal saleOrderMaterialId){
|
|
|
+ return tmsTruckFeign.getSteelReportDetailsBySmId(saleOrderMaterialId);
|
|
|
+ }
|
|
|
}
|