Files
2025-02-20 14:59:35 +08:00

57 lines
2.9 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
${zhiqim_manager_breadcrumb("退款绩效参数")}
${zhiqim_manager_content()}
<#-- 导航 -->
<div data-role="z-tabnav" class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
<nav>
<ul>
<li onclick="Z.L.href('/orderConvertList.htm');">订单折算参数</li>
<li onclick="Z.L.href('/specialOrderTypeList.htm');">特殊订单绩效参数</li>
<li class="z-active">退款绩效参数</li>
<li onclick="Z.L.href('/performanceParameter.htm');">设计绩效参数</li>
<li onclick="Z.L.href('/qcParameter.htm');">质检参数</li>
<li onclick="Z.L.href('/qcAwardedType.htm');">质检加分管理</li>
<li onclick="Z.L.href('/qcPerformanceParam.htm');">质检绩效参数</li>
<li onclick="Z.L.href('/timelinessParameterList.htm');">时效绩效参数</li>
</ul>
<div class="z-float-left z-mg10">
</div>
<div class="z-text-right z-mg-t10 z-mg-r5">
<!--<button class="z-button ${zmr_color_class}" onclick="Z.L.href('refundParameterAdd.htm');"><i class="z-font z-add"></i>增加退款绩效参数</button>-->
<button class="z-button ${zmr_color_class}" onclick="Z.L.check('refundParameterModify.htm', 'parameterId');"><i class="z-font z-modify"></i>修改退款绩效参数</button>
</div>
</nav>
</div>
<#-- 列表 -->
<table class="z-table z-bordered z-h40-tr z-pd5 z-bg-white z-text-center">
<tr bgcolor="${zmr_thead_bgcolor}">
<td width="100">选择</td>
<td width="10%">标准退款率(%</td>
<td width="10%">标准退款率下限(%</td>
<td width="10%">标准退款率上限(%</td>
<td width="10%">奖励点(%</td>
<td width="10%">扣罚点(%</td>
<td width="10%">奖励金额(单位/元)</td>
<td width="10%">扣罚金额(单位/元)</td>
<td width="12%">最大奖励金额(单位/元)</td>
<td width="12%">最大扣罚金额(单位/元)</td>
</tr>
${zhiqim_manager_tr_no_record(pageResult, 10, "暂时没有退款绩效")}
<#for item : pageResult.list()>
<tr class="z-pointer" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
<td><input id="parameterId" name="parameterId" type="radio" data-role="z-radio" data-class="${zmr_color_class}" value="${item.getRefundParameterId()}"></td>
<td>${Maths.division(item.getStandardRefundRate(), 100, 2)}</td>
<td>${Maths.division(item.getStandardRefundRateFloor(), 100, 2)}</td>
<td>${Maths.division(item.getStandardRefundRateCeil(), 100, 2)}</td>
<td>${Maths.division(item.getRewardDot(), 100, 2)}</td>
<td>${Maths.division(item.getPunishDot(), 100, 2)}</td>
<td>${Maths.division(item.getRewardAmount(), 100, 2)}</td>
<td>${Maths.division(item.getPunishAmount(), 100, 2)}</td>
<td>${Maths.division(item.getRewardAmountMax(), 100, 2)}</td>
<td>${Maths.division(item.getPunishAmountMax(), 100, 2)}</td>
</tr>
</#for>
</table>
${zhiqim_manager_paging(pageResult, "refundParameter.htm")}
${zhiqim_manager_content_end()}