|
@@ -46,7 +46,7 @@ public class TaGoodsOrdersServiceImpl extends ServiceImpl<TaGoodsOrdersMapper, T
|
46
|
46
|
for (int j = 0;j<orders.size();j++){
|
47
|
47
|
List<TaGoodsOrdersDetail>thisDetail = new ArrayList<>();
|
48
|
48
|
for(int h = 0; h<detailList.size();h++){
|
49
|
|
- if(orders.get(j).getOrdersId() == detailList.get(h).getOrdersId()){
|
|
49
|
+ if(orders.get(j).getOrdersId().equals(detailList.get(h).getOrdersId())){
|
50
|
50
|
thisDetail.add(detailList.get(h));
|
51
|
51
|
}
|
52
|
52
|
}
|