|
|
@@ -8,6 +8,7 @@ import jp.yamoto.farm.common.aws.s3.AwsS3FileService;
|
|
|
import jp.yamoto.farm.common.aws.ses.AwsSesEmailService;
|
|
|
import jp.yamoto.farm.quartz.util.CsvUtils;
|
|
|
import jp.yamoto.farm.common.biz.domain.entity.BssOrderEntity;
|
|
|
+import jp.yamoto.farm.common.biz.enums.TaskPgIdEnum;
|
|
|
import jp.yamoto.farm.common.biz.service.IBssOrderBaseService;
|
|
|
import jp.yamoto.farm.common.utils.uuid.IdUtils;
|
|
|
|
|
|
@@ -16,7 +17,6 @@ import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
-import java.math.BigDecimal;
|
|
|
|
|
|
/**
|
|
|
* 注文情報CSVファイルを読み込み処理
|
|
|
@@ -460,9 +460,9 @@ public class BssOrderTask {
|
|
|
// Version
|
|
|
order.setVersion(1);
|
|
|
// 登録プログラムID
|
|
|
- order.setCreatePgId("batch03");
|
|
|
+ order.setCreatePgId(TaskPgIdEnum.T004.getCode());
|
|
|
// 更新プログラムID
|
|
|
- order.setUpdatePgId("batch03");
|
|
|
+ order.setUpdatePgId(TaskPgIdEnum.T004.getCode());
|
|
|
|
|
|
return order;
|
|
|
}
|