|
|
|
@ -66,7 +66,11 @@ public class SelectWorktrayrealtimeinfoController extends BaseController {
|
|
|
|
|
List<TRpWorktrayrealtimeinfo> list = tRpWorktrayrealtimeinfoService.selectrealtimeinfoList(tRpWorktrayrealtimeinfo);
|
|
|
|
|
for (TRpWorktrayrealtimeinfo tw:list)
|
|
|
|
|
{
|
|
|
|
|
tw.setProductCode(tw.getBarcoderelationship().getProductBarcode());
|
|
|
|
|
if(tw.getBarcoderelationship()!=null){
|
|
|
|
|
if (tw.getBarcoderelationship().getProductBarcode()!=null){
|
|
|
|
|
tw.setProductCode(tw.getBarcoderelationship().getProductBarcode());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ExcelUtil<TRpWorktrayrealtimeinfo> util = new ExcelUtil<TRpWorktrayrealtimeinfo>(TRpWorktrayrealtimeinfo.class);
|
|
|
|
|
return util.exportExcel(list, "托盘实时信息");
|
|
|
|
|