1
2
3
4
package com . huaheng . api . tv . controller ;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper ;
import com.baomidou.mybatisplus.core.toolkit.Wrappers ;
易文鹏
authored
about a year ago
5
import com.huaheng.api.tv.domain.* ;
6
7
import com.huaheng.api.wcs.domain.WcsTask ;
import com.huaheng.common.constant.QuantityConstant ;
8
import com.huaheng.framework.aspectj.lang.annotation.ApiLogger ;
9
10
import com.huaheng.framework.web.controller.BaseController ;
import com.huaheng.framework.web.domain.AjaxResult ;
易文鹏
authored
about a year ago
11
import com.huaheng.framework.web.domain.TVResult ;
12
13
14
15
16
17
18
19
20
21
22
23
24
import com.huaheng.pc.config.container.domain.Container ;
import com.huaheng.pc.config.container.service.ContainerService ;
import com.huaheng.pc.config.location.domain.Location ;
import com.huaheng.pc.config.location.service.LocationService ;
import com.huaheng.pc.config.material.domain.Material ;
import com.huaheng.pc.config.material.service.MaterialService ;
import com.huaheng.pc.config.zone.domain.Zone ;
import com.huaheng.pc.config.zone.service.ZoneService ;
import com.huaheng.pc.inventory.InventoryMaterialSummary.domain.InventoryMaterialSummary ;
import com.huaheng.pc.inventory.InventoryMaterialSummary.service.InventoryMaterialSummaryService ;
import com.huaheng.pc.inventory.inventoryDetail.domain.InventoryDetail ;
import com.huaheng.pc.inventory.inventoryDetail.service.InventoryDetailService ;
import com.huaheng.pc.inventory.inventoryTransaction.service.InventoryTransactionService ;
易文鹏
authored
about a year ago
25
import com.huaheng.pc.report.excelReport.mapper.ExcelReportMapper ;
26
27
import com.huaheng.pc.shipment.shipmentDetail.domain.ShipmentDetailTv ;
import com.huaheng.pc.shipment.shipmentDetail.mapper.ShipmentDetailMapper ;
28
import com.huaheng.pc.task.taskDetail.domain.TaskDetail ;
29
import com.huaheng.pc.task.taskDetail.service.TaskDetailService ;
30
31
32
import com.huaheng.pc.task.taskHeader.domain.TaskHeader ;
import com.huaheng.pc.task.taskHeader.service.TaskHeaderService ;
import io.swagger.annotations.ApiOperation ;
易文鹏
authored
about a year ago
33
import org.jetbrains.annotations.NotNull ;
34
35
36
import org.springframework.web.bind.annotation.* ;
import javax.annotation.Resource ;
易文鹏
authored
about a year ago
37
import java.io.File ;
38
import java.util.* ;
39
40
@RestController
41
@CrossOrigin
42
43
44
45
46
47
@RequestMapping ( "/API/WMS/v2" )
public class TvController extends BaseController {
@Resource
private TaskHeaderService taskHeaderService ;
@Resource
48
49
private TaskDetailService taskDetailService ;
@Resource
50
51
52
53
54
55
56
57
58
59
60
61
62
private ContainerService containerService ;
@Resource
private LocationService locationService ;
@Resource
private InventoryTransactionService inventoryTransactionService ;
@Resource
private ZoneService zoneService ;
@Resource
private InventoryDetailService inventoryDetailService ;
@Resource
private InventoryMaterialSummaryService inventoryMaterialSummaryService ;
@Resource
private MaterialService materialService ;
63
64
@Resource
private ShipmentDetailMapper shipmentDetailMapper ;
易文鹏
authored
about a year ago
65
66
67
68
@Resource
ExcelReportMapper mapper ;
//入库看板
易文鹏
authored
about a year ago
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//@PostMapping("/getTvReceiptView")
//@ResponseBody
////@ApiLogger(apiName = "看板入库", from = "TV")
//public TVResult getTvReceiptView() {
// AllBean allBean = new AllBean();
// LambdaQueryWrapper<TaskDetail> queryWrapper = Wrappers.lambdaQuery();
// List<String> str = Arrays.asList("100", "200");
// queryWrapper.in(TaskDetail::getTaskType, str)
// .last(" and created >= CURRENT_DATE() and `status`>=100");
// List<TaskDetail> list = taskDetailService.list(queryWrapper);
// List<TopBean> topList = new ArrayList<>();
// if (!list.isEmpty()) {
// topList = taskDetailService.getTvReceiptView("1");
// }
// allBean.setTopList(topList);
// List<UpBean> upList = taskDetailService.getTvNotReceiptList("1");
// allBean.setUpList(upList);
// return TVResult.success(allBean);
//}
易文鹏
authored
about a year ago
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@GetMapping ( "/queryAllPicture" )
public List < String > queryAllPicture () {
//String directoryPath = "D:/Huaheng/uploadPath/file/";
String directoryPath = "/Users/yiwenpeng/Desktop/素材" ;
return listImageFiles ( directoryPath );
}
public List < String > listImageFiles ( String directoryPath ) {
List < String > imageFiles = new ArrayList <>();
File directory = new File ( directoryPath );
File [] files = directory . listFiles ();
if ( files != null ) {
for ( File file : files ) {
if ( file . isFile () && isImageFile ( file . getName ())) {
imageFiles . add ( file . getAbsolutePath ());
}
}
}
return imageFiles ;
}
public boolean isImageFile ( String fileName ) {
String [] imageExtensions = { ".jpg" , ".jpeg" , ".png" , ".gif" , ".bmp" };
for ( String extension : imageExtensions ) {
if ( fileName . toLowerCase (). endsWith ( extension )) {
return true ;
}
}
return false ;
}
易文鹏
authored
about a year ago
121
122
123
124
//入库看板1,240221(未完成任务)
@PostMapping ( "/getReceiptTv1" )
易文鹏
authored
about a year ago
125
126
@ResponseBody
//@ApiLogger(apiName = "看板入库", from = "TV")
易文鹏
authored
about a year ago
127
128
129
public TVResult getTvUndoneTasks ( ) {
List < UndoneTask > undoneTasks = getUndoneTasks ();
return TVResult . success ( undoneTasks );
易文鹏
authored
about a year ago
130
131
}
易文鹏
authored
about a year ago
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
private List < UndoneTask > getUndoneTasks () {
List < TaskHeader > list = taskHeaderService . list ( new LambdaQueryWrapper < TaskHeader >()
. eq ( TaskHeader: : getInternalTaskType , QuantityConstant . TASK_TYPE_WHOLERECEIPT )
. ne ( TaskHeader: : getStatus , QuantityConstant . TASK_STATUS_COMPLETED ));
List < UndoneTask > undoneTasks = new ArrayList <>();
for ( TaskHeader taskHeader : list ) {
UndoneTask undoneTask = new UndoneTask ();
undoneTask . setId ( taskHeader . getId ());
//undoneTask.setQty(taskHeader.getQty());
//undoneTask.setMaterialCode(taskDetail.getMaterialCode());
//undoneTask.setMaterialName(taskDetail.getMaterialName());
undoneTask . setFromLocation ( taskHeader . getFromLocation ());
undoneTask . setToLocation ( taskHeader . getToLocation ());
undoneTask . setContainerCode ( taskHeader . getContainerCode ());
undoneTask . setCreated ( taskHeader . getCreated ());
if ( taskHeader . getStatus () == 1 ) {
undoneTask . setStatus ( "创建状态" );
} else if ( taskHeader . getStatus () == 50 ) {
undoneTask . setStatus ( "到达拣选台" );
} else {
undoneTask . setStatus ( "执行状态" );
}
if ( taskHeader . getTaskType (). equals ( QuantityConstant . TASK_TYPE_WHOLERECEIPT )) {
undoneTask . setTaskType ( "整盘入库" );
} else {
undoneTask . setTaskType ( "分拣入库" );
}
undoneTasks . add ( undoneTask );
易文鹏
authored
about a year ago
161
}
易文鹏
authored
about a year ago
162
return undoneTasks ;
易文鹏
authored
about a year ago
163
164
165
}
易文鹏
authored
about a year ago
166
//入库看板2,240221,(显示巷道库位状态、出入库次数和出入库数量)
易文鹏
authored
about a year ago
167
168
@PostMapping ( "/getTvReceiptFrequencyAndQty" )
@ResponseBody
易文鹏
authored
about a year ago
169
170
171
172
173
174
175
176
177
public TVResult getReceiptTv2 ( ) {
//巷道库位状态
List < RoadwayLocationStatus > roadwayLocationStatusList = new ArrayList <>();
//获取所有巷道
List < String > roadways = locationService . getDistinctRoadways ();
for ( String roadway : roadways ) {
RoadwayLocationStatus roadwayLocationStatus = getRoadwayLocationStatus ( roadway );
roadwayLocationStatusList . add ( roadwayLocationStatus );
}
易文鹏
authored
about a year ago
178
179
180
181
182
//数量
String sql = "SELECT a.click_date AS DATE,ifnull( b.taskQty, 0 ) AS qty FROM(SELECT curdate() AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 1 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 2 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 3 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 4 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 5 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 6 DAY ) AS click_date ) a LEFT JOIN (SELECT DATE ( h.completeTime ) AS completeTime,SUM( d.qty ) AS taskQty FROM task_detail d JOIN task_header h ON d.taskId = h.id WHERE h.completeTime >= DATE_SUB( CURDATE(), INTERVAL 7 DAY ) AND h.STATUS = 100 AND h.internalTaskType=100 GROUP BY DATE ( h.completeTime )) b ON a.click_date = b.completeTime ORDER BY a.click_date;" ;
List < LinkedHashMap < String , Object >> list = mapper . selectCommon ( sql );
//次数
易文鹏
authored
about a year ago
183
184
//String sql2 = "SELECT a.click_date AS DATE,ifnull( b.taskCount, 0 ) AS count FROM(SELECT curdate() AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 1 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 2 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 3 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 4 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 5 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 6 DAY ) AS click_date ) a LEFT JOIN (SELECT DATE ( h.completeTime ) AS completeTime,COUNT( DISTINCT h.id ) AS taskCount FROM task_detail d JOIN task_header h ON d.taskId = h.id WHERE h.completeTime >= DATE_SUB( CURDATE(), INTERVAL 7 DAY ) AND h.STATUS = 100 AND h.internalTaskType=100 GROUP BY DATE ( h.completeTime )) b ON a.click_date = b.completeTime ORDER BY a.click_date;";
//List<LinkedHashMap<String, Object>> list2 = mapper.selectCommon(sql2);
易文鹏
authored
about a year ago
185
186
187
188
189
//数量
String sql3 = "SELECT a.click_date AS DATE,ifnull( b.taskQty, 0 ) AS qty FROM(SELECT curdate() AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 1 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 2 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 3 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 4 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 5 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 6 DAY ) AS click_date ) a LEFT JOIN (SELECT DATE ( h.completeTime ) AS completeTime,SUM( d.qty ) AS taskQty FROM task_detail d JOIN task_header h ON d.taskId = h.id WHERE h.completeTime >= DATE_SUB( CURDATE(), INTERVAL 7 DAY ) AND h.STATUS = 100 AND h.internalTaskType=200 GROUP BY DATE ( h.completeTime )) b ON a.click_date = b.completeTime ORDER BY a.click_date;" ;
List < LinkedHashMap < String , Object >> list3 = mapper . selectCommon ( sql3 );
//次数
易文鹏
authored
about a year ago
190
191
//String sql4 = "SELECT a.click_date AS DATE,ifnull( b.taskCount, 0 ) AS count FROM(SELECT curdate() AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 1 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 2 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 3 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 4 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 5 DAY ) AS click_date UNION ALL SELECT date_sub( curdate(), INTERVAL 6 DAY ) AS click_date ) a LEFT JOIN (SELECT DATE ( h.completeTime ) AS completeTime,COUNT( DISTINCT h.id ) AS taskCount FROM task_detail d JOIN task_header h ON d.taskId = h.id WHERE h.completeTime >= DATE_SUB( CURDATE(), INTERVAL 7 DAY ) AND h.STATUS = 100 AND h.internalTaskType=200 GROUP BY DATE ( h.completeTime )) b ON a.click_date = b.completeTime ORDER BY a.click_date;";
//List<LinkedHashMap<String, Object>> list4 = mapper.selectCommon(sql4);
易文鹏
authored
about a year ago
192
易文鹏
authored
about a year ago
193
ReceiptFrequencyAndQty resultData = new ReceiptFrequencyAndQty ();
易文鹏
authored
about a year ago
194
resultData . setRoadwayLocationStatusList ( roadwayLocationStatusList );
易文鹏
authored
about a year ago
195
resultData . setReceiptQty ( list );
易文鹏
authored
about a year ago
196
//resultData.setReceiptFrequency(list2);
易文鹏
authored
about a year ago
197
resultData . setShipmentQty ( list3 );
易文鹏
authored
about a year ago
198
//resultData.setShipmentFrequency(list4);
易文鹏
authored
about a year ago
199
200
return TVResult . success ( resultData );
}
201
易文鹏
authored
about a year ago
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
//入库看板3,240221,(二厂入库看板)
//1、上面内容,显示巷道库位状态(指定一个巷道)
//2、下面柱状图,改为每日出入库数量,标签上的数值,取整数
@GetMapping ( "/getReceiptTv3/{roadway}" )
@ResponseBody
public TVResult getReceiptTv3 ( @PathVariable ( "roadway" ) String roadway ) {
RoadwayLocationStatus roadwayLocationStatus = getRoadwayLocationStatus ( roadway );
List < UndoneTask > undoneTasks = getUndoneTasks ();
ReceiptTv2 receiptTv2 = new ReceiptTv2 ();
receiptTv2 . setUndoneTaskList ( undoneTasks );
receiptTv2 . setRoadwayLocationStatus ( roadwayLocationStatus );
return TVResult . success ( receiptTv2 );
}
//出库看板
@PostMapping ( "/getTvShipmentView" )
@ResponseBody
//@ApiLogger(apiName = "看板出库", from = "TV")
public TVResult getTvShipmentView ( @RequestBody Map < String , String > map ) {
AllBean allBean = new AllBean ();
String par = map . get ( "par" );
String roadway = map . get ( "roadway" );
//List<String> str = Arrays.asList("300", "400");
//List<TaskDetail> list = taskDetailService.list(new LambdaQueryWrapper<TaskDetail>()
// .in(TaskDetail::getTaskType, str)
// .last(" and created >= CURRENT_DATE() and `status`>=100"));
//List<TopBean> topList = new ArrayList<>();
//if (!list.isEmpty()) {
// topList = taskDetailService.getTvReceiptView("2");//出库物料统计
//}
//allBean.setTopList(topList);
//List<UpBean> upList = taskDetailService.getTvNotReceiptList("2");//获取未完成订单看板
//allBean.setUpList(upList);
RoadwayLocationStatus roadwayLocationStatus = getRoadwayLocationStatus ( roadway );
List < ShipmentDetailTv > portList = shipmentDetailMapper . getTvOutList ( par ); //当前站台出库明细
allBean . setPortList ( portList );
allBean . setRoadwayLocationStatus ( roadwayLocationStatus );
return TVResult . success ( allBean );
}
private RoadwayLocationStatus getRoadwayLocationStatus ( String roadway ) {
RoadwayLocationStatus roadwayLocationStatus = new RoadwayLocationStatus ();
易文鹏
authored
about a year ago
247
248
249
250
int highEmptyContainer = getCount ( 2 , roadway ); //高库位空托
int middleEmptyContainer = getCount ( 1 , roadway ); //中库位空托
int lowEmptyContainer = getCount ( 0 , roadway ); //矮库位空托
易文鹏
authored
about a year ago
251
252
253
254
255
256
//高库位无货
int highEmptyLocation = locationService . count ( new LambdaQueryWrapper < Location >(). eq ( Location: : getStatus , QuantityConstant . STATUS_LOCATION_EMPTY ). eq ( Location: : getContainerCode , QuantityConstant . EMPTY_STRING ). eq ( Location: : getHigh , 2 ). eq ( Location: : getRoadway , roadway ));
//中库位无货
int middleEmptyLocation = locationService . count ( new LambdaQueryWrapper < Location >(). eq ( Location: : getStatus , QuantityConstant . STATUS_LOCATION_EMPTY ). eq ( Location: : getContainerCode , QuantityConstant . EMPTY_STRING ). eq ( Location: : getHigh , 1 ). eq ( Location: : getRoadway , roadway ));
//矮库位无货
int lowEmptyLocation = locationService . count ( new LambdaQueryWrapper < Location >(). eq ( Location: : getStatus , QuantityConstant . STATUS_LOCATION_EMPTY ). eq ( Location: : getContainerCode , QuantityConstant . EMPTY_STRING ). eq ( Location: : getHigh , 0 ). eq ( Location: : getRoadway , roadway ));
易文鹏
authored
about a year ago
257
易文鹏
authored
about a year ago
258
259
260
261
262
263
264
265
266
267
roadwayLocationStatus . setRoadway ( roadway );
roadwayLocationStatus . setHighEmptyLocation ( highEmptyLocation );
roadwayLocationStatus . setHighEmptyContainer ( highEmptyContainer );
roadwayLocationStatus . setMiddleEmptyLocation ( middleEmptyLocation );
roadwayLocationStatus . setMiddleEmptyContainer ( middleEmptyContainer );
roadwayLocationStatus . setLowEmptyLocation ( lowEmptyLocation );
roadwayLocationStatus . setLowEmptyContainer ( lowEmptyContainer );
return roadwayLocationStatus ;
}
易文鹏
authored
about a year ago
268
269
270
271
272
273
274
275
276
277
278
public int getCount ( int high , String roadway ) {
return locationService . count ( new LambdaQueryWrapper < Location >()
. eq ( Location: : getStatus , QuantityConstant . STATUS_LOCATION_EMPTY )
. ne ( Location: : getContainerCode , QuantityConstant . EMPTY_STRING )
. eq ( Location: : getHigh , high )
. eq ( Location: : getZoneCode , "L" )
. eq ( Location: : getRoadway , roadway )
. inSql ( Location: : getContainerCode , "SELECT code FROM container WHERE status ='empty' " ));
}
279
@PostMapping ( "/getTvView" )
280
//@ApiLogger(apiName = "获取电视信息", from="TV")
281
@ResponseBody
易文鹏
authored
about a year ago
282
public TVResult getTvView ( @RequestBody WcsTask wcsTask ) {
283
String area = wcsTask . getArea ();
284
285
List < TaskHeader > taskHeaderList = taskHeaderService . list ( new LambdaQueryWrapper < TaskHeader >()
. eq ( TaskHeader: : getArea , area )
286
. lt ( TaskHeader: : getStatus , QuantityConstant . TASK_STATUS_COMPLETED )
287
288
289
290
. orderByDesc ( TaskHeader: : getId ));
//写入物料编码
if ( taskHeaderList != null && ! taskHeaderList . isEmpty ()) {
291
for ( TaskHeader taskHeader : taskHeaderList ) {
292
293
294
String materialCode = taskHeader . getMaterialCode ();
String warehouseCode = taskHeader . getWarehouseCode ();
Material material = materialService . getMaterialByCode ( materialCode , warehouseCode );
295
if ( material != null ) {
296
297
298
299
taskHeader . setMaterialCode ( material . getName ());
}
}
}
300
301
302
303
//获取指定库区的空托盘数量
List < Container > containerEmptyList = containerService . list ( new LambdaQueryWrapper < Container >()
. eq ( Container: : getArea , area )
304
. eq ( Container: : getStatus , QuantityConstant . STATUS_CONTAINER_EMPTY )
305
. ne ( Container: : getLocationCode , "" ));
306
307
int containerEmptySize = containerEmptyList . size ();
308
309
310
311
312
313
314
315
316
317
318
319
//获取指定库区的有货托盘数量
//List<Container> manyEmptyList = containerService.list(new LambdaQueryWrapper<Container>()
// .eq(Container::getArea, area)
// .eq(Container::getStatus, QuantityConstant.STATUS_CONTAINER_MANY)
// .ne(Container::getLocationCode, ""));
//int manyEmptyListSize = manyEmptyList.size();
//空托盘的数量+有货托盘数量*6 (有货托盘数量这个项目好像没有啊,所以直接返回空托盘数量)
//containerEmptySize = containerEmptySize + manyEmptyListSize * 6;
//获取指定库区的有货托盘数量
List < Container > containerSomeList = containerService . list ( new LambdaQueryWrapper < Container >()
. eq ( Container: : getArea , area )
320
. eq ( Container: : getStatus , QuantityConstant . STATUS_CONTAINER_SOME )
321
. ne ( Container: : getLocationCode , "" ));
322
323
int containerSomeSize = containerSomeList . size ();
324
325
//指定库区总库位数
List < Location > locationList = locationService . list ( new LambdaQueryWrapper < Location >(). eq ( Location: : getArea , area ));
326
327
int totalLocationSize = locationList . size ();
328
329
330
331
332
//获取指定区域的所有库存数
Zone zone = zoneService . getOne ( new LambdaQueryWrapper < Zone >(). eq ( Zone: : getArea , area ));
List < InventoryDetail > inventoryDetailList = inventoryDetailService . list ( new LambdaQueryWrapper < InventoryDetail >()
. eq ( InventoryDetail: : getZoneCode , zone . getCode ()));
333
334
335
int inventorySize = inventoryDetailList . size ();
336
337
338
//库存物料汇总
List < InventoryMaterialSummary > list = inventoryMaterialSummaryService . list ( new LambdaQueryWrapper < InventoryMaterialSummary >()
. eq ( InventoryMaterialSummary: : getZoneCode , zone . getCode ()));
339
340
341
342
343
344
345
346
347
348
349
350
351
if ( list == null ) {
list = Collections . emptyList ();
}
//筛选库存汇总数据的专用方法
List < InventoryMaterialSummary > details = inventoryMaterialSummaryService . duplicateRemoval ( list );
TvBean tvBean = new TvBean ();
tvBean . setDetails ( details );
tvBean . setContainerEmptySize ( containerEmptySize );
tvBean . setContainerSomeSize ( containerSomeSize );
tvBean . setTotalLocationSize ( totalLocationSize );
tvBean . setTaskHeaderList ( taskHeaderList );
tvBean . setInventorySize ( inventorySize );
易文鹏
authored
about a year ago
352
return TVResult . success ( tvBean );
353
}
354
355
356
357
@PostMapping ( "/getTvPortShipmentView" )
@ApiOperation ( "获取出站口出库信息" )
@ResponseBody
358
//@ApiLogger(apiName = "获取出站口出库信息", from = "TV")
易文鹏
authored
about a year ago
359
public TVResult getTvPortShipmentView ( @RequestBody Map < String , String > map ) {
360
String par = map . get ( "par" );
361
List < ShipmentDetailTv > upList = shipmentDetailMapper . getTvOutList ( par );
易文鹏
authored
about a year ago
362
return TVResult . success ( upList );
363
}
364
}