manage-client 3.2.207 → 3.2.209

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.
@@ -59,8 +59,10 @@
59
59
  </div>
60
60
  </div>
61
61
  </div>
62
- <div style="width:100%;height: 100%;margin-top: 2%" class="div-iframe">
63
- <iframe class="ifarme_style" style="width:100%;height:100%" :src="url" v-if="isShow"></iframe>
62
+ <div style="width:100%;height: 100%;margin-top: 2%;text-align: center" class="div-iframe">
63
+ <div style="width: 100%;height: 100%;display: inline-block" >
64
+ <iframe id="iframe" class="iframe_style" style="width:100%;height:100%" :src="url" v-show="isShow"></iframe>
65
+ </div>
64
66
  </div>
65
67
  </div>
66
68
  </div>
@@ -68,23 +70,22 @@
68
70
 
69
71
  <script>
70
72
  export default {
71
- title: '营业厅分项汇总表',
73
+ title: '新营业厅分项汇总表',
72
74
  data () {
73
75
  return {
74
- f_state: [ {label: '全部', value: ''}, {label: '正常', value: '正常'}, {label: '销户', value: '销户'}, {label: '预备', value: '预备'} ],
75
- orgCondtionStr: '1=1',
76
+ orgCondtionStr: 'and 1=1',
76
77
  model: {
77
78
  startDate: '',
78
79
  endDate: ''
79
80
  },
80
81
  isShow: false,
81
82
  url: '',
82
- urlPrefix: 'http://192.168.50.77:31039/report/jmreport/shareView/779255398271029248',
83
+ urlPrefix: '/report/jmreport/shareView/779255398271029248',
83
84
  queryData: {
84
85
  f_state: ['有效'],
85
- f_orgid: this.$login.f.orgid,
86
- f_depid: this.$login.f.depids,
87
- f_operatorid: this.$login.f.id
86
+ f_orgid: [],
87
+ f_depid: [],
88
+ f_operatorid: []
88
89
  },
89
90
  orgname: '',
90
91
  depresid: [],
@@ -101,12 +102,31 @@ export default {
101
102
  this.searchData()
102
103
  },
103
104
  methods: {
105
+ // iframe () {
106
+ // let iframe = document.getElementById('iframe')
107
+ // if (iframe.attachEvent) {
108
+ // iframe.attachEvent('onload', function () {
109
+ // console.log('加载完成-----------')
110
+ // })
111
+ // } else {
112
+ // iframe.onload = function () {
113
+ // console.log('加载完成===========')
114
+ // // let iframeDoc = iframe.contentDocument
115
+ // // iframeDoc.body.style.backgroundColor = 'blue'
116
+ // // console.log(iframeDoc.body.style.backgroundColor + '------------------------------')
117
+ // var y = (iframe.contentWindow || iframe.contentDocument)
118
+ // if (y.document)y = y.document
119
+ // console.log(y.body.style.backgroundColor)
120
+ // }
121
+ // }
122
+ // },
104
123
  searchData () {
105
- let queryData = this.orgCondtionStr
124
+ let queryData = ''
125
+ queryData = this.orgCondtionStr
106
126
  for (let key in this.queryData) {
107
127
  if (this.queryData[key] !== null && this.queryData[key] !== '' && this.queryData[key] !== undefined && this.queryData[key].length > 0) {
108
128
  if (Array.isArray(this.queryData[key])) {
109
- var stringValue = ''
129
+ let stringValue = ''
110
130
  for (var i = 0; i < this.queryData[key].length; i++) {
111
131
  if (i === this.queryData[key].length - 1) {
112
132
  stringValue = stringValue + "'" + this.queryData[key][i] + "'"
@@ -116,7 +136,7 @@ export default {
116
136
  }
117
137
  queryData = queryData + ' and ' + key + ' in (' + stringValue + ')'
118
138
  } else {
119
- queryData = queryData + ' and ' + key + ' = ' + this.queryData[key]
139
+ queryData = queryData + ' and ' + key + ' = ' + "'" + this.queryData[key] + "'"
120
140
  }
121
141
  }
122
142
  }
@@ -129,6 +149,7 @@ export default {
129
149
  console.log('报表===' + queryData)
130
150
  console.log('报表===>' + this.url)
131
151
  this.isShow = true
152
+ // this.iframe()
132
153
  },
133
154
  load () {
134
155
  this.isShow = true
@@ -157,13 +178,7 @@ export default {
157
178
  }
158
179
  </script>
159
180
  <style scoped>
160
- .noborder{
161
- border: none;
162
- }
163
- .span{
164
- height: 0;
165
- }
166
- .ifarme_style{
181
+ .iframe_style{
167
182
  border: medium none;
168
183
  }
169
184
  </style>
@@ -0,0 +1,166 @@
1
+ <template>
2
+ <div class="basic-main" style="height: 100%">
3
+ <div class="form-group" >
4
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
5
+ <div class="row">
6
+ <div class="col-sm-3 form-group" >
7
+ <label class="font_normal_body" for="startDate">开始日期:</label>
8
+ <datepicker id="startDate" placeholder="开始日期" style="width: 60%"
9
+ v-model="model.startDate"
10
+ :value.sync="model.startDate"
11
+ :disabled-days-of-Week="[]"
12
+ :format="'yyyy-MM-dd HH:mm:ss'"
13
+ :show-reset-button="reset">
14
+ </datepicker>
15
+ </div>
16
+ <div class="col-sm-3 form-group" >
17
+ <label class="font_normal_body" for="endDate">结束日期:</label>
18
+ <datepicker id="endDate" placeholder="结束日期" style="width: 60%"
19
+ v-model="model.endDate"
20
+ :value.sync="model.endDate"
21
+ :disabled-days-of-Week="[]"
22
+ :format="'yyyy-MM-dd HH:mm:ss'"
23
+ :show-reset-button="reset">
24
+ </datepicker>
25
+ </div>
26
+ <div class="col-sm-3 form-group" >
27
+ <label class="font_normal_body" for="org">公&emsp;&emsp;司:</label>
28
+ <right-tree id="org" @re-res="getRes"></right-tree>
29
+ </div>
30
+ <div class="col-sm-3 form-group">
31
+ <label class="font_normal_body" for="dep" >部&emsp;&emsp;门:</label>
32
+ <res-select id="dep" restype='department'
33
+ @res-select="getdep"
34
+ :parentresid="depresid"
35
+ :initresid='queryData.depid' >
36
+ </res-select>
37
+
38
+ </div>
39
+ <div class="col-sm-3 form-group">
40
+ <label class="font_normal_body" for="oper">人&emsp;&emsp;员:</label>
41
+ <res-select id="oper" restype='user'
42
+ is-mul="false"
43
+ @res-select="getuser"
44
+ :parentresid="userresid"
45
+ :initresid='queryData.operatorid'>
46
+ </res-select>
47
+ </div>
48
+ <div class="col-sm-2 form-group" style="float:right;">
49
+ <button class="button_search" @click="searchData()">查询</button>
50
+ <div style="float: right" class="button_spacing" :class="{'button_shrink_top':criteriaShow,
51
+ 'button_shrink_bottom':!criteriaShow}" @click="hidden()"></div>
52
+ </div>
53
+ </div>
54
+ </div>
55
+ <div style="width:100%;height: 100%;margin-top: 2%" class="div-iframe">
56
+ <iframe class="iframe_style" style="width:100%;height:100% ;border: medium none;" :src="url" v-if="isShow"></iframe>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </template>
61
+
62
+ <script>
63
+ export default {
64
+ title: '新营业厅售气情况统计表',
65
+ data () {
66
+ return {
67
+ orgCondtionStr: 'and 1=1',
68
+ model: {
69
+ startDate: '',
70
+ endDate: ''
71
+ },
72
+ isShow: false,
73
+ url: '',
74
+ urlPrefix: '/report/jmreport/shareView/786012859030429696',
75
+ queryData: {
76
+ f_orgid: [],
77
+ f_depid: [],
78
+ f_operatorid: []
79
+ },
80
+ orgname: '',
81
+ depresid: [],
82
+ userresid: [],
83
+ depname: '',
84
+ operatorname: '',
85
+ operatorid: [],
86
+ depid: [],
87
+ criteriaShow: false
88
+ }
89
+ },
90
+ ready () {
91
+ this.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
92
+ this.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
93
+ this.searchData()
94
+ },
95
+ methods: {
96
+ searchData () {
97
+ let queryData = ''
98
+ queryData = this.orgCondtionStr
99
+ for (let key in this.queryData) {
100
+ if (this.queryData[key] !== null && this.queryData[key] !== '' && this.queryData[key] !== undefined && this.queryData[key].length > 0) {
101
+ if (Array.isArray(this.queryData[key])) {
102
+ let stringValue = ''
103
+ for (var i = 0; i < this.queryData[key].length; i++) {
104
+ if (i === this.queryData[key].length - 1) {
105
+ stringValue = stringValue + "'" + this.queryData[key][i] + "'"
106
+ } else {
107
+ stringValue = stringValue + "'" + this.queryData[key][i] + "',"
108
+ }
109
+ }
110
+ queryData = queryData + ' and ' + key + ' in (' + stringValue + ')'
111
+ } else {
112
+ queryData = queryData + ' and ' + key + ' = ' + "'" + this.queryData[key] + "'"
113
+ }
114
+ }
115
+ }
116
+ console.log(queryData)
117
+ // 重置url
118
+ this.url = ''
119
+ // encodeURIComponent是将该参数中的特殊符号进行编码,后端会进行解码
120
+ this.url = this.urlPrefix + '?f_orgid=' + encodeURIComponent(queryData) +
121
+ '&startDate=' + encodeURIComponent(this.model.startDate) +
122
+ '&endDate=' + encodeURIComponent(this.model.endDate)
123
+ console.log('报表===' + queryData)
124
+ console.log('报表===>' + this.url)
125
+ this.isShow = true
126
+ },
127
+ load () {
128
+ this.isShow = true
129
+ },
130
+ getRes (obj) {
131
+ this.orgname = obj.res[0]
132
+ this.depresid = obj.resids
133
+ this.userresid = obj.resids
134
+ this.model.f_orgid = obj.resids
135
+ },
136
+ getdep (obj, val) {
137
+ this.depname = val[0]
138
+ this.userresid = obj
139
+ this.queryData.f_depid = obj
140
+ },
141
+ getuser (obj, val) {
142
+ this.operatorname = val[0]
143
+ this.queryData.f_operatorid = obj
144
+ },
145
+ hidden () {
146
+ this.criteriaShow = !this.criteriaShow
147
+ }
148
+ },
149
+ computed: {
150
+ user_type () {
151
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
152
+ }
153
+ }
154
+ }
155
+ </script>
156
+ <style scoped>
157
+ .noborder{
158
+ border: none;
159
+ }
160
+ .span{
161
+ height: 0;
162
+ }
163
+ .iframe_style{
164
+ border: medium none;
165
+ }
166
+ </style>
@@ -83,7 +83,7 @@
83
83
  </datepicker>
84
84
  </div>
85
85
  <div class="col-sm-2 ">
86
- <label for="f_meter_classify"class="font_normal_body">气表类型</label>
86
+ <label for="f_meter_classify"class="font_normal_body" title="参数名称:气表类型">气表类型</label>
87
87
  <v-select id="f_meter_classify"
88
88
  v-model="$parent.$parent.meter_classify"
89
89
  placeholder='气表类型'
@@ -420,7 +420,8 @@
420
420
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('气表状态')]
421
421
  },
422
422
  f_meter_classify(){
423
- return [{label: '机表', value: '机表'},{label: '卡表', value: '卡表'},{label: '物联网表', value: '物联网表'}]
423
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('气表类型')]
424
+ // return [{label: '机表', value: '机表'},{label: '卡表', value: '卡表'},{label: '物联网表', value: '物联网表'}]
424
425
  // return [{label: '卡表', value: '卡表'}]
425
426
  },
426
427
 
@@ -326,9 +326,6 @@
326
326
  <th>
327
327
  <nobr>操作员</nobr>
328
328
  </th>
329
- <th>
330
- <nobr>发票订单</nobr>
331
- </th>
332
329
  <th>
333
330
  <nobr>阶一气量</nobr>
334
331
  </th>
@@ -377,9 +374,6 @@
377
374
  <td style="text-align: center;">
378
375
  <nobr>{{row.f_operator}}</nobr>
379
376
  </td>
380
- <td style="text-align: center;">
381
- <nobr>{{row.f_bill_code}}</nobr>
382
- </td>
383
377
  <td style="text-align: center;">
384
378
  <nobr>{{row.f_stairamount1}}</nobr>
385
379
  </td>
@@ -68,7 +68,7 @@ export default{
68
68
  'f_userinfo_code': '用户编号','f_user_name':'用户名称',
69
69
  'f_meternumber': '用户表号','f_card_id': '用户卡号','f_address': '用户地址',
70
70
  'f_pregas': '购气量','f_collection': '缴费金额','f_payment': '付款方式','f_operate_date': '收费日期','f_state': '状态',
71
- 'f_depname': '网点','f_operator': '操作员','f_bill_code':'发票订单','f_stairamount1':'一阶气量',
71
+ 'f_depname': '网点','f_operator': '操作员','f_stairamount1':'一阶气量',
72
72
  'f_stair2amount': '二阶气量','f_stair3amount':'三阶气量'
73
73
  },
74
74
  pricetypeGasConfig: {
@@ -227,6 +227,9 @@
227
227
  <th>
228
228
  <nobr>数量</nobr>
229
229
  </th>
230
+ <th>
231
+ <nobr>应收</nobr>
232
+ </th>
230
233
  <th>
231
234
  <nobr>收款</nobr>
232
235
  </th>
@@ -312,6 +315,9 @@
312
315
  <td style="text-align: center;">
313
316
  <nobr>{{row.f_money}}</nobr>
314
317
  </td>
318
+ <td style="text-align: center;">
319
+ <nobr>{{row.f_collection}}</nobr>
320
+ </td>
315
321
  <td style="text-align: center;">
316
322
  <nobr>{{row.f_newbalance}}</nobr>
317
323
  </td>
@@ -361,7 +367,16 @@
361
367
  汇总信息
362
368
  </td>
363
369
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
364
- 收款合计:&emsp;{{sumsmodel.f_money}}
370
+ 应收合计:&emsp;{{sumsmodel.f_money}}
371
+ </td>
372
+ <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
373
+ 收款合计:&emsp;{{sumsmodel.f_collection}}
374
+ </td>
375
+ <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
376
+ 支出合计:&emsp;{{sumsmodel.f_newbalance}}
377
+ </td>
378
+ <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
379
+ 存入合计:&emsp;{{sumsmodel.f_newcurbalance}}
365
380
  </td>
366
381
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
367
382
  户数合计:&emsp;{{sumsmodel.hushu}}
@@ -422,7 +437,8 @@
422
437
  data: {},
423
438
  other:[],
424
439
  footer:[],
425
- model: new PagedList('rs/sql/otherChargeQuery', 20, {}, {f_money: 0,hushu:0}),
440
+ model: new PagedList('rs/sql/otherChargeQuery', 20, {}, {f_money: 0, f_collection: 0,
441
+ f_newbalance: 0, f_newcurbalance: 0, hushu:0}),
426
442
  criteriaShow: false,
427
443
  orgCondtionStr: '',
428
444
  modelval: [],
@@ -75,8 +75,8 @@ export default{
75
75
  otherchargeConfig: {
76
76
  'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_user_name': '客户名称', 'f_address': '客户地址', 'f_user_phone': '客户电话', 'f_meter_classify': '气表类型',
77
77
  'f_meter_brand': '气表品牌', 'f_bill_number': '收据票号', 'f_brand_spec': '收费类型', 'f_typename': '品名规格',
78
- 'f_typenumber': '型号', 'f_unitprice': '单价', 'f_number': '数量',
79
- 'f_money': '收款', 'f_newbalance': '支出', 'f_newcurbalance': '收入', 'f_payment': '付款方式', 'f_state': '状态',
78
+ 'f_typenumber': '型号', 'f_unitprice': '单价', 'f_number': '数量', 'f_money': '应收',
79
+ 'f_collection': '收款', 'f_newbalance': '支出', 'f_newcurbalance': '收入', 'f_payment': '付款方式', 'f_state': '状态',
80
80
  'f_operate_date': '收费日期', 'f_service_person': '服务人员', 'f_comments': '备注',
81
81
  'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司'
82
82
  },