manage-client 3.3.178 → 3.3.179

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.
Files changed (42) hide show
  1. package/build/dev-server.js +7 -11
  2. package/gradle/wrapper/gradle-wrapper.properties +5 -5
  3. package/gradlew +234 -234
  4. package/gradlew.bat +89 -89
  5. package/package.json +2 -2
  6. package/src/components/SellReport/BusinessClassify.vue +292 -292
  7. package/src/components/SellReport/GasMoneyPublicConReport.vue +258 -258
  8. package/src/components/handReport/WebGastypeMonthReport.vue +190 -190
  9. package/src/components/sale/businessquery/BusinessManage.vue +212 -212
  10. package/src/components/sale/businessquery/CardHandplanQuery.vue +546 -546
  11. package/src/components/sale/businessquery/FMYGasQuery.vue +813 -813
  12. package/src/components/sale/businessquery/TransferQuery.vue +502 -502
  13. package/src/components/sale/businessquery/WebMeterMonthUserGasQuery.vue +471 -471
  14. package/src/components/sale/config/exportConfig.js +1245 -1245
  15. package/src/components/sale/filesquery/RecordInfoQuery.vue +1443 -1443
  16. package/src/components/webmeter/gasStatistics/GasStatistics.vue +525 -525
  17. package/src/components/webmeter/gasStatistics/NewGasStatistics.vue +541 -541
  18. package/src/filiale/WEINAN/InspectListGas.vue +616 -616
  19. package/src/filiale/jingyang/RechargeList.vue +346 -346
  20. package/src/filiale/jingyang/sale.js +6 -6
  21. package/src/filiale/liaoyuan/HandplanQuery.vue +1289 -1289
  22. package/src/filiale/meihekou/CardHandplanQuery.vue +664 -664
  23. package/src/filiale/meihekou/ChargeQuery.vue +1274 -1274
  24. package/src/filiale/meihekou/HandplanQuery.vue +1248 -1248
  25. package/src/filiale/ningjin/UserLostContactAnalysis.vue +623 -623
  26. package/src/filiale/qianneng/exportConfig.js +232 -232
  27. package/src/filiale/shaoguan/errorHandplanQuery.vue +386 -386
  28. package/src/filiale/taizhoukesi/ChangeMeterQuery.vue +683 -683
  29. package/src/filiale/taizhoukesi/config/exportConfig.js +2379 -2379
  30. package/src/filiale/taizhoukesi/sale.js +11 -11
  31. package/src/filiale/tongchuan/InspectListGas.vue +700 -700
  32. package/src/filiale/tongchuan/ResSelectGroupNew.vue +188 -188
  33. package/src/filiale/yangchun/ManageBusSummaryNew.vue +239 -239
  34. package/src/filiale/yangchun/UserQuery.vue +980 -980
  35. package/src/filiale/yangchun/config/DefaultPrint.js +6 -6
  36. package/src/filiale/yangchun/config/exportConfig.js +1231 -1231
  37. package/src/filiale/yangchun/config/tableConfig.js +58 -58
  38. package/src/filiale/yangchun/reportManage.js +6 -6
  39. package/src/filiale/yangchun/sale.js +8 -8
  40. package/src/filiale/yangchun/webmeterManage.js +5 -5
  41. package/src/reportManage.js +768 -768
  42. package/src/saleManage.js +689 -689
