교육운영>결제내역>결제관리(기본정보) :
" 조건 : 입금대기 상태 문의내용 : 관리자가 사용자에게 부여된 가상입금계좌 번호를 확인 할 수 있도록 필드 추가 가능 여부 * 토스에서 확인해도 관리자에게는 ** 로 보여진다고 함. + 결제정보 계산서발행 옆에 '입금계좌' 추가 - 국민 | X65659014316504 | 재단법인 영남건설기술교육원"
This commit is contained in:
parent
4675f187c9
commit
19d1c95d09
|
|
@ -148,8 +148,10 @@ else if (p.isunpay == 3)
|
||||||
}
|
}
|
||||||
</td>
|
</td>
|
||||||
<th>
|
<th>
|
||||||
|
입금계좌
|
||||||
</th>
|
</th>
|
||||||
<td>
|
<td>
|
||||||
|
@p.vactbankname | @p.vactnum | @p.vactname
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
||||||
|
|
@ -926,6 +926,7 @@
|
||||||
,CAST(AES_DECRYPT(UNHEX(pd.telno), <include refid="sql.digest"></include>) AS char) telno2
|
,CAST(AES_DECRYPT(UNHEX(pd.telno), <include refid="sql.digest"></include>) AS char) telno2
|
||||||
,CAST(AES_DECRYPT(UNHEX(pd.mobile), <include refid="sql.digest"></include>) AS char) mobile2
|
,CAST(AES_DECRYPT(UNHEX(pd.mobile), <include refid="sql.digest"></include>) AS char) mobile2
|
||||||
,tax.iscancel, tax.taxdate, tax.taxno
|
,tax.iscancel, tax.taxdate, tax.taxno
|
||||||
|
,paydata.vactbankname,CAST(AES_DECRYPT(UNHEX(paydata.vactnum), <include refid="sql.digest"></include>) AS char) vactnum,paydata.vactname
|
||||||
from pay p
|
from pay p
|
||||||
inner join users u on u.userno=p.userno
|
inner join users u on u.userno=p.userno
|
||||||
left outer join payitem pi on pi.payno=p.payno and pi.ptype in (3,4)
|
left outer join payitem pi on pi.payno=p.payno and pi.ptype in (3,4)
|
||||||
|
|
@ -934,6 +935,7 @@
|
||||||
left outer join examuser exu on exu.exno=ex.exno and exu.userno=p.userno
|
left outer join examuser exu on exu.exno=ex.exno and exu.userno=p.userno
|
||||||
left outer join paydvr pd on pd.payno=p.payno
|
left outer join paydvr pd on pd.payno=p.payno
|
||||||
left outer join paytax tax on tax.payno = p.payno
|
left outer join paytax tax on tax.payno = p.payno
|
||||||
|
left outer join paydata paydata on paydata.payno=p.payno
|
||||||
where p.payno=#payno#
|
where p.payno=#payno#
|
||||||
</select>
|
</select>
|
||||||
<select id="cr.pay2" parameterClass="long" resultClass="payitem">
|
<select id="cr.pay2" parameterClass="long" resultClass="payitem">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue