|
@@ -7,7 +7,7 @@
|
7
|
7
|
/* WhsMngMapper.selectWhsMngGridList */
|
8
|
8
|
SELECT A.brand_id, FN_BRAND_NM(A.brand_id) AS brand_nm,
|
9
|
9
|
A.whs_id, A.whs_nm, A.whs_dvsn, FN_CODE_NM('WHS_DVSN', A.whs_dvsn) AS whs_dvsn_nm,
|
10
|
|
- A.mgr_nm, A.mgr_tel_no, A.whs_st_cd, FN_CODE_NM('WHS_ST_CD', A.whs_st_cd) AS whs_st_nm,
|
|
10
|
+ A.mgr_nm, FN_GET_TELNO(A.mgr_tel_no) AS mgr_tel_no, A.whs_st_cd, FN_CODE_NM('WHS_ST_CD', A.whs_st_cd) AS whs_st_nm,
|
11
|
11
|
A.store_id, FN_STORE_NM(A.brand_id, A.store_id) AS store_nm
|
12
|
12
|
FROM whs_mgnt_base_info A
|
13
|
13
|
WHERE A.brand_id = #{sBrandId}
|
|
@@ -66,7 +66,7 @@
|
66
|
66
|
/* WhsMngMapper.selectWhsMgntBaseInfo */
|
67
|
67
|
SELECT A.brand_id, FN_BRAND_NM(A.brand_id) AS brand_nm,
|
68
|
68
|
A.whs_id, A.whs_nm, A.whs_dvsn, FN_CODE_NM('WHS_DVSN', A.whs_dvsn) AS whs_dvsn_nm,
|
69
|
|
- A.mgr_nm, A.mgr_tel_no, A.zip_no,
|
|
69
|
+ A.mgr_nm, FN_GET_TELNO(A.mgr_tel_no) AS mgr_tel_no, A.zip_no,
|
70
|
70
|
A.addr1, A.addr2, A.whs_st_cd, FN_CODE_NM('WHS_ST_CD', A.whs_st_cd) AS whs_st_nm,
|
71
|
71
|
A.store_id, FN_STORE_NM(A.brand_id, A.store_id) AS store_nm,
|
72
|
72
|
DATE_FORMAT(A.sys_reg_dttm,'%Y.%m.%d %H:%i:%s') AS sys_reg_dttm, A.sys_reg_id, DATE_FORMAT(A.sys_chg_dttm,'%Y.%m.%d %H:%i:%s') AS sys_chg_dttm, A.sys_chg_id
|