|
|
@ -152,7 +152,7 @@ public class ScmVehRebateService extends MybatisBaseService<ScmVehRebateMapper, |
|
|
|
qw.eq("palceGenDate", query.getPalceGenDate()); |
|
|
|
} |
|
|
|
if (StringUtils.isNotBlank(query.getWithholdingDate())) { |
|
|
|
String withholdingDate = query.getWithholdingDate().replace("年", "-").replace("月", ""); |
|
|
|
String withholdingDate = query.getWithholdingDate().replace("-", "年") + "月"; |
|
|
|
qw.eq("withholdingDate", withholdingDate); |
|
|
|
} |
|
|
|
if (StringUtils.isNotBlank(query.getUploadState())) { |
|
|
@ -408,7 +408,7 @@ public class ScmVehRebateService extends MybatisBaseService<ScmVehRebateMapper, |
|
|
|
qw.eq("palceGenDate", query.getPalceGenDate()); |
|
|
|
} |
|
|
|
if (StringUtils.isNotBlank(query.getWithholdingDate())) { |
|
|
|
String withholdingDate = query.getWithholdingDate().replace("年", "-").replace("月", ""); |
|
|
|
String withholdingDate = query.getWithholdingDate().replace("-", "年") + "月"; |
|
|
|
qw.eq("withholdingDate", withholdingDate); |
|
|
|
} |
|
|
|
if (StringUtils.isNotBlank(query.getUploadState())) { |
|
|
@ -541,7 +541,7 @@ public class ScmVehRebateService extends MybatisBaseService<ScmVehRebateMapper, |
|
|
|
qw.eq("palceGenDate", query.getPalceGenDate()); |
|
|
|
} |
|
|
|
if (StringUtils.isNotBlank(query.getWithholdingDate())) { |
|
|
|
String withholdingDate = query.getWithholdingDate().replace("年", "-").replace("月", ""); |
|
|
|
String withholdingDate = query.getWithholdingDate().replace("-", "年") + "月"; |
|
|
|
qw.eq("withholdingDate", withholdingDate); |
|
|
|
} |
|
|
|
if (StringUtils.isNotBlank(query.getUploadState())) { |
|
|
|