24 lines
838 B
Python
24 lines
838 B
Python
# -*- coding: utf-8 -*-
|
|
import sys, io
|
|
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
sys.path.insert(0, 'c:\\Users\\청춘약국\\source\\pharmacy-pos-qr-system\\backend')
|
|
|
|
from db.dbsetup import get_db_session
|
|
from sqlalchemy import text
|
|
|
|
session = get_db_session('PM_DRUG')
|
|
|
|
print('업데이트 전:')
|
|
r = session.execute(text("SELECT GoodsName, POS_BOON FROM CD_GOODS WHERE DrugCode = 'LB000003140'")).fetchone()
|
|
print(f' {r.GoodsName}: POS_BOON = {r.POS_BOON}')
|
|
|
|
session.execute(text("UPDATE CD_GOODS SET POS_BOON = '010103' WHERE DrugCode = 'LB000003140'"))
|
|
session.commit()
|
|
|
|
print('\n업데이트 후:')
|
|
r2 = session.execute(text("SELECT GoodsName, POS_BOON FROM CD_GOODS WHERE DrugCode = 'LB000003140'")).fetchone()
|
|
print(f' {r2.GoodsName}: POS_BOON = {r2.POS_BOON}')
|
|
print(' ✅ 완료!')
|
|
|
|
session.close()
|