sale-client 4.2.67 → 4.2.68
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/build/dev-server.js +52 -30
- package/index.html +7 -2
- package/package.json +1 -1
- package/src/App.vue +1 -1
- package/src/components/FilesManage/MeterinfoTest.vue +26 -13
- package/src/components/revenue/HandManager/MeterBookUser.vue +726 -726
- package/src/components/revenue/base/leftview/HiddenDangerInfo.vue +136 -0
- package/src/components/revenue/base/leftview/otherinfo.vue +2 -1
- package/src/components/revenue/comprehen/ComprehenOperation/QrPay/QrPaymentDetailed.vue +423 -423
- package/src/components/revenue/comprehen/Maintenance/hand/handOperate.vue +469 -469
- package/src/components/revenue/machineHandManage/ArrearsQuery.vue +938 -938
- package/src/components/webMeter/MeterManage/WebMeterBatchOperationValve.vue +970 -970
- package/src/filiale/alashan/eticket/EticketRecordList.vue +428 -428
- package/src/filiale/bayan/ChargeList.vue +1010 -1010
- package/src/filiale/bayan/StockListmain.vue +543 -543
- package/src/filiale/bazhong/UserInfoDetailManageNew.vue +245 -245
- package/src/filiale/bazhong/ic_detail/ChangeMeterQueryUser.vue +370 -370
- package/src/filiale/bazhong/sale.js +8 -8
- package/src/filiale/beifangshiye/OtherChargeNew.vue +625 -625
- package/src/filiale/fugou/MeterinfoTest.vue +27 -14
- package/src/filiale/lixianV3/ArrearsQuery.vue +938 -938
- package/src/filiale/lixianV3/InsuranceChargesDetails.vue +425 -425
- package/src/filiale/meihekou/common/userinfo_detail/ic_detail/MachineRecordQuery.vue +281 -281
- package/src/filiale/qianneng/revenue/sms/AccountMessageList.vue +508 -508
- package/src/filiale/ronghao/ArrearsQuery.vue +974 -974
- package/src/filiale/ronghao/CardService.js +2144 -2144
- package/src/filiale/ronghao/InsuranceManage.vue +58 -58
- package/src/filiale/ronghao/MachineChargeService.js +149 -149
- package/src/filiale/ronghao/NoCardMeterCenter.vue +534 -534
- package/src/filiale/ronghao/PaymentCode.vue +174 -174
- package/src/filiale/ronghao/PriceChangeCompensation/CompensationManage.vue +26 -26
- package/src/filiale/ronghao/PriceChangeCompensation/IotCompensation.vue +318 -318
- package/src/filiale/ronghao/PriceChangeCompensation/JbCompensation.vue +343 -343
- package/src/filiale/ronghao/PriceChangeCompensation/SurplusRecordDetail.vue +74 -74
- package/src/filiale/ronghao/ReplaceCardManage.vue +415 -415
- package/src/filiale/ronghao/Upload.vue +654 -654
- package/src/filiale/ronghao/cardDown.vue +1141 -1141
- package/src/filiale/ronghao/changemeterOperate.vue +315 -315
- package/src/filiale/ronghao/fillgasSpecific.vue +313 -313
- package/src/filiale/ronghao/ic_detail/ChargeRecordQuery.vue +106 -106
- package/src/filiale/ronghao/ic_detail/WatchCollection.vue +115 -115
- package/src/filiale/ronghao/ic_detail/WebHandQueryUser.vue +411 -411
- package/src/filiale/ronghao/machineDown.vue +1176 -1176
- package/src/filiale/ronghao/replacementSingleInfoOperation.vue +315 -315
- package/src/filiale/ronghao/specificInformation.vue +537 -537
- package/src/filiale/yangchun/ChargeList.vue +954 -954
- package/src/filiale/yuncheng/changemeterListMaintain.vue +504 -504
- package/src/filiale/zhongsheng/BlackListList.vue +293 -293
- package/src/filiale/zhongyi/HandQueryUser.vue +389 -389
- package/src/main.js +1 -1
- package/src/sale.js +2 -0
|
@@ -375,8 +375,14 @@
|
|
|
375
375
|
<label for="f_adjustable" class="font_normal_body" style="width: auto;letter-spacing: 0.5em;margin-right: -0.5em;margin-left: -0.5em"> {{getConfigLabelName('f_adjustable','调压箱')}}</label>
|
|
376
376
|
<input type="text" v-model="row.f_adjustable" v-show="false"
|
|
377
377
|
v-validate:f_adjustable=getConfigValidate("f_adjustable",false)>
|
|
378
|
-
<v-select :value.sync="row.f_adjustable"
|
|
379
|
-
|
|
378
|
+
<v-select :value.sync="row.f_adjustable"
|
|
379
|
+
:options='adjustables'
|
|
380
|
+
placeholder='调压箱'
|
|
381
|
+
close-on-select
|
|
382
|
+
@select-search="getAdjustables"
|
|
383
|
+
v-model='row.f_adjustable'
|
|
384
|
+
:search='true'>
|
|
385
|
+
</v-select>
|
|
380
386
|
</div>
|
|
381
387
|
<div class="col-sm-4 form-group" :class="[$m.f_hand_date.required ? 'has-error' : '']"
|
|
382
388
|
v-show="(formconfig && formconfig.f_hand_date && formconfig.f_hand_date.required) || !onlyshowmust"
|
|
@@ -761,6 +767,7 @@
|
|
|
761
767
|
opteratormetrbook: false, // 抄表册操作
|
|
762
768
|
oldrow: [],
|
|
763
769
|
overdueset: [],
|
|
770
|
+
adjustables: [],
|
|
764
771
|
isiot: true,
|
|
765
772
|
meterNumberDisabled: false,
|
|
766
773
|
meterChangeDisabled: this.$appdata.getSingleValue('建档后禁止更改表号') ? this.$appdata.getSingleValue('建档后禁止更改表号') : false,
|
|
@@ -799,8 +806,26 @@
|
|
|
799
806
|
await this.getConcentrators()
|
|
800
807
|
co(meterBookGen(this))
|
|
801
808
|
await readyGen(this)
|
|
809
|
+
await this.getAdjustables()
|
|
802
810
|
},
|
|
803
811
|
methods: {
|
|
812
|
+
async getAdjustables (searchText) {
|
|
813
|
+
let condition = `f_orgid = '${this.$login.f.orgid}'`
|
|
814
|
+
if (searchText) {
|
|
815
|
+
condition = condition + ` and (f_adjustable_name like '%${searchText}%' or f_adjustable_id like '%${searchText}%')`
|
|
816
|
+
}
|
|
817
|
+
let data = {
|
|
818
|
+
items: 'id,f_adjustable_name,f_adjustable_id',
|
|
819
|
+
tablename: 't_adjustablebox',
|
|
820
|
+
condition: condition,
|
|
821
|
+
orderitem: 'id desc'
|
|
822
|
+
}
|
|
823
|
+
let result = await this.$resetpost('rs/sql/singleTable_OrderBy?pageNo=1&pageSize=100', {data: data}, {resolveMsg: null, rejectMsg: '获取集中器失败!'})
|
|
824
|
+
this.adjustables = [{label: '全部', value: ''}]
|
|
825
|
+
for (let row of result.data) {
|
|
826
|
+
this.adjustables.push({label: `[${row.f_adjustable_id}]-${row.f_adjustable_name}`, value: row})
|
|
827
|
+
}
|
|
828
|
+
},
|
|
804
829
|
validateInput (event, key) {
|
|
805
830
|
const value = event.target.value
|
|
806
831
|
const sanitizedValue = value.replace(/[^0-9.]/g, '')
|
|
@@ -1150,18 +1175,6 @@
|
|
|
1150
1175
|
})
|
|
1151
1176
|
return Array.from(new Set(result))
|
|
1152
1177
|
},
|
|
1153
|
-
|
|
1154
|
-
adjustables () {
|
|
1155
|
-
let arr = []
|
|
1156
|
-
let filter = this.f_filialeid
|
|
1157
|
-
this.$GetSaleParam.getAdjustable(filter).forEach((item) => {
|
|
1158
|
-
let temp = {}
|
|
1159
|
-
temp.label = `[${item.value.f_adjustable_id}]-${item.label}`
|
|
1160
|
-
temp.value = item.value
|
|
1161
|
-
arr.push(temp)
|
|
1162
|
-
})
|
|
1163
|
-
return [{label: '全部', value: ''}, ...arr]
|
|
1164
|
-
},
|
|
1165
1178
|
inputtores () {
|
|
1166
1179
|
// return this.$login.f.f_gasman
|
|
1167
1180
|
let rs = new Array()
|