|
@@ -1376,7 +1376,7 @@ public class SubmitServiceImpl implements SubmitService {
|
|
|
// shopOrderList = findSplitShopOrder(orderProductList, shopOrderList, shops, orderParamBo);
|
|
|
for (OrderShopPo shop : shops) {
|
|
|
shopOrderList.forEach(s -> {
|
|
|
- if (s.getShopId() == shop.getShopId()) {
|
|
|
+ if (s.getShopId().equals(shop.getShopId())) {
|
|
|
s.setSplitCode(shop.getSplitCode());
|
|
|
}
|
|
|
});
|