@@ -1,188 +1,188 @@
1
- <template>
2
- <div :class="style" v-show="companyshow">
3
- <label class="font_normal_body">公&emsp;&emsp;司</label>
4
- <res-select-new restype='organization'
5
- @res-select="getorg"
6
- :is-mul="mul"
7
- :initresid='initres.org'></res-select-new>
8
- </div>
9
- <div :class="style" v-show="departmentshow">
10
- <label class="font_normal_body">部&emsp;&emsp;门</label>
11
- <res-select restype='department'
12
- @res-select="getdep"
13
- :parentresid="firstdepresid"
14
- :initresid='initres.dep'
15
- :is-mul="mul">
16
- </res-select>
17
- </div>
18
- <div :class="style" v-show="operatorshow && (!cascade)">
19
- <label class="font_normal_body">人&emsp;&emsp;员</label>
20
- <res-select restype='user'
21
- @res-select="getuser"
22
- :parentresid="firstdepresid"
23
- :initresid='initres.user'
24
- :is-mul="mul">
25
- </res-select>
26
- </div>
27
- <div :class="style" v-show="operatorshow && cascade">
28
- <label class="font_normal_body">人&emsp;&emsp;员</label>
29
- <res-select restype='user'
30
- @res-select="getuser"
31
- :parentresid="userresid"
32
- :initresid='initres.user'
33
- :is-mul="mul">
34
- </res-select>
35
- </div>
36
- <div :class="style " v-if="sliceareashow" >
37
- <label class="font_normal_body">片&emsp;&emsp;区</label>
38
- <v-select :value.sync="slice_area" v-model="slice_area" @change='getarea'
39
- :options='sliceArea' placeholder='片区/管理站' filer-key="name"
40
- close-on-select v-ref:slice>
41
- </v-select>
42
- </div>
43
- </template>
44
- <script>
45
- import plugin from '../../plugins/GetLoginInfoService'
46
- import { HttpResetClass } from 'vue-client'
47
- export default {
48
- title: '资源选择测试',
49
- props: {
50
- style: {
51
- type: String,
52
- default: 'col-sm-2 form-group'
53
- },
54
- mul: {
55
- type: Boolean,
56
- default: true
57
- },
58
- //初始值
59
- initres: {
60
- type: Object,
61
- default: null,
62
- },
63
- showComponent:{
64
- default:['company','department','operator','slicearea']
65
- },
66
- //人员是否和部门关联
67
- cascade: {
68
- type: Boolean,
69
- default: false
70
- }
71
- },
72
- data () {
73
- return {
74
- // 首次默认选择的公司
75
- firstdepresid: [],
76
- orgresid:[this.$login.f.orgid],
77
- depresid:[],
78
- userresid:[],
79
- sliceArea: [],
80
- slice_area:[],
81
- companyshow:false,
82
- departmentshow:false,
83
- operatorshow:false,
84
- sliceareashow:false,
85
- obj:{
86
- orgnames:[],
87
- depnames:[],
88
- operatornames:[]
89
- }
90
- }
91
- },
92
- ready () {
93
- console.log('开始获取组织结构。。。')
94
- this.initComponent();
95
- this.initAreas(this.$login.f.orgid)
96
- },
97
- methods:{
98
- initComponent(){
99
- let self=this;
100
- this.showComponent.find((item)=>{
101
- switch(item){
102
- case 'company': self.companyshow=true; break;
103
- case 'department': self.departmentshow=true; break;
104
- case 'operator': self.operatorshow=true; break;
105
- case 'slicearea': self.sliceareashow=true; break;
106
- }
107
- })
108
- },
109
- // 初始化片区
110
- async initAreas (val) {
111
- if (val) {
112
- let http = new HttpResetClass()
113
- let getAllArea = await http.load('POST', '/rs/search', {
114
- source: 'this.getParentByType($organization$).getAllChildrens().where(row.getType() == $zone$)',
115
- userid: this.$login.f.id
116
- }, {resolveMsg: null, rejectMsg: '获取片区出错!!!'})
117
- let arr = getAllArea.data.filter((res) => {
118
- if(Array.isArray(val)){
119
- for (let i = 0; i <val.length ; i++) {
120
- if(res.parentid == val[i]){
121
- return true
122
- }
123
- }
124
- }
125
- return res.parentid == val
126
- })
127
- console.log('过滤之后的片区', arr)
128
- this.sliceArea = []
129
- this.slice_area = []
130
- arr.forEach((res) => {
131
- this.sliceArea.push({label: res.name, value: {name: res.name, code:res.number}})
132
- })
133
- }
134
- },
135
- returnOrg(ids){
136
-
137
- let condition;
138
- if(this.depresid.length > 0)
139
- condition = " and f_orgid in " + plugin.convertToIn(this.depresid);
140
- else
141
- condition = " and f_orgid = " + this.$login.f.orgid;
142
- if(this.userresid.length > 0){
143
- condition += " and f_depid in " + plugin.convertToIn(this.userresid);
144
- }
145
- if(ids && ids.length > 0){
146
- condition += " and f_operatorid in " + plugin.convertToIn(ids);
147
- }
148
- if(this.slice_area.length>0){
149
- condition += " and f_zones = '" + this.slice_area[0].name+"'"
150
- }
151
- this.$dispatch('re-res',condition,this.obj)
152
- },
153
- getorg (obj,val) {
154
- console.log("选中公司的数据11",obj)
155
- if (this.firstdepresid.length <= 0) {
156
- this.firstdepresid = JSON.parse(JSON.stringify(obj))
157
- }
158
- this.depresid=obj
159
- this.obj.orgnames = val
160
- this.initAreas(obj)
161
- this.returnOrg();
162
- },
163
- getdep(obj,val) {
164
- console.log("选中部门的数据22",obj)
165
- this.obj.depnames = val
166
- this.userresid=obj
167
- this.returnOrg();
168
- },
169
- getuser(obj) {
170
- this.obj.operatornames = obj
171
- console.log("选中用户的数据33",obj)
172
- this.returnOrg(obj);
173
- },
174
- getarea(val) {
175
- this.slice_area=val
176
- console.log("选中的大区",val)
177
- if(this.obj.operatornames){
178
- this.returnOrg(this.obj.operatornames);
179
- }else{
180
- this.returnOrg();
181
- }
182
- }
183
- },
184
- watch: {
185
-
186
- }
187
- }
188
- </script>
1
+ <template>
2
+ <div :class="style" v-show="companyshow">
3
+ <label class="font_normal_body">公&emsp;&emsp;司</label>
4
+ <res-select-new restype='organization'
5
+ @res-select="getorg"
6
+ :is-mul="mul"
7
+ :initresid='initres.org'></res-select-new>
8
+ </div>
9
+ <div :class="style" v-show="departmentshow">
10
+ <label class="font_normal_body">部&emsp;&emsp;门</label>
11
+ <res-select restype='department'
12
+ @res-select="getdep"
13
+ :parentresid="firstdepresid"
14
+ :initresid='initres.dep'
15
+ :is-mul="mul">
16
+ </res-select>
17
+ </div>
18
+ <div :class="style" v-show="operatorshow && (!cascade)">
19
+ <label class="font_normal_body">人&emsp;&emsp;员</label>
20
+ <res-select restype='user'
21
+ @res-select="getuser"
22
+ :parentresid="firstdepresid"
23
+ :initresid='initres.user'
24
+ :is-mul="mul">
25
+ </res-select>
26
+ </div>
27
+ <div :class="style" v-show="operatorshow && cascade">
28
+ <label class="font_normal_body">人&emsp;&emsp;员</label>
29
+ <res-select restype='user'
30
+ @res-select="getuser"
31
+ :parentresid="userresid"
32
+ :initresid='initres.user'
33
+ :is-mul="mul">
34
+ </res-select>
35
+ </div>
36
+ <div :class="style " v-if="sliceareashow" >
37
+ <label class="font_normal_body">片&emsp;&emsp;区</label>
38
+ <v-select :value.sync="slice_area" v-model="slice_area" @change='getarea'
39
+ :options='sliceArea' placeholder='片区/管理站' filer-key="name"
40
+ close-on-select v-ref:slice>
41
+ </v-select>
42
+ </div>
43
+ </template>
44
+ <script>
45
+ import plugin from '../../plugins/GetLoginInfoService'
46
+ import { HttpResetClass } from 'vue-client'
47
+ export default {
48
+ title: '资源选择测试',
49
+ props: {
50
+ style: {
51
+ type: String,
52
+ default: 'col-sm-2 form-group'
53
+ },
54
+ mul: {
55
+ type: Boolean,
56
+ default: true
57
+ },
58
+ //初始值
59
+ initres: {
60
+ type: Object,
61
+ default: null,
62
+ },
63
+ showComponent:{
64
+ default:['company','department','operator','slicearea']
65
+ },
66
+ //人员是否和部门关联
67
+ cascade: {
68
+ type: Boolean,
69
+ default: false
70
+ }
71
+ },
72
+ data () {
73
+ return {
74
+ // 首次默认选择的公司
75
+ firstdepresid: [],
76
+ orgresid:[this.$login.f.orgid],
77
+ depresid:[],
78
+ userresid:[],
79
+ sliceArea: [],
80
+ slice_area:[],
81
+ companyshow:false,
82
+ departmentshow:false,
83
+ operatorshow:false,
84
+ sliceareashow:false,
85
+ obj:{
86
+ orgnames:[],
87
+ depnames:[],
88
+ operatornames:[]
89
+ }
90
+ }
91
+ },
92
+ ready () {
93
+ console.log('开始获取组织结构。。。')
94
+ this.initComponent();
95
+ this.initAreas(this.$login.f.orgid)
96
+ },
97
+ methods:{
98
+ initComponent(){
99
+ let self=this;
100
+ this.showComponent.find((item)=>{
101
+ switch(item){
102
+ case 'company': self.companyshow=true; break;
103
+ case 'department': self.departmentshow=true; break;
104
+ case 'operator': self.operatorshow=true; break;
105
+ case 'slicearea': self.sliceareashow=true; break;
106
+ }
107
+ })
108
+ },
109
+ // 初始化片区
110
+ async initAreas (val) {
111
+ if (val) {
112
+ let http = new HttpResetClass()
113
+ let getAllArea = await http.load('POST', '/rs/search', {
114
+ source: 'this.getParentByType($organization$).getAllChildrens().where(row.getType() == $zone$)',
115
+ userid: this.$login.f.id
116
+ }, {resolveMsg: null, rejectMsg: '获取片区出错!!!'})
117
+ let arr = getAllArea.data.filter((res) => {
118
+ if(Array.isArray(val)){
119
+ for (let i = 0; i <val.length ; i++) {
120
+ if(res.parentid == val[i]){
121
+ return true
122
+ }
123
+ }
124
+ }
125
+ return res.parentid == val
126
+ })
127
+ console.log('过滤之后的片区', arr)
128
+ this.sliceArea = []
129
+ this.slice_area = []
130
+ arr.forEach((res) => {
131
+ this.sliceArea.push({label: res.name, value: {name: res.name, code:res.number}})
132
+ })
133
+ }
134
+ },
135
+ returnOrg(ids){
136
+
137
+ let condition;
138
+ if(this.depresid.length > 0)
139
+ condition = " and f_orgid in " + plugin.convertToIn(this.depresid);
140
+ else
141
+ condition = " and f_orgid = " + this.$login.f.orgid;
142
+ if(this.userresid.length > 0){
143
+ condition += " and f_depid in " + plugin.convertToIn(this.userresid);
144
+ }
145
+ if(ids && ids.length > 0){
146
+ condition += " and f_operatorid in " + plugin.convertToIn(ids);
147
+ }
148
+ if(this.slice_area.length>0){
149
+ condition += " and f_zones = '" + this.slice_area[0].name+"'"
150
+ }
151
+ this.$dispatch('re-res',condition,this.obj)
152
+ },
153
+ getorg (obj,val) {
154
+ console.log("选中公司的数据11",obj)
155
+ if (this.firstdepresid.length <= 0) {
156
+ this.firstdepresid = JSON.parse(JSON.stringify(obj))
157
+ }
158
+ this.depresid=obj
159
+ this.obj.orgnames = val
160
+ this.initAreas(obj)
161
+ this.returnOrg();
162
+ },
163
+ getdep(obj,val) {
164
+ console.log("选中部门的数据22",obj)
165
+ this.obj.depnames = val
166
+ this.userresid=obj
167
+ this.returnOrg();
168
+ },
169
+ getuser(obj) {
170
+ this.obj.operatornames = obj
171
+ console.log("选中用户的数据33",obj)
172
+ this.returnOrg(obj);
173
+ },
174
+ getarea(val) {
175
+ this.slice_area=val
176
+ console.log("选中的大区",val)
177
+ if(this.obj.operatornames){
178
+ this.returnOrg(this.obj.operatornames);
179
+ }else{
180
+ this.returnOrg();
181
+ }
182
+ }
183
+ },
184
+ watch: {
185
+
186
+ }
187
+ }
188
+ </script>