sale-client 3.6.21 → 3.6.22
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 +1 -1
- package/src/components/charge/business/CardMeterCenter.vue +944 -944
- package/src/components/charge/business/IOTMeterCenter.vue +793 -793
- package/src/components/charge/business/OtherChargeNew.vue +550 -550
- package/src/components/charge/business/machine/MachineMeterCenter.vue +676 -676
- package/src/components/charge/gasloss/gasLossOperate.vue +383 -383
- package/src/components/newBill/CardMeterCenter.vue +902 -902
- package/src/components/newBill/IOTMeterCenter.vue +797 -797
- package/src/components/revenue/Common/EticketModal.vue +90 -90
- package/src/filiale/alashan/business/CardMeterCenter.vue +897 -897
- package/src/filiale/chengtou/components/OtherChargeNew.vue +549 -549
- package/src/filiale/gehua/CardMeterCenter.vue +898 -898
- package/src/filiale/gehua/IOTMeterCenter.vue +791 -791
- package/src/filiale/gehua/MachineMeterCenter.vue +685 -685
- package/src/filiale/gehua/OtherChargeNew.vue +558 -558
- package/src/filiale/guangxi/CardMeterCenter.vue +891 -891
- package/src/filiale/guangxi/IOTMeterCenter.vue +774 -774
- package/src/filiale/guangxi/MachineMeterCenter.vue +622 -622
- package/src/filiale/haile/MachineMeterCenter.vue +762 -762
- package/src/filiale/huayin/CardMeterCenter.vue +903 -903
- package/src/filiale/huayin/IOTMeterCenter.vue +796 -796
- package/src/filiale/huayin/MachineMeterCenter.vue +680 -680
- package/src/filiale/jingwei/CardMeterCenter.vue +870 -870
- package/src/filiale/jingwei/ShowCardSellGas.vue +903 -903
- package/src/filiale/kelai/CardMeterCenter.vue +934 -934
- package/src/filiale/kelai/IOTMeterCenter.vue +833 -833
- package/src/filiale/kelai/MachineMeterCenter.vue +705 -705
- package/src/filiale/macheng/CardMeterCenter.vue +939 -939
- package/src/filiale/qianneng/OtherChargeNew.vue +544 -544
- package/src/filiale/qianneng/eticket/EticketModal.vue +91 -91
- package/src/filiale/qianneng/machine/MachineMeterCenter.vue +676 -676
- package/src/filiale/rizhao/IOTMeterCenter.vue +795 -795
- package/src/filiale/shangluo/CardMeterCenter.vue +892 -892
- package/src/filiale/shangluo/IOTMeterCenter.vue +797 -797
- package/src/filiale/shangluo/MachineMeterCenter.vue +734 -734
- package/src/filiale/shanxian/OtherChargeNew.vue +561 -561
- package/src/filiale/shanxian/components/revenue/CardMeterCenter.vue +944 -944
- package/src/filiale/tongchuan/CardMeterCenter.vue +923 -923
- package/src/filiale/tongchuan/bill/EticketModal.vue +90 -90
- package/src/filiale/wenxi/CardMeterCenter.vue +942 -942
- package/src/filiale/wenxi/IOTMeterCenter.vue +774 -774
- package/src/filiale/wuhai/CardMeterCenter.vue +945 -945
- package/src/filiale/wuhai/IOTMeterCenter.vue +757 -757
- package/src/filiale/yuansheng/CardMeterCenter.vue +950 -950
- package/src/filiale/yuansheng/IOTMeterCenter.vue +788 -788
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="auto form-horizontal">
|
|
3
|
-
<modal :show.sync="show" v-ref:modal large backdrop="false" :width="900">
|
|
4
|
-
<header slot="modal-header" class="modal-header">
|
|
5
|
-
<button type="button" class="close" @click="closeShow"><span>×</span></button>
|
|
6
|
-
<h4 class="modal-title">发票信息</h4>
|
|
7
|
-
</header>
|
|
8
|
-
<article slot="modal-body" class="modal-body">
|
|
9
|
-
<div class="auto select-overspread form-horizontal">
|
|
10
|
-
<div class="row auto">
|
|
11
|
-
<div class="col-sm-6 form-group form-input-group" :class="[!row.f_paper_name ? 'has-error' : '']">
|
|
12
|
-
<label class="control-label">开票名称:</label>
|
|
13
|
-
<input class="form-control col-sm-2"
|
|
14
|
-
v-model="row.f_paper_name" placeholder="开票名称">
|
|
15
|
-
</div>
|
|
16
|
-
<div class="col-sm-6 form-group form-input-group">
|
|
17
|
-
<nobr class="col-sm-4"><label class="control-label">是否征税:</label></nobr>
|
|
18
|
-
<v-select v-model="row.invoice_is_pax"
|
|
19
|
-
placeholder='请选择'
|
|
20
|
-
:value.sync="row.invoice_is_pax"
|
|
21
|
-
close-on-select
|
|
22
|
-
:width="60" disabled
|
|
23
|
-
:value-single="true"
|
|
24
|
-
:search="false"
|
|
25
|
-
:options='is_pax' clear-button>
|
|
26
|
-
</v-select>
|
|
27
|
-
</div>
|
|
28
|
-
<div class="col-sm-12 form-group form-input-group">
|
|
29
|
-
<label class="control-label">开户行及账号:</label>
|
|
30
|
-
<input class="form-control col-sm-2"
|
|
31
|
-
v-model="row.f_paper_account" placeholder="购方开户行及账号">
|
|
32
|
-
</div>
|
|
33
|
-
<div class="col-sm-12 form-group form-input-group" >
|
|
34
|
-
<label class="control-label">纳税人识别号:</label>
|
|
35
|
-
<input class="form-control col-sm-2"
|
|
36
|
-
v-model="row.f_taxpayer_id" placeholder="纳税人识别号">
|
|
37
|
-
</div>
|
|
38
|
-
<div class="col-sm-12 form-group form-input-group" :class="[!row.f_address_phone ? 'has-error' : '']">
|
|
39
|
-
<label class="control-label">开票地址电话:</label>
|
|
40
|
-
<input class="form-control col-sm-2"
|
|
41
|
-
v-model="row.f_address_phone" placeholder="开票地址">
|
|
42
|
-
</div>
|
|
43
|
-
<div class="col-sm-12 form-group form-input-group">
|
|
44
|
-
<label class="control-label">邮箱推送:</label>
|
|
45
|
-
<input class="form-control col-sm-2"
|
|
46
|
-
v-model="row.f_email" placeholder="邮箱推送">
|
|
47
|
-
</div>
|
|
48
|
-
</div>
|
|
49
|
-
</div>
|
|
50
|
-
</article>
|
|
51
|
-
<footer slot="modal-footer" class="modal-footer">
|
|
52
|
-
<button type="button" class="btn button_search"
|
|
53
|
-
:disabled="!(row.f_paper_name&&row.f_address_phone)"
|
|
54
|
-
@click='confirm'>确认收费
|
|
55
|
-
</button>
|
|
56
|
-
</footer>
|
|
57
|
-
</modal>
|
|
58
|
-
</div>
|
|
59
|
-
</template>
|
|
60
|
-
<script>
|
|
61
|
-
import {HttpResetClass} from 'vue-client'
|
|
62
|
-
|
|
63
|
-
export default {
|
|
64
|
-
title: '电子发票',
|
|
65
|
-
data () {
|
|
66
|
-
return {
|
|
67
|
-
is_pax: [{label: '征税', value: '征税'}, {label: '不征税', value: '不征税'}]
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
props: ['row', 'show'],
|
|
71
|
-
ready () {
|
|
72
|
-
},
|
|
73
|
-
methods: {
|
|
74
|
-
confirm () {
|
|
75
|
-
this.$dispatch('confirm')
|
|
76
|
-
},
|
|
77
|
-
closeShow () {
|
|
78
|
-
this.$dispatch('
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
watch: {
|
|
82
|
-
'row' () {
|
|
83
|
-
this.row.invoice_is_pax = ['征税']
|
|
84
|
-
}
|
|
85
|
-
},
|
|
86
|
-
events: {}
|
|
87
|
-
}
|
|
88
|
-
</script>
|
|
89
|
-
<style>
|
|
90
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="auto form-horizontal">
|
|
3
|
+
<modal :show.sync="show" v-ref:modal large backdrop="false" :width="900">
|
|
4
|
+
<header slot="modal-header" class="modal-header">
|
|
5
|
+
<button type="button" class="close" @click="closeShow"><span>×</span></button>
|
|
6
|
+
<h4 class="modal-title">发票信息</h4>
|
|
7
|
+
</header>
|
|
8
|
+
<article slot="modal-body" class="modal-body">
|
|
9
|
+
<div class="auto select-overspread form-horizontal">
|
|
10
|
+
<div class="row auto">
|
|
11
|
+
<div class="col-sm-6 form-group form-input-group" :class="[!row.f_paper_name ? 'has-error' : '']">
|
|
12
|
+
<label class="control-label">开票名称:</label>
|
|
13
|
+
<input class="form-control col-sm-2"
|
|
14
|
+
v-model="row.f_paper_name" placeholder="开票名称">
|
|
15
|
+
</div>
|
|
16
|
+
<div class="col-sm-6 form-group form-input-group">
|
|
17
|
+
<nobr class="col-sm-4"><label class="control-label">是否征税:</label></nobr>
|
|
18
|
+
<v-select v-model="row.invoice_is_pax"
|
|
19
|
+
placeholder='请选择'
|
|
20
|
+
:value.sync="row.invoice_is_pax"
|
|
21
|
+
close-on-select
|
|
22
|
+
:width="60" disabled
|
|
23
|
+
:value-single="true"
|
|
24
|
+
:search="false"
|
|
25
|
+
:options='is_pax' clear-button>
|
|
26
|
+
</v-select>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="col-sm-12 form-group form-input-group">
|
|
29
|
+
<label class="control-label">开户行及账号:</label>
|
|
30
|
+
<input class="form-control col-sm-2"
|
|
31
|
+
v-model="row.f_paper_account" placeholder="购方开户行及账号">
|
|
32
|
+
</div>
|
|
33
|
+
<div class="col-sm-12 form-group form-input-group" >
|
|
34
|
+
<label class="control-label">纳税人识别号:</label>
|
|
35
|
+
<input class="form-control col-sm-2"
|
|
36
|
+
v-model="row.f_taxpayer_id" placeholder="纳税人识别号">
|
|
37
|
+
</div>
|
|
38
|
+
<div class="col-sm-12 form-group form-input-group" :class="[!row.f_address_phone ? 'has-error' : '']">
|
|
39
|
+
<label class="control-label">开票地址电话:</label>
|
|
40
|
+
<input class="form-control col-sm-2"
|
|
41
|
+
v-model="row.f_address_phone" placeholder="开票地址">
|
|
42
|
+
</div>
|
|
43
|
+
<div class="col-sm-12 form-group form-input-group">
|
|
44
|
+
<label class="control-label">邮箱推送:</label>
|
|
45
|
+
<input class="form-control col-sm-2"
|
|
46
|
+
v-model="row.f_email" placeholder="邮箱推送">
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
</article>
|
|
51
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
52
|
+
<button type="button" class="btn button_search"
|
|
53
|
+
:disabled="!(row.f_paper_name&&row.f_address_phone)"
|
|
54
|
+
@click='confirm'>确认收费
|
|
55
|
+
</button>
|
|
56
|
+
</footer>
|
|
57
|
+
</modal>
|
|
58
|
+
</div>
|
|
59
|
+
</template>
|
|
60
|
+
<script>
|
|
61
|
+
import {HttpResetClass} from 'vue-client'
|
|
62
|
+
|
|
63
|
+
export default {
|
|
64
|
+
title: '电子发票',
|
|
65
|
+
data () {
|
|
66
|
+
return {
|
|
67
|
+
is_pax: [{label: '征税', value: '征税'}, {label: '不征税', value: '不征税'}]
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
props: ['row', 'show'],
|
|
71
|
+
ready () {
|
|
72
|
+
},
|
|
73
|
+
methods: {
|
|
74
|
+
confirm () {
|
|
75
|
+
this.$dispatch('confirm')
|
|
76
|
+
},
|
|
77
|
+
closeShow () {
|
|
78
|
+
this.$dispatch('closemodalshow')
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
watch: {
|
|
82
|
+
'row' () {
|
|
83
|
+
this.row.invoice_is_pax = ['征税']
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
events: {}
|
|
87
|
+
}
|
|
88
|
+
</script>
|
|
89
|
+
<style>
|
|
90
|
+
</style>
|