manage-client 3.3.126 → 3.3.127
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/package.json
CHANGED
|
@@ -540,6 +540,10 @@
|
|
|
540
540
|
this.batchQuotaModalShow = false
|
|
541
541
|
},
|
|
542
542
|
batchQuota(){
|
|
543
|
+
if (!this.$login.r.find(value => value == '稽查批量限购')) {
|
|
544
|
+
this.$showAlert('您没有权限操作此功能!!!', 'warning', 2000)
|
|
545
|
+
return
|
|
546
|
+
}
|
|
543
547
|
if(this.$refs.paged.$refs.grid.getRowData().length === 0){
|
|
544
548
|
this.$showAlert('请至少选择一项!', 'warning', 2000)
|
|
545
549
|
return
|
|
@@ -32,7 +32,7 @@ import {DataModel} from "vue-client";
|
|
|
32
32
|
let getBillData = async function (self) {
|
|
33
33
|
console.log('看看执行了吗?')
|
|
34
34
|
// 显示票据
|
|
35
|
-
let billurl = self.getBillUrl(self.data[0].f_type)
|
|
35
|
+
let billurl = await self.getBillUrl(self.data[0].f_type)
|
|
36
36
|
self.bill2 = new DataModel(billurl, {reprint: "'补打'"})
|
|
37
37
|
await self.bill2.search(self.data[0].id)
|
|
38
38
|
}
|
|
@@ -434,6 +434,11 @@
|
|
|
434
434
|
close-on-select>
|
|
435
435
|
</v-select>
|
|
436
436
|
</div>
|
|
437
|
+
<div class="col-sm-2 form-group" >
|
|
438
|
+
<label class="font_normal_body">开票名称</label>
|
|
439
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_paper_name"
|
|
440
|
+
condition="f_paper_name like '%{}%'" placeholder='开票名称'>
|
|
441
|
+
</div>
|
|
437
442
|
</div>
|
|
438
443
|
</div>
|
|
439
444
|
</criteria>
|
|
@@ -486,6 +491,7 @@
|
|
|
486
491
|
<th><nobr>建档日期</nobr></th>
|
|
487
492
|
<th><nobr>建档人</nobr></th>
|
|
488
493
|
<th><nobr>所属营业厅</nobr></th>
|
|
494
|
+
<th><nobr>开票名称</nobr></th>
|
|
489
495
|
<th><nobr>备注信息</nobr></th>
|
|
490
496
|
|
|
491
497
|
<!-- <th><nobr>气价详情</nobr></th>-->
|
|
@@ -602,6 +608,7 @@
|
|
|
602
608
|
<td style="text-align: center;"><nobr>{{row.f_createfile_date}}</nobr></td>
|
|
603
609
|
<td style="text-align: center;"><nobr>{{row.f_createfile_person}}</nobr></td>
|
|
604
610
|
<td style="text-align: center;"><nobr>{{row.f_depname}}</nobr></td>
|
|
611
|
+
<td style="text-align: center;"><nobr>{{row.f_paper_name}}</nobr></td>
|
|
605
612
|
<td style="text-align: center;"><nobr>{{row.f_comments}}</nobr></td>
|
|
606
613
|
|
|
607
614
|
<!-- <!– <td style="text-align: center;"><nobr>{{row.value}}</nobr></td>–>-->
|
|
@@ -140,7 +140,7 @@ export default{
|
|
|
140
140
|
'f_balance': '账户余额','f_hand_date': '最后抄表日期','f_whether_hairpin': '是否发卡',
|
|
141
141
|
'f_valve_state': '阀门状态','f_user_type': '客户类型','f_gasproperties': '用气性质','value':'气价详情',
|
|
142
142
|
'f_open_date': '开户时间','f_credentials': '证件类型','f_idnumber': '证件号码','f_people_num': '人口数','f_ins_stop_date': '保险结束日期',
|
|
143
|
-
'f_createfile_date': '建档日期','f_createfile_person': '建档人','f_depname': '所属营业厅','f_comments': '备注信息',
|
|
143
|
+
'f_createfile_date': '建档日期','f_createfile_person': '建档人','f_depname': '所属营业厅','f_paper_name': '开票名称','f_comments': '备注信息',
|
|
144
144
|
'f_used_name': '曾用名','f_rent_phone': '备用电话','f_rent_name': '租户姓名','f_zuhu_phone': '租户电话',
|
|
145
145
|
'f_contract_id': '发票编码','f_is_mgq': '是否煤改气','f_send_usegas_card': '是否发放天然气使用证',
|
|
146
146
|
'f_usetype':'使用类型','f_meter_style': '气表型号','f_table_state': '表状态','f_initial_base': '初始气表底数',
|