fix: 訂正前伝票管理番号による登録日・登録者の判定を修正
This commit is contained in:
parent
756268b0b8
commit
46788aaca8
@ -149,12 +149,12 @@ def _insert_bio_sales_lot(db: Database):
|
||||
WHEN 3 THEN bio.err_flg13
|
||||
END
|
||||
END AS rec_sts_kbn,
|
||||
CASE bio.bef_slip_mgt_num
|
||||
WHEN NULL THEN bio.ins_dt
|
||||
CASE
|
||||
WHEN bio.bef_slip_mgt_num IS NOT NULL THEN bio.ins_dt
|
||||
ELSE NULL
|
||||
END AS ins_dt,
|
||||
CASE bio.bef_slip_mgt_num
|
||||
WHEN NULL THEN bio.ins_usr
|
||||
CASE
|
||||
WHEN bio.bef_slip_mgt_num IS NOT NULL THEN bio.ins_usr
|
||||
ELSE NULL
|
||||
END AS ins_usr,
|
||||
bio.dwh_upd_dt AS dwh_upd_dt,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user