sale-client 3.6.338 → 3.6.339
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/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.5/checksums/checksums.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.5/fileChanges/last-build.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.5/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/.gradle/file-system.probe +0 -0
- package/SaleClient.iml +7 -4
- package/package.json +1 -1
- package/src/components/charge/business/OtherChargeAudit.vue +2 -2
- package/src/components/revenue/base/leftview/ServiceSubstitution.vue +5 -3
- package/src/filiale/qianneng/revenue/sms/MessageReport.vue +7 -10
- package/src/filiale/yangchun/machineHandAudit.vue +2 -2
- package/src/plugins/LogicService.js +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Mon Jul 08 09:48:59 CST 2024
|
|
2
2
|
gradle.version=5.2.1
|
|
Binary file
|
package/SaleClient.iml
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="JAVA_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<output url="file://$MODULE_DIR$/bin" />
|
|
2
|
+
<module external.linked.project.id="SaleClient" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="3.1.1-11" type="JAVA_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
5
4
|
<exclude-output />
|
|
6
|
-
<content url="file://$MODULE_DIR$"
|
|
5
|
+
<content url="file://$MODULE_DIR$">
|
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
|
|
7
|
+
<excludeFolder url="file://$MODULE_DIR$/build" />
|
|
8
|
+
</content>
|
|
9
|
+
<orderEntry type="inheritedJdk" />
|
|
7
10
|
<orderEntry type="sourceFolder" forTests="false" />
|
|
8
11
|
</component>
|
|
9
12
|
</module>
|
package/package.json
CHANGED
|
@@ -163,7 +163,7 @@ export default {
|
|
|
163
163
|
}
|
|
164
164
|
},
|
|
165
165
|
ready () {
|
|
166
|
-
readyGen(this)
|
|
166
|
+
// readyGen(this)
|
|
167
167
|
},
|
|
168
168
|
methods: {
|
|
169
169
|
loadMeterBooks () {
|
|
@@ -180,7 +180,7 @@ export default {
|
|
|
180
180
|
},
|
|
181
181
|
selfSearch (args) {
|
|
182
182
|
if (!this.orgCondtionStr) {
|
|
183
|
-
args.condition = `${args.condition}` + ' and f_orgid
|
|
183
|
+
args.condition = `${args.condition}` + ' and f_orgid in ' + `('`+this.$login.f.orgid+`')`
|
|
184
184
|
} else {
|
|
185
185
|
args.condition = `${args.condition}` + this.orgCondtionStr
|
|
186
186
|
}
|
|
@@ -104,9 +104,11 @@ export default {
|
|
|
104
104
|
}, {resolveMsg: null, rejectMsg: null})
|
|
105
105
|
this.model = result.data[0]
|
|
106
106
|
console.log('看看维修情况', result, this.model)
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
107
|
+
if (this.model) {
|
|
108
|
+
this.pared = 1
|
|
109
|
+
} else {
|
|
110
|
+
this.pared = 0
|
|
111
|
+
}
|
|
110
112
|
} else {
|
|
111
113
|
this.pared = 0
|
|
112
114
|
}
|
|
@@ -93,18 +93,15 @@ export default {
|
|
|
93
93
|
console.log(res.data)
|
|
94
94
|
if (res.data.success) {
|
|
95
95
|
this.$showMessage(`成功生成短信${res.data.success}条,生成失败${res.data.fail}条`)
|
|
96
|
-
|
|
97
|
-
this.$refs.
|
|
98
|
-
|
|
99
|
-
this.$
|
|
100
|
-
this.$refs.message.ids = []
|
|
96
|
+
this.$refs.messagelist.$refs.paged.$refs.cri.search()
|
|
97
|
+
this.$refs.messagelist.ids = []
|
|
98
|
+
} else {
|
|
99
|
+
this.$showMessage(`短信生成失败`)
|
|
101
100
|
}
|
|
102
|
-
|
|
103
101
|
}).catch((error) => {
|
|
104
|
-
this.$
|
|
105
|
-
this.$refs.
|
|
106
|
-
this.$refs.
|
|
107
|
-
this.$refs.message.ids = []
|
|
102
|
+
this.$showMessage(`短信生成失败`)
|
|
103
|
+
this.$refs.messagelist.$refs.paged.$refs.cri.search()
|
|
104
|
+
this.$refs.messagelist.ids = []
|
|
108
105
|
})
|
|
109
106
|
},
|
|
110
107
|
'success' () {
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
style="width: 60%"
|
|
92
92
|
multiple="true"
|
|
93
93
|
:options='$parent.$parent.residentialArea' placeholder='选择小区'
|
|
94
|
-
|
|
94
|
+
v-el:cc>
|
|
95
95
|
</v-select>
|
|
96
96
|
</div>
|
|
97
97
|
<div class="col-sm-2 form-group">
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
style="width:60%"
|
|
126
126
|
multiple="true"
|
|
127
127
|
:options='$parent.$parent.inputtores' placeholder='抄表员'
|
|
128
|
-
|
|
128
|
+
|
|
129
129
|
v-el:cc></v-select>
|
|
130
130
|
</div>
|
|
131
131
|
|
|
@@ -278,7 +278,7 @@ let LogicService = {
|
|
|
278
278
|
return Vue.resetpost('rs/logic/messageBatchOperate', data, {resolveMsg: '生成短信成功', rejectMsg: '生成短信失败'})
|
|
279
279
|
},
|
|
280
280
|
createCustomMessage (data) {
|
|
281
|
-
return Vue.resetpost('rs/customMessage/send', {data: data}, {resolveMsg:
|
|
281
|
+
return Vue.resetpost('rs/customMessage/send', {data: data}, {resolveMsg: null, rejectMsg: null})
|
|
282
282
|
},
|
|
283
283
|
createMessageNew (data) {
|
|
284
284
|
return Vue.resetpost('rs/logic/messageBatchOperateNew', data, {resolveMsg: '生成短信成功', rejectMsg: '生成短信失败'})
|