|
|
@@ -41,8 +41,11 @@ public class TsbShoplinkerStockJob extends TsbAbstractJob<Collection<ShoplinkerG
|
|
|
@Override
|
|
|
public Collection<ShoplinkerGoods> read() throws Exception {
|
|
|
|
|
|
- // 재고 변경정보 수정
|
|
|
- shoplinkerService.updateSyncStock();
|
|
|
+ String toDt = GagaDateUtil.getToday("yyyyMMdd");
|
|
|
+ if( !toDt.equals("20210901")) { // 0901은 수동배치
|
|
|
+ // 재고 변경정보 수정
|
|
|
+ shoplinkerService.updateSyncStock();
|
|
|
+ }
|
|
|
|
|
|
// 재고 변경 목록
|
|
|
return shoplinkerService.getSyncStockList();
|