mirror of https://github.com/jeecgboot/jeecg-boot
commit
a3ec072954
|
@ -178,7 +178,7 @@ public class AddGiftJob implements Job {
|
||||||
.collect(groupingBy(orderItem -> giftSkuSet.contains(orderItem.getErpCode())));
|
.collect(groupingBy(orderItem -> giftSkuSet.contains(orderItem.getErpCode())));
|
||||||
for (OrderItem orderItem : orderItemMap.get(Boolean.FALSE)) {
|
for (OrderItem orderItem : orderItemMap.get(Boolean.FALSE)) {
|
||||||
String erpCode = orderItem.getErpCode();
|
String erpCode = orderItem.getErpCode();
|
||||||
if (!nonMatchingRulesApplied) {
|
if (!nonMatchingRulesApplied && nonMatchingQuantityRules != null) {
|
||||||
for (GiftRule giftRule : nonMatchingQuantityRules) {
|
for (GiftRule giftRule : nonMatchingQuantityRules) {
|
||||||
if (erpCode.matches(giftRule.getRegex())) {
|
if (erpCode.matches(giftRule.getRegex())) {
|
||||||
nonMatchingRulesApplied = true;
|
nonMatchingRulesApplied = true;
|
||||||
|
|
|
@ -8,7 +8,7 @@ ${AnsiColor.BRIGHT_BLUE}
|
||||||
|
|
||||||
|
|
||||||
${AnsiColor.BRIGHT_GREEN}
|
${AnsiColor.BRIGHT_GREEN}
|
||||||
WIA APP Version: 2.9.1
|
WIA APP Version: 2.9.3
|
||||||
Spring Boot Version: ${spring-boot.version}${spring-boot.formatted-version}
|
Spring Boot Version: ${spring-boot.version}${spring-boot.formatted-version}
|
||||||
Website: www.wia-sourcing.com
|
Website: www.wia-sourcing.com
|
||||||
${AnsiColor.BLACK}
|
${AnsiColor.BLACK}
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -2,7 +2,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.jeecgframework.boot</groupId>
|
<groupId>org.jeecgframework.boot</groupId>
|
||||||
<artifactId>jeecg-boot-parent</artifactId>
|
<artifactId>jeecg-boot-parent</artifactId>
|
||||||
<version>2.9.1</version>
|
<version>2.9.3</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>WIA APP ${project.version}</name>
|
<name>WIA APP ${project.version}</name>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue