manage-client 3.3.239 → 3.3.240
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/sale/config/exportConfig.js +2 -1
- package/src/components/webmeter/report/ReportList.vue +8 -1
- package/src/filiale/hantou/RecordInfoQuery.vue +1512 -0
- package/src/filiale/hantou/sale.js +4 -0
- package/src/filiale/yangchun/ChargeQuery.vue +7 -1
- package/src/filiale/yangchun/HandplanQuery.vue +7 -1
- package/src/filiale/yangchun/config/exportConfig.js +4 -2
- package/src/main.js +1 -1
|
@@ -575,7 +575,10 @@
|
|
|
575
575
|
<nobr>抵扣单价</nobr>
|
|
576
576
|
</th>
|
|
577
577
|
<th>
|
|
578
|
-
<nobr
|
|
578
|
+
<nobr>本次抵扣金额</nobr>
|
|
579
|
+
</th>
|
|
580
|
+
<th>
|
|
581
|
+
<nobr>剩余抵扣金额</nobr>
|
|
579
582
|
</th>
|
|
580
583
|
<th v-show="$parent.$parent.$parent.authArr.includes('收费查询票据补打')">
|
|
581
584
|
<nobr>操作</nobr>
|
|
@@ -803,6 +806,9 @@
|
|
|
803
806
|
<td style="text-align: center;">
|
|
804
807
|
<nobr>{{ row.f_current_deduct_amount }}</nobr>
|
|
805
808
|
</td>
|
|
809
|
+
<td style="text-align: center;">
|
|
810
|
+
<nobr>{{ row.f_remaining_deduct_amount }}</nobr>
|
|
811
|
+
</td>
|
|
806
812
|
<td style="text-align: center;" v-if="$parent.$parent.$parent.authArr.includes('收费查询票据补打')" ><nobr>
|
|
807
813
|
<button style=" height: 28px;line-height: 16px;" class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.batchPrintBill(row,'票据补打')">票据补打</button>
|
|
808
814
|
</nobr></td>
|
|
@@ -501,7 +501,10 @@
|
|
|
501
501
|
<nobr>抵扣单价</nobr>
|
|
502
502
|
</th>
|
|
503
503
|
<th>
|
|
504
|
-
<nobr
|
|
504
|
+
<nobr>本次抵扣金额</nobr>
|
|
505
|
+
</th>
|
|
506
|
+
<th>
|
|
507
|
+
<nobr>剩余抵扣金额</nobr>
|
|
505
508
|
</th>
|
|
506
509
|
<th>
|
|
507
510
|
<nobr>附件</nobr>
|
|
@@ -665,6 +668,9 @@
|
|
|
665
668
|
<td style="text-align: center;">
|
|
666
669
|
<nobr>{{ row.f_current_deduct_amount }}</nobr>
|
|
667
670
|
</td>
|
|
671
|
+
<td style="text-align: center;">
|
|
672
|
+
<nobr>{{ row.f_remaining_deduct_amount }}</nobr>
|
|
673
|
+
</td>
|
|
668
674
|
<td style="text-align: center;">
|
|
669
675
|
<nobr>
|
|
670
676
|
<button class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.view(row)">
|
|
@@ -254,7 +254,8 @@ export default {
|
|
|
254
254
|
'f_residential_area': '小区',
|
|
255
255
|
'f_serial_number': '业务单号',
|
|
256
256
|
'f_gas_type': '抵扣单价',
|
|
257
|
-
'f_current_deduct_amount': '
|
|
257
|
+
'f_current_deduct_amount': '本次抵扣金额',
|
|
258
|
+
'f_remaining_deduct_amount': '剩余抵扣金额'
|
|
258
259
|
},
|
|
259
260
|
loginQueryConfig: {
|
|
260
261
|
'userid': '登录人编号', 'username': '登录人名称', 'logindate': '登录时间', 'type': '类型'
|
|
@@ -840,7 +841,8 @@ export default {
|
|
|
840
841
|
'f_stair3fee': '三阶气费',
|
|
841
842
|
'f_rest_date': '所属年月',
|
|
842
843
|
'f_gas_type': '抵扣单价',
|
|
843
|
-
'f_current_deduct_amount': '
|
|
844
|
+
'f_current_deduct_amount': '本次抵扣金额',
|
|
845
|
+
'f_remaining_deduct_amount': '剩余抵扣金额'
|
|
844
846
|
},
|
|
845
847
|
handplanInfoConfig: {
|
|
846
848
|
'f_userinfo_code': '用户号',
|
package/src/main.js
CHANGED
|
@@ -6,7 +6,7 @@ import { all } from 'vue-client'
|
|
|
6
6
|
import { system } from 'system-clients'
|
|
7
7
|
import { ldap } from 'ldap-clients'
|
|
8
8
|
import saleManage from './saleManage'
|
|
9
|
-
import ShanXianSaleManage from './filiale/
|
|
9
|
+
import ShanXianSaleManage from './filiale/hantou/sale'
|
|
10
10
|
import webmeterManage from './webmeterManage'
|
|
11
11
|
import reportManage from './reportManage'
|
|
12
12
|
import newmanage from './newmanage'
|