sale-client 4.2.59 → 4.2.60
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/executionHistory/executionHistory.bin +0 -0
- package/.gradle/5.2.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileContent/fileContent.lock +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/build/libs/SaleClient-V3-3.1.1-11.jar +0 -0
- package/build/tmp/jar/MANIFEST.MF +2 -0
- package/package.json +1 -1
- package/src/filiale/fugou/components/revenue/comprehen/ComprehenOperation/newchangemeter/ChangeMeter.vue +3 -2
- package/src/filiale/jinhong/MachineMeterCenter.vue +2 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -677,8 +677,9 @@ export default {
|
|
|
677
677
|
console.log('1239999998', change)
|
|
678
678
|
let hasUnhand = change && change.data && change.data.unhand && change.data.unhand.length > 0
|
|
679
679
|
let hasOwe = change && change.data && change.data.owe && change.data.owe.length > 0
|
|
680
|
-
|
|
681
|
-
|
|
680
|
+
let hasCardUnread = change && change.data && change.data.cardunread && change.data.cardunread.length > 0
|
|
681
|
+
if (hasUnhand || hasOwe || hasCardUnread) {
|
|
682
|
+
let r = await this.$showMessage('存在抄表计划未执行,是否继续换表?', ['confirm', 'cancel'])
|
|
682
683
|
if (r !== 'confirm') { return }
|
|
683
684
|
}
|
|
684
685
|
} catch (e) {
|
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
<div class="col-sm-3 form-group" v-if="config.hasfindaReail" :class="[$v.f_collection.required || $v.f_collection.dctest ? 'has-error select-error' : '']">
|
|
74
74
|
<label for="f_collection" class="font_normal_body">燃气收款</label>
|
|
75
75
|
<input id="f_collection" class="input_search" style="width:60%" type="number" v-model="data.f_collection"
|
|
76
|
-
v-validate:f_collection='{required: true, dctest: [
|
|
76
|
+
v-validate:f_collection='{required: true, dctest: [0, ">=" ]}' v-scale = "[data.f_collection, 2]"
|
|
77
77
|
@mousewheel.native.prevent @keyup.enter="confirm()" :disabled="$refs.givechange.promptText != ''">
|
|
78
78
|
</div>
|
|
79
79
|
<div class="col-sm-4 form-group" v-if="!config.hasfindaReail" :class="[$v.f_collection.required || $v.f_collection.dctest ? 'has-error select-error' : '']">
|
|
80
80
|
<label for="f_collection" class="font_normal_body">燃气收款</label>
|
|
81
81
|
<input id="f_collection" class="input_search" style="width:60%" type="number" v-model="data.f_collection"
|
|
82
|
-
v-validate:f_collection='{required: true, dctest: [
|
|
82
|
+
v-validate:f_collection='{required: true, dctest: [0, ">=" ]}' v-scale = "[data.f_collection, 2]"
|
|
83
83
|
@mousewheel.native.prevent @keyup.enter="confirm()" :disabled="$refs.givechange.promptText != ''">
|
|
84
84
|
</div>
|
|
85
85
|
<div class="col-sm-1 form-group" v-if="config.hasfindaReail">
|