Compare commits
2 Commits
a6830079e1
...
a7bf8ea2c1
| Author | SHA1 | Date |
|---|---|---|
|
|
a7bf8ea2c1 | |
|
|
bbc8d8b1d3 |
|
|
@ -45,8 +45,6 @@ public class PurchaseMacodeInfoServiceImpl implements IPurchaseMacodeInfoService
|
|||
@Resource
|
||||
private PurchaseCheckDetailsMapper checkDetailsMapper;
|
||||
|
||||
@Autowired
|
||||
private IPurchaseMacodeInfoService purchaseMacodeInfoService;
|
||||
|
||||
|
||||
/**
|
||||
|
|
@ -271,12 +269,12 @@ public class PurchaseMacodeInfoServiceImpl implements IPurchaseMacodeInfoService
|
|||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int modifyManageStatus(MaInputVO maInputVO) throws Exception {
|
||||
public int modifyManageStatus(MaInputVO maInputVO) {
|
||||
if (maInputVO.getInputRecordList().get(0) != null && maInputVO.getInputRecordList().get(0).getTaskId() != null) {
|
||||
Long taskId = maInputVO.getInputRecordList().get(0).getTaskId();
|
||||
PurchaseMacodeInfo purchaseMacodeInfo = new PurchaseMacodeInfo();
|
||||
purchaseMacodeInfo.setTaskId(taskId);
|
||||
List<PurchaseMacodeInfo> purchaseMacodeInfos = purchaseMacodeInfoService.selectPutinDetails(purchaseMacodeInfo);
|
||||
List<PurchaseMacodeInfo> purchaseMacodeInfos = selectPutinDetails(purchaseMacodeInfo);
|
||||
for (PurchaseMacodeInfo macodeInfo : purchaseMacodeInfos) {
|
||||
if (macodeInfo.getMaCode() == null) {
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue