sale-client 3.6.482 → 3.6.484
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
|
@@ -59,10 +59,10 @@
|
|
|
59
59
|
</div>
|
|
60
60
|
<div class="span" style="float:right;">
|
|
61
61
|
<button class="button_search button_spacing width-60" @click="search()" v-el:cx>查询</button>
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
62
|
+
<!--<button class="button_search button_spacing width-60" v-if="$parent.$parent.showallcharge"-->
|
|
63
|
+
<!-- @click="$parent.$parent.allcharge()" v-el:cx>全部缴费</button>-->
|
|
64
|
+
<!--<button class="button_search button_spacing width-60" v-if="$parent.$parent.showallcharge || $parent.$parent.showallcharge1"-->
|
|
65
|
+
<!-- @click="$parent.$parent.allcharge1()" v-el:cx>全部标记退款</button>-->
|
|
66
66
|
<export-excel :data="$parent.$parent.getCondition"
|
|
67
67
|
:field="$parent.$parent.getfield"
|
|
68
68
|
sqlurl="rs/logic/saleExport" progress="saleGetExportProgress" sql-name="QrPaydetail"
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
<th>所属公司</th>
|
|
98
98
|
<th>所属部门</th>
|
|
99
99
|
<th>操作人员</th>
|
|
100
|
-
|
|
100
|
+
<!--<th>操作</th>-->
|
|
101
101
|
</tr>
|
|
102
102
|
</template>
|
|
103
103
|
<template partial='body'>
|
|
@@ -145,13 +145,13 @@
|
|
|
145
145
|
<td style="text-align: center;">{{row.f_depname}}</td>
|
|
146
146
|
<td style="text-align: center;">{{row.f_operator}}</td>
|
|
147
147
|
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
148
|
+
<!--<td>-->
|
|
149
|
+
<!-- <button type="button" name="button" class="btn btn-link" @click="$parent.$parent.$parent.charge1(row)"-->
|
|
150
|
+
<!-- v-if="row.msg === '银行单方面账单'">标记已退款</button>-->
|
|
151
|
+
<!-- <button type="button" name="button" class="btn btn-link" @click="$parent.$parent.$parent.charge(row)"-->
|
|
152
|
+
<!-- v-if="row.msg === '银行单方面账单' && row.f_trade_type === 'MICROPAY'">缴费-->
|
|
153
|
+
<!-- </button>-->
|
|
154
|
+
<!--</td>-->
|
|
155
155
|
</template>
|
|
156
156
|
</data-grid>
|
|
157
157
|
|
|
@@ -64,6 +64,7 @@ export default {
|
|
|
64
64
|
invoice_kind: row.f_paper_type,
|
|
65
65
|
org_id: this.$login.f.orgid,
|
|
66
66
|
retry,
|
|
67
|
+
autoSaveUserInfo: row.autoSaveUserInfo,
|
|
67
68
|
isTax: row.invoice_is_pax === '征税' ? 1 : 0,
|
|
68
69
|
f_paper_name: row.f_paper_name,
|
|
69
70
|
f_buy_name: row.f_paper_name,
|
|
@@ -108,6 +109,7 @@ export default {
|
|
|
108
109
|
invoice_kind: row.f_paper_type,
|
|
109
110
|
org_id: this.$login.f.orgid,
|
|
110
111
|
retry,
|
|
112
|
+
autoSaveUserInfo: row.autoSaveUserInfo,
|
|
111
113
|
isTax: row.invoice_is_pax === '征税' ? 1 : 0,
|
|
112
114
|
f_paper_name: row.f_paper_name,
|
|
113
115
|
f_buy_name: row.f_paper_name,
|
|
@@ -0,0 +1,96 @@
|
|
|
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-12 form-group " :class="[!row.f_paper_name ? 'has-error' : '']">
|
|
12
|
+
<label class="control-label col-sm-3">开票名称:</label>
|
|
13
|
+
<input class="form-control "
|
|
14
|
+
v-model="row.f_paper_name" placeholder="开票名称">
|
|
15
|
+
</div>
|
|
16
|
+
<div class="col-sm-12 form-group " :class="[ row.invoice_is_pax.length < 1 ? 'has-error' : '']">
|
|
17
|
+
<label class="control-label col-sm-3">是否征税:</label>
|
|
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"
|
|
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 ">
|
|
29
|
+
<label class="control-label col-sm-3">开户行及账号:</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 "
|
|
34
|
+
:class="[ (row.f_taxpayer_id.length < 16 || row.f_taxpayer_id.length > 18) && row.f_paper_type === '数电专票' ? 'has-error' : '']">
|
|
35
|
+
<label class="control-label col-sm-3">纳税人识别号:</label>
|
|
36
|
+
<input class="form-control col-sm-2"
|
|
37
|
+
v-model="row.f_taxpayer_id" placeholder="纳税人识别号(16至18位)">
|
|
38
|
+
</div>
|
|
39
|
+
<div class="col-sm-12 form-group " :class="[!row.f_address_phone ? 'has-error' : '']">
|
|
40
|
+
<label class="control-label col-sm-3">开票地址电话:</label>
|
|
41
|
+
<input class="form-control col-sm-2"
|
|
42
|
+
v-model="row.f_address_phone" placeholder="开票地址">
|
|
43
|
+
</div>
|
|
44
|
+
<div class="col-sm-12 form-group " >
|
|
45
|
+
<label class="control-label col-sm-3">发票备注:</label>
|
|
46
|
+
<input class="form-control col-sm-2"
|
|
47
|
+
v-model="row.f_eticket_reason" placeholder="发票备注">
|
|
48
|
+
</div>
|
|
49
|
+
<div class="col-sm-12 form-group ">
|
|
50
|
+
<label class="control-label col-sm-3">邮箱推送:</label>
|
|
51
|
+
<input class="form-control col-sm-2"
|
|
52
|
+
v-model="row.f_email" placeholder="邮箱推送">
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
56
|
+
</article>
|
|
57
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
58
|
+
<button type="button" class="btn button_search"
|
|
59
|
+
:disabled="!(row.f_paper_name&&row.f_address_phone&&((row.f_taxpayer_id.length>=16 && row.f_taxpayer_id.length<=18) || row.f_paper_type === '数电普票')&&row.invoice_is_pax.length >0)"
|
|
60
|
+
@click='confirm'>确认收费
|
|
61
|
+
</button>
|
|
62
|
+
</footer>
|
|
63
|
+
</modal>
|
|
64
|
+
</div>
|
|
65
|
+
</template>
|
|
66
|
+
<script>
|
|
67
|
+
|
|
68
|
+
export default {
|
|
69
|
+
title: '电子发票',
|
|
70
|
+
data () {
|
|
71
|
+
return {
|
|
72
|
+
is_pax: [{label: '征税', value: '征税'}, {label: '不征税', value: '不征税'}],
|
|
73
|
+
autoSaveUserInfo: true,
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
props: ['row','show'],
|
|
77
|
+
ready () {
|
|
78
|
+
},
|
|
79
|
+
methods: {
|
|
80
|
+
confirm(){
|
|
81
|
+
this.$dispatch('confirm')
|
|
82
|
+
},
|
|
83
|
+
closeShow(){
|
|
84
|
+
this.$dispatch('closemodalshow')
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
watch: {
|
|
88
|
+
'row'(){
|
|
89
|
+
this.row.invoice_is_pax = '征税'
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
events: {}
|
|
93
|
+
}
|
|
94
|
+
</script>
|
|
95
|
+
<style>
|
|
96
|
+
</style>
|
|
@@ -33,6 +33,7 @@ export default function () {
|
|
|
33
33
|
Vue.component('e-ticket-open-jb', (resolve) => { require(['./bill/EticketOpenJBPage'], resolve) })
|
|
34
34
|
Vue.component('e-ticket-open-card', (resolve) => { require(['./bill/EticketOpenCard'], resolve) })
|
|
35
35
|
Vue.component('e-ticket-manage', (resolve) => { require(['./bill/EticketManage'], resolve) })
|
|
36
|
+
VUe.component('eticket-modal', (resolve) => { require(['./bill/EticketModal'], resolve) })
|
|
36
37
|
Vue.component('replace-card-manage', (resolve) => { require(['./ReplaceCardManage'], resolve) })
|
|
37
38
|
Vue.component('ticket-print', (resolve) => { require(['./EticketPrint'], resolve) })
|
|
38
39
|
// 超用收费
|