代码更新

This commit is contained in:
2022-12-29 14:19:49 +08:00
parent 25782d442f
commit 3e2f71595a

View File

@@ -2924,7 +2924,11 @@ public class CheckOutBillServiceImpl implements CheckOutBillService {
String box_no = json.getString("box_no");
String sub_box_no = "";
if (ObjectUtil.isNotEmpty(box_no)) {
sub_box_no = box_no.substring(box_no.lastIndexOf("@")+1, box_no.length());
try {
sub_box_no = box_no.substring(box_no.lastIndexOf("@")+1, box_no.length());
} catch (Exception e) {
sub_box_no = box_no;
}
}
HashMap<String, Object> mapFL = new HashMap<>();