diff --git a/Dao/MyBatis/Maps/Pay.xml b/Dao/MyBatis/Maps/Pay.xml index a6926a0..105c82b 100644 --- a/Dao/MyBatis/Maps/Pay.xml +++ b/Dao/MyBatis/Maps/Pay.xml @@ -781,12 +781,12 @@ delete from payrfditem where rfdno=#rfdno#; delete from payrfd where payno=#payno# and rfdno=#rfdno#; - insert into payrfd(payno,rtext,bankname,bankno,bankowner,isowner,rstatus,ruser,rphone,rreason,fgnor,fgnob,) + insert into payrfd(payno,rtext,bankname,bankno,bankowner,isowner,rstatus,ruser,rphone,rreason,fgnor,fgnob,ramt,) select distinct #payno#,#rtext#,#bankname# ,HEX(AES_ENCRYPT(#bankno#, )) ,#bankowner#,#isowner#,#rstatus#,#ruser# ,HEX(AES_ENCRYPT(#rphone#, )) - ,#rreason#,#fgnor#,#fgnob#, + ,#rreason#,#fgnor#,#fgnob#,#ramt#, from pay a inner join payitem b on b.payno=a.payno and b.pino in ($pinos$) and a.pstatus=1 and a.rstatus=0 left outer join cm c0 on b.ptype in (0,4) and c0.cmno=b.itemno and ifnull(c0.retime,date_add(now(), interval 1 day)) > now() diff --git a/FO/Views/My/PayInfo.cshtml b/FO/Views/My/PayInfo.cshtml index 0f7a90b..60607ed 100644 --- a/FO/Views/My/PayInfo.cshtml +++ b/FO/Views/My/PayInfo.cshtml @@ -35,7 +35,14 @@ 지불방법@Model.Pay.ptypename @if (Model.Pay.ptype == 3) { - 입금계좌@Model.Pay.vactbankname | @Model.Pay.vactnum | @Model.Pay.vactname + + 입금계좌 + @if (!string.IsNullOrEmpty(Model.Pay.vactbankname) && !string.IsNullOrEmpty(Model.Pay.vactnum) && !string.IsNullOrEmpty(Model.Pay.vactname)) + { + @Model.Pay.vactbankname | @Model.Pay.vactnum | @Model.Pay.vactname + } + + } 주문접수일 @@ -244,6 +251,7 @@
+