|
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiImplicitParam;
|
|
|
import io.swagger.annotations.ApiImplicitParams;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import io.swagger.models.auth.In;
|
|
|
import oracle.jdbc.proxy.annotation.Post;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -1218,15 +1219,16 @@ public class AMScontroller{
|
|
|
})
|
|
|
@PostMapping("/getSporadicOrdersList")
|
|
|
public RESTfulResult getSporadicOrdersList(@RequestBody(required = false) Map<String,Object> mapValue,
|
|
|
- Integer apiId,
|
|
|
- Integer pageNum,
|
|
|
- Integer pageSize,
|
|
|
- Integer orderType,
|
|
|
- Integer issueStatus,
|
|
|
- String con,
|
|
|
- Integer dispatchStatus,
|
|
|
- Integer sporadicStatus) {
|
|
|
- return amsFeign.getSporadicOrdersList(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, orderType, issueStatus, con,dispatchStatus,sporadicStatus);
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ Integer orderType,
|
|
|
+ Integer issueStatus,
|
|
|
+ String con,
|
|
|
+ Integer dispatchStatus,
|
|
|
+ Integer sporadicStatus,
|
|
|
+ String carrierSsoId) {
|
|
|
+ return amsFeign.getSporadicOrdersList(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, orderType, issueStatus, con,dispatchStatus,sporadicStatus,carrierSsoId);
|
|
|
}
|
|
|
|
|
|
@ApiModelProperty(value = "查看物资详情")
|