|
@@ -809,18 +809,18 @@ public class ContractServiceImpl extends ServiceImpl<ContractMapper, Contract> i
|
|
customItem.setCurrency(row.getCell(19)==null?null:row.getCell(19).getStringCellValue());
|
|
customItem.setCurrency(row.getCell(19)==null?null:row.getCell(19).getStringCellValue());
|
|
|
|
|
|
String s = row.getCell(20) == null ? null : row.getCell(20).getStringCellValue();
|
|
String s = row.getCell(20) == null ? null : row.getCell(20).getStringCellValue();
|
|
- if (StringUtils.isNotBlank(s)){
|
|
|
|
|
|
+ /*if (StringUtils.isNotBlank(s)){
|
|
customItem.setPayedAmount(new BigDecimal(s));
|
|
customItem.setPayedAmount(new BigDecimal(s));
|
|
- }
|
|
|
|
|
|
+ }*/
|
|
String s1 = (row.getCell(21) == null) ? null : row.getCell(21).getStringCellValue();
|
|
String s1 = (row.getCell(21) == null) ? null : row.getCell(21).getStringCellValue();
|
|
- if (StringUtils.isNotBlank(s1)){
|
|
|
|
|
|
+ /*if (StringUtils.isNotBlank(s1)){
|
|
if ("预付".equals(s1)) {
|
|
if ("预付".equals(s1)) {
|
|
customItem.setPayWay(1);
|
|
customItem.setPayWay(1);
|
|
} else {
|
|
} else {
|
|
customItem.setPayWay(2);
|
|
customItem.setPayWay(2);
|
|
}
|
|
}
|
|
- }
|
|
|
|
- customItem.setBillNumber(row.getCell(22)==null?null:row.getCell(22).getStringCellValue());
|
|
|
|
|
|
+ }*/
|
|
|
|
+ /*customItem.setBillNumber(row.getCell(22)==null?null:row.getCell(22).getStringCellValue());
|
|
String s2 = row.getCell(23) == null ? null : row.getCell(23).getStringCellValue();
|
|
String s2 = row.getCell(23) == null ? null : row.getCell(23).getStringCellValue();
|
|
if (StringUtils.isNotBlank(s2)){
|
|
if (StringUtils.isNotBlank(s2)){
|
|
customItem.setReservedAmounts(new BigDecimal(s2));
|
|
customItem.setReservedAmounts(new BigDecimal(s2));
|
|
@@ -833,7 +833,7 @@ public class ContractServiceImpl extends ServiceImpl<ContractMapper, Contract> i
|
|
String s4 = row.getCell(26) == null ? null : row.getCell(26).getStringCellValue();
|
|
String s4 = row.getCell(26) == null ? null : row.getCell(26).getStringCellValue();
|
|
if (StringUtils.isNotBlank(s4)){
|
|
if (StringUtils.isNotBlank(s4)){
|
|
customItem.setPendingAmounts(new BigDecimal(s4));
|
|
customItem.setPendingAmounts(new BigDecimal(s4));
|
|
- }
|
|
|
|
|
|
+ }*/
|
|
String status = row.getCell(27)==null?null:row.getCell(27).getStringCellValue();
|
|
String status = row.getCell(27)==null?null:row.getCell(27).getStringCellValue();
|
|
if (StringUtils.isNotBlank(status)){
|
|
if (StringUtils.isNotBlank(status)){
|
|
if ("履约中".equals(status)) {
|
|
if ("履约中".equals(status)) {
|