feat: 誤って削除したモジュールを復活

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2023-04-18 18:19:10 +09:00
parent 4431e5bbaa
commit acdedf13af

View File

@ -0,0 +1,20 @@
from src.batch.common.batch_context import BatchContext
from src.logging.get_logger import get_logger
batch_context = BatchContext.get_instance()
logger = get_logger('生物由来卸販売ロット分解')
def exec():
"""生物由来卸販売ロット分解"""
logger.info('生物由来卸販売ロット分解:起動')
# 営業日ではない場合、処理をスキップする
if batch_context.is_not_business_day:
logger.info('営業日ではないため、生物由来卸販売ロット分解処理をスキップします。')
return
# TODO: ここに処理を追記していく
logger.info('生物由来卸販売ロット分解:終了')
return