parent
8d37d8f459
commit
cfaeab3cb8
|
|
@ -140,6 +140,8 @@
|
|||
<th>입금금액<br />(환불금액)</th>
|
||||
<th>신청/승인일</th>
|
||||
<th>입금일</th>
|
||||
<th>진도율</th>
|
||||
<th>수료여부</th>
|
||||
<th>상태</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
@ -165,6 +167,8 @@
|
|||
<td class="link" style="text-align: right !important;"><a href="#" onclick="gorefund(@d.payno, @d.pstatus)">@(d.pstatus == 1 ? d.payamt.ToString("#,0") : "0")<br /><span class="red">(@(d.refundamt.ToString("#,0")))</span></a></td>
|
||||
<td>@d.cdtymd</td>
|
||||
<td>@(d.payoktime == null ? "" : d.payoktime.Value.ToString("yy-MM-dd"))</td>
|
||||
<td>@d.attrate</td>
|
||||
<td>@d.completename</td>
|
||||
<td class="@(d.rstatus > 0 || d.isrefundcall == 1 ? "red redback":"")">@d.pstatusname2</td>
|
||||
</tr>
|
||||
}
|
||||
|
|
|
|||
|
|
@ -810,7 +810,7 @@
|
|||
,cast(AES_DECRYPT(UNHEX(u.mobile), 'np123@!' ) as char) as mobile
|
||||
,ua.asname,ua.isjoin
|
||||
,cm.cshape,cm.sstime,cm.setime,cm.studyplace
|
||||
,le.sdate,le.edate,le.iscomplete
|
||||
,le.sdate,le.edate,le.iscomplete,le.attrate,le.iscomplete
|
||||
,case when a.isexamready=1 then uee.exname else case pi.ptype when 2 then bk.bkname when 3 then ex.exname else cm.cname end end itemname
|
||||
,ppl.rbankname,CAST(AES_DECRYPT(UNHEX(ppl.rbankacc), <include refid="sql.digest"></include>) AS char) rbankacc,ppl.rbankowner
|
||||
,row_number() over(order by case when pr.rstatus=0 and pri.rfdno is not null then 0 else 1 end, case when a.isexamready=1 then ue.cdt else p.cdt end desc) rno
|
||||
|
|
|
|||
|
|
@ -605,6 +605,8 @@ namespace NP.Model
|
|||
return iscomplete == null ? "미수료" : iscomplete == 0 ? "미수료" : "수료";
|
||||
}
|
||||
}
|
||||
public int attrate { get; set; }
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Reference in New Issue