|
|
@@ -1285,8 +1285,8 @@ public class ReportsServiceImpl extends ServiceImpl<ReportsMapper, Reports> impl
|
|
|
}
|
|
|
}
|
|
|
containersReportsList.add(containersReports);
|
|
|
- text.append(item.getCntrNo()).append("/").append(item.getSealNo()).append("/").append(item.getCntrTypeCode()).append("<br/>")
|
|
|
- .append(item.getQuantity()).append(item.getPackingUnit()).append("/")
|
|
|
+ text.append(item.getCntrNo()).append("/").append(item.getSealNo()).append("<br/>")
|
|
|
+ .append(item.getCntrTypeCode()).append(item.getQuantity()).append(item.getPackingUnit()).append("<br/>")
|
|
|
.append(item.getGrossWeight()).append("KGS").append("/")
|
|
|
.append(item.getMeasurement()).append("CBM").append("<br/>");
|
|
|
if (ObjectUtils.isNotNull(item.getCntrNo()) || ObjectUtils.isNotNull(item.getSealNo())) {
|
|
|
@@ -1294,6 +1294,9 @@ public class ReportsServiceImpl extends ServiceImpl<ReportsMapper, Reports> impl
|
|
|
}
|
|
|
}
|
|
|
bills.setCntryString(text.toString());
|
|
|
+ bills.setCommodityDescr(bills.getCommodityDescr()+"SHIPPER'S LOAD,COUNT & SEAL"+bills.getQuantityCntrDescr()+"CONTAINER S.T.C"
|
|
|
+ +bills.getHpaymode()+bills.getServiceTerms()+bills.getCapitalLetters());
|
|
|
+ bills.setMarks(bills.getMarks()+bills.getCntryString());
|
|
|
bills.setCntrSealNo(cntrSealNo.toString());
|
|
|
bills.setContainersReportsList(containersReportsList);
|
|
|
bills.setDept(dept);
|
|
|
@@ -1334,8 +1337,8 @@ public class ReportsServiceImpl extends ServiceImpl<ReportsMapper, Reports> impl
|
|
|
StringBuilder text = new StringBuilder();
|
|
|
StringBuilder cntrSealNo = new StringBuilder();
|
|
|
for (Containers item : containersList) {
|
|
|
- text.append(item.getCntrNo()).append("/").append(item.getSealNo()).append("/").append(item.getCntrTypeCode()).append("<br/>")
|
|
|
- .append(item.getQuantity()).append(item.getPackingUnit()).append("/")
|
|
|
+ text.append(item.getCntrNo()).append("/").append(item.getSealNo()).append("<br/>")
|
|
|
+ .append(item.getCntrTypeCode()).append(item.getQuantity()).append(item.getPackingUnit()).append("<br/>")
|
|
|
.append(item.getGrossWeight()).append("KGS").append("/")
|
|
|
.append(item.getMeasurement()).append("CBM").append("<br/>");
|
|
|
if (ObjectUtils.isNotNull(item.getCntrNo()) || ObjectUtils.isNotNull(item.getSealNo())) {
|
|
|
@@ -1343,6 +1346,9 @@ public class ReportsServiceImpl extends ServiceImpl<ReportsMapper, Reports> impl
|
|
|
}
|
|
|
}
|
|
|
bills.setCntryString(text.toString());
|
|
|
+ bills.setCommodityDescr(bills.getCommodityDescr()+"SHIPPER'S LOAD,COUNT & SEAL"+bills.getQuantityCntrDescr()+"CONTAINER S.T.C"
|
|
|
+ +bills.getHpaymode()+bills.getServiceTerms()+bills.getCapitalLetters());
|
|
|
+ bills.setMarks(bills.getMarks()+bills.getCntryString());
|
|
|
bills.setCntrSealNo(cntrSealNo.toString());
|
|
|
bills.setDept(dept);
|
|
|
map.put(MagicValues.DATA, bills);
|
|
|
@@ -2103,12 +2109,15 @@ public class ReportsServiceImpl extends ServiceImpl<ReportsMapper, Reports> impl
|
|
|
bills.setContainersList(containersList);
|
|
|
StringBuilder text = new StringBuilder();
|
|
|
for (Containers item : containersList) {
|
|
|
- text.append(item.getCntrNo()).append("/").append(item.getSealNo()).append("/").append(item.getCntrTypeCode()).append("<br/>")
|
|
|
- .append(item.getQuantity()).append(item.getPackingUnit()).append("/")
|
|
|
+ text.append(item.getCntrNo()).append("/").append(item.getSealNo()).append("<br/>")
|
|
|
+ .append(item.getCntrTypeCode()).append(item.getQuantity()).append(item.getPackingUnit()).append("<br/>")
|
|
|
.append(item.getGrossWeight()).append("KGS").append("/")
|
|
|
.append(item.getMeasurement()).append("CBM").append("<br/>");
|
|
|
}
|
|
|
bills.setCntryString(text.toString());
|
|
|
+ bills.setCommodityDescr(bills.getCommodityDescr()+"SHIPPER'S LOAD,COUNT & SEAL"+bills.getQuantityCntrDescr()+"CONTAINER S.T.C"
|
|
|
+ +bills.getHpaymode()+bills.getServiceTerms()+bills.getCapitalLetters());
|
|
|
+ bills.setMarks(bills.getMarks()+bills.getCntryString());
|
|
|
bills.setDept(dept);
|
|
|
map.put(MagicValues.DATA, bills);
|
|
|
} else {
|