|
@@ -81,7 +81,7 @@ public class RepairSupplyService {
|
|
|
List<RepairRegisterPartVo> parts = new ArrayList<>();
|
|
|
List<PriceList> priceListList = priceListService.getByRepairId(repairId);
|
|
|
for (PriceList priceList : priceListList) {
|
|
|
- if(priceList.getStatus() == 1){
|
|
|
+ if(priceList.getStatus() == 1 || priceList.getStatus() == 2){
|
|
|
if(priceList.getPartId() != null && priceList.getType() == 0){
|
|
|
if(priceMap.get(priceList.getPartId()) == null){
|
|
|
priceMap.put(priceList.getPartId(),priceList);
|