manage-client 3.3.239 → 3.3.241
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/kelai/NewAccountQuery.vue +9 -17
- package/src/filiale/kelai/exportConfig.js +6 -3
- 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
|
@@ -60,11 +60,10 @@
|
|
|
60
60
|
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
61
61
|
<!--<button class="btn btn-default" @click="$parent.$parent.stamp()">打印</button>-->
|
|
62
62
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
<!-- :choose-col="true"></export-excel>-->
|
|
63
|
+
<export-excel :data="$parent.$parent.getCondition"
|
|
64
|
+
:field="$parent.$parent.getfield"
|
|
65
|
+
sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="newAccountQuery" template-name='开户查询导出'
|
|
66
|
+
:choose-col="true"></export-excel>
|
|
68
67
|
|
|
69
68
|
<!-- <div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>-->
|
|
70
69
|
</div>
|
|
@@ -215,8 +214,7 @@
|
|
|
215
214
|
|
|
216
215
|
<script>
|
|
217
216
|
import {PagedList} from 'vue-client'
|
|
218
|
-
import
|
|
219
|
-
import exportConfig from './../../components/sale/config/exportConfig'
|
|
217
|
+
import exportConfig from './exportConfig'
|
|
220
218
|
import plugins from './../../plugins/GetLoginInfoService'
|
|
221
219
|
|
|
222
220
|
let readySomething = async function (self) {
|
|
@@ -251,8 +249,8 @@
|
|
|
251
249
|
fields: {},
|
|
252
250
|
thead: '',
|
|
253
251
|
tfoot: '',
|
|
254
|
-
orgCondtionStr: '(' + this.$login.f.orgid + ')',
|
|
255
|
-
|
|
252
|
+
//orgCondtionStr: '(' + this.$login.f.orgid + ')',
|
|
253
|
+
orgCondtionStr: ``,
|
|
256
254
|
meterbrands: [],
|
|
257
255
|
showinfo:false,
|
|
258
256
|
rowdata:{},
|
|
@@ -395,15 +393,9 @@
|
|
|
395
393
|
return this.$login.r ? this.$login.r : []
|
|
396
394
|
},
|
|
397
395
|
getCondition () {
|
|
398
|
-
var con = ""
|
|
399
|
-
if (this.orgCondtionStr) {
|
|
400
|
-
con = `${this.$refs.paged.$refs.cri.condition} and u.f_orgid in (${this.orgCondtionStr})`
|
|
401
|
-
}
|
|
402
|
-
else {
|
|
403
|
-
con = `${this.$refs.paged.$refs.cri.condition}and u.f_orgid in ('${this.$login.f.orgid}' )`
|
|
404
|
-
}
|
|
405
396
|
return {
|
|
406
|
-
condition:
|
|
397
|
+
condition: `${this.$refs.paged.$refs.cri.condition}` + this.orgCondtionStr,
|
|
398
|
+
orderitem: this.orderitem?`${this.orderitem}`: " f_open_date desc"
|
|
407
399
|
}
|
|
408
400
|
},
|
|
409
401
|
getfield() {
|
|
@@ -596,9 +596,12 @@ export default{
|
|
|
596
596
|
'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司'
|
|
597
597
|
},
|
|
598
598
|
NewAccountConfig: {
|
|
599
|
-
'f_userinfo_code': '用户编号',
|
|
600
|
-
'
|
|
601
|
-
'
|
|
599
|
+
'f_userinfo_code': '用户编号',
|
|
600
|
+
'f_user_name': '用户姓名',
|
|
601
|
+
'f_user_phone': '用户电话',
|
|
602
|
+
'f_idnumber': '身份证号',
|
|
603
|
+
'f_address': '客户地址',
|
|
604
|
+
'f_open_date': '开户时间'
|
|
602
605
|
},
|
|
603
606
|
Wrongquery: {
|
|
604
607
|
'f_userinfo_code': '用户编号', 'f_meternumber': '表号', 'f_operator_date': '抄表时间', 'f_operator_type': '错误类型', 'f_error_type': '错误原因', 'f_bankname': '银行名称', 'f_msg': '错误信息'
|
|
@@ -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'
|