[fix]添加Rpay+图标

master
hellolujian 6 years ago
parent 5b26497cd8
commit 535267fa96

@ -316,7 +316,9 @@
ifnull(sum(CASE WHEN s.channel = 'AlipayOnline' THEN s.total ELSE 0 END),0) alipayonlineamount,
ifnull(sum(CASE WHEN s.channel = 'AlipayOnline' THEN s.orders ELSE 0 END),0) alipayonline_order_count,
ifnull(sum(CASE WHEN s.channel = 'hf' THEN s.total ELSE 0 END),0) hfamount,
ifnull(sum(CASE WHEN s.channel = 'hf' THEN s.orders ELSE 0 END),0) hf_order_count
ifnull(sum(CASE WHEN s.channel = 'hf' THEN s.orders ELSE 0 END),0) hf_order_count,
ifnull(sum(CASE WHEN s.channel = 'Rpay' THEN s.total ELSE 0 END),0) rpayamount,
ifnull(sum(CASE WHEN s.channel = 'Rpay' THEN s.orders ELSE 0 END),0) rpay_order_count
FROM statistics_customer_order s
LEFT JOIN sys_clients c ON c.client_id = s.client_id and c.is_valid=1
]]>

@ -179,6 +179,8 @@
uib-tooltip="JD Pay" ng-if="order.channel=='jd'"/>
<img src="/static/images/hf_sign.png"
uib-tooltip="HF Pay" ng-if="order.channel=='hf'"/>
<img src="/static/images/rpayplus.png"
uib-tooltip="R Pay" ng-if="order.channel=='Rpay'"/>
{{order.order_id}}
</td>
<td>{{order.short_name}}(<a class="text-primary" role="button" title="Detail"

@ -216,9 +216,12 @@
<th>
<img src="/static/images/jd_sign.png"/>
JD Pay:{{totalChannelAmount.jdPayAmount|currency: ' $ '}}</th>
<th>
<img src="/static/images/rpayplus.png"/>
R Pay:{{totalChannelAmount.rpayamount|currency: ' $ '}}</th>
<th>
<img src="/static/images/hf_sign.png"/>
JD Pay:{{totalChannelAmount.hfPayAmount|currency: ' $ '}}</th>
hf Pay:{{totalChannelAmount.hfPayAmount|currency: ' $ '}}</th>
&lt;!&ndash;<th>&ndash;&gt;
&lt;!&ndash;<img src="/static/images/wechatpay_sign.png"/>&ndash;&gt;
&lt;!&ndash;Znyoo:{{totalChannelAmount.znyooAmount|currency: ' $ '}}</th>&ndash;&gt;

@ -178,6 +178,9 @@
<th>
<img src="/static/images/hf_sign.png"/>
JD Pay:{{totalChannelAmount.hfPayAmount|currency: ' $ '}}</th>
<th>
<img src="/static/images/rpayplus.png"/>
R Pay:{{totalChannelAmount.rpayamount|currency: ' $ '}}</th>
</tr>
</table>-->
</div>

@ -45,6 +45,8 @@
uib-tooltip="JD Pay" ng-if="order.channel=='jd'"/>
<img src="/static/images/hf_sign.png"
uib-tooltip="HF Pay" ng-if="order.channel=='hf'"/>
<img src="/static/images/rpayplus.png"
uib-tooltip="R Pay" ng-if="order.channel=='Rpay'"/>
{{order.order_id}}
</td>
</p>

@ -206,6 +206,8 @@
uib-tooltip="JD Pay" ng-if="trade.channel=='jd'"/>
<img src="/static/images/hf_sign.png"
uib-tooltip="HF Pay" ng-if="trade.channel=='hf'"/>
<img src="/static/images/rpayplus.png"
uib-tooltip="R Pay" ng-if="trade.channel=='Rpay'"/>
{{trade.order_id2}}
</td>
<td ng-bind="trade.currency"></td>

@ -101,6 +101,8 @@
uib-tooltip="JD Pay" ng-if="order.channel=='jd'"/>
<img src="/static/images/hf_sign.png"
uib-tooltip="HF Pay" ng-if="order.channel=='hf'"/>
<img src="/static/images/rpayplus.png"
uib-tooltip="R Pay" ng-if="order.channel=='Rpay'"/>
{{order.order_id}}
</td>
</p>

@ -200,6 +200,8 @@
uib-tooltip="JD Pay" ng-if="trade.channel=='jd'"/>
<img src="/static/images/hf_sign.png"
uib-tooltip="HF Pay" ng-if="trade.channel=='hf'"/>
<img src="/static/images/rpayplus.png"
uib-tooltip="R Pay" ng-if="trade.channel=='Rpay'"/>
{{trade.order_id2}}
</td>
<td ng-bind="trade.currency"></td>

@ -185,6 +185,7 @@
<img src="/static/images/alipay_sign.png" uib-tooltip="AlipayOnline" ng-if="trade.channel=='AlipayOnline'"/>
<img src="/static/images/jd_sign.png" uib-tooltip="JD Pay" ng-if="trade.channel=='jd'"/>
<img src="/static/images/hf_sign.png" uib-tooltip="HF Pay" ng-if="trade.channel=='hf'"/>
<img src="/static/images/rpayplus.png" uib-tooltip="R Pay" ng-if="trade.channel=='Rpay'"/>
{{trade.order_id}}
</td>
<td>

@ -296,6 +296,8 @@
uib-tooltip="JD Pay" ng-if="trade.channel=='jd'"/>
<img src="/static/images/hf_sign.png"
uib-tooltip="HF Pay" ng-if="trade.channel=='hf'"/>
<img src="/static/images/rpayplus.png"
uib-tooltip="RPay" ng-if="trade.channel=='Rpay'"/>
{{trade.order_id2}}
</td>
<td ng-bind="trade.currency"></td>

@ -322,6 +322,7 @@
<img src="/static/images/alipay_sign.png" uib-tooltip="AlipayOnline" alt="AlipayOnline" ng-if="trade.channel=='AlipayOnline'"/>
<img src="/static/images/jd_sign.png" uib-tooltip="JD Pay" ng-if="trade.channel=='jd'"/>
<img src="/static/images/hf_sign.png" uib-tooltip="HF Pay" ng-if="trade.channel=='hf'"/>
<img src="/static/images/rpayplus.png" uib-tooltip="R Pay" ng-if="trade.channel=='Rpay'"/>
{{trade.order_id}}
</td>
<td>

Loading…
Cancel
Save