| | |
| | | String changeStart = os[21] == null ? null : excelDoubleToDate(os[21].toString()); |
| | | String changeEnd = os[22] == null ? null : excelDoubleToDate(os[22].toString()); |
| | | String bankDepositDate = os[8] == null ? null : excelDoubleToDate(os[8].toString()); |
| | | String inputTime = os[16] == null ? null : excelDoubleToDate(os[16].toString()); |
| | | String inputTime = null; |
| | | if(os[16] != null){ |
| | | inputTime = excelDoubleToDate(os[16].toString().split("\\.")[0]); |
| | | } |
| | | white.setChargeTime(chargeTime); |
| | | white.setInvoiceReceiptNo(os[1] == null ? null : os[1].toString()); |
| | | white.setRoomId(os[2] == null ? null : os[2].toString()); |
| | |
| | | white.setCategory22(os[20] == null ? null : os[20].toString()); |
| | | white.setChargeStart(changeStart); |
| | | white.setChargeEnd(changeEnd); |
| | | white.setRow(osIndex + 1); |
| | | whiteLists.add(white); |
| | | } |
| | | } |