Merge pull request 'demand:检查月结客户首次签约日期bug修改' (#42) from develop into master

Reviewed-on: http://git.xdadan.loc/tanex/emis-service/pulls/42
This commit is contained in:
heyu 2025-05-28 13:27:02 +08:00
commit d25cfd7144

View File

@ -4062,6 +4062,9 @@ public class EmisBaseService {
* @throws EmisBizError
*/
protected void checkFirstSigningDay(EmisWaybill emisWaybillOld, EmisWaybill emisWaybillNew) throws EmisBizError {
if ("1".equals(emisWaybillNew.getPaymentType())) {
return;
}
if (emisWaybillOld == null || emisWaybillOld.getOrderDate() == null || emisWaybillNew == null || StringUtil.isBlank(emisWaybillNew.getCustNo())) {
return;
}