|
@@ -1152,30 +1152,4 @@ public class AmsSaleOrderController extends BaseRESTfulController {
|
|
|
return success(result);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- @ApiModelProperty(value = "展示副产品销售订单列表")
|
|
|
- @ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "pageNum", value = "查询页数", required = false, dataType = "Integer"),
|
|
|
- @ApiImplicitParam(name = "pageSize", value = "每页记录数", required = false, dataType = "Integer"),
|
|
|
- @ApiImplicitParam(name = "apiId", value = "481", required = false, dataType = "BigDecimal")
|
|
|
- })
|
|
|
- @PostMapping("/getFuSaleOrderList")
|
|
|
- public RESTfulResult getFuSaleOrderList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
- Integer pageNum,
|
|
|
- Integer pageSize,
|
|
|
- Integer apiId,
|
|
|
- String con,
|
|
|
- BigDecimal deleted
|
|
|
- ) {
|
|
|
- if (con != null && !"".equals(con) && !"null".equals(con)) {
|
|
|
- mapValue.put("con", con);
|
|
|
- }
|
|
|
- mapValue.put("deleted",deleted);
|
|
|
- //不分页筛选数据
|
|
|
- PageHelper.startPage(pageNum, pageSize);
|
|
|
- //分页数据
|
|
|
- List<Map<String, Object>> saleOrderList = amsSaleOrderService.getFuSaleOrderList(mapValue);
|
|
|
- PageListAdd pageList = columnDataUtil.tableColumnData4(apiId, null, saleOrderList);
|
|
|
- return success(pageList);
|
|
|
- }
|
|
|
}
|