|
|
@@ -355,13 +355,13 @@ public class OutServiceImpl implements OutService {
|
|
355
|
355
|
public void checkStock() {
|
|
356
|
356
|
count += 1;
|
|
357
|
357
|
// 查询未出库状态,出库单存在的数据
|
|
358
|
|
- List<String> list = distributionMapper.selectWaitOutIds();
|
|
359
|
|
- if(!list.isEmpty()){
|
|
360
|
|
- for (String storeId : list) {
|
|
361
|
|
-// 根据id修改主表出库状态
|
|
362
|
|
- distributionMapper.updateOutStatus(storeId);
|
|
363
|
|
- }
|
|
364
|
|
- }
|
|
|
358
|
+// List<String> list = distributionMapper.selectWaitOutIds();
|
|
|
359
|
+// if(!list.isEmpty()){
|
|
|
360
|
+// for (String storeId : list) {
|
|
|
361
|
+//// 根据id修改主表出库状态
|
|
|
362
|
+// distributionMapper.updateOutStatus(storeId);
|
|
|
363
|
+// }
|
|
|
364
|
+// }
|
|
365
|
365
|
System.out.println("执行定时任务_______"+count);
|
|
366
|
366
|
|
|
367
|
367
|
}
|