This commit is contained in:
zds
2022-07-13 16:36:37 +08:00
parent e592ee1e86
commit 813209a200

View File

@@ -97,11 +97,11 @@ public class CheckOutBillServiceImpl implements CheckOutBillService {
}
String begin_time = map.get("begin_time");
if (StrUtil.isNotEmpty(begin_time)) {
map.put("begin_time", begin_time.substring(0,10)+" 00:00:00");
map.put("begin_time", begin_time.substring(0,10));
}
String end_time = map.get("end_time");
if (StrUtil.isNotEmpty(end_time)) {
map.put("end_time", end_time.substring(0,10)+" 23:59:59");
map.put("end_time", end_time.substring(0,10));
}
String source_bill_code = map.get("source_bill_code");
if (StrUtil.isNotEmpty(source_bill_code)) {