sale-client 3.6.391 → 3.6.392-bayan
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/filiale/bayan/EticketModal.vue +94 -0
- package/src/filiale/bayan/sale.js +3 -0
- package/src/filiale/yuansheng/UserBaseInfoNew.vue +1 -1
- 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/8.5/checksums/checksums.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.5/fileChanges/last-build.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.5/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
package/package.json
CHANGED
|
@@ -0,0 +1,94 @@
|
|
|
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
|
+
<label class="control-label col-sm-3">纳税人识别号:</label>
|
|
35
|
+
<input class="form-control col-sm-2"
|
|
36
|
+
v-model="row.f_taxpayer_id" placeholder="纳税人识别号(16至18位)">
|
|
37
|
+
</div>
|
|
38
|
+
<div class="col-sm-12 form-group " :class="[!row.f_address_phone ? 'has-error' : '']">
|
|
39
|
+
<label class="control-label col-sm-3">开票地址电话:</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 " >
|
|
44
|
+
<label class="control-label col-sm-3">发票备注:</label>
|
|
45
|
+
<input class="form-control col-sm-2"
|
|
46
|
+
v-model="row.f_eticket_reason" placeholder="发票备注">
|
|
47
|
+
</div>
|
|
48
|
+
<div class="col-sm-12 form-group ">
|
|
49
|
+
<label class="control-label col-sm-3">邮箱推送:</label>
|
|
50
|
+
<input class="form-control col-sm-2"
|
|
51
|
+
v-model="row.f_email" placeholder="邮箱推送">
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
</article>
|
|
56
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
57
|
+
<button type="button" class="btn button_search"
|
|
58
|
+
:disabled="!(row.f_paper_name&&row.f_address_phone&&row.invoice_is_pax.length >0)"
|
|
59
|
+
@click='confirm'>确认收费
|
|
60
|
+
</button>
|
|
61
|
+
</footer>
|
|
62
|
+
</modal>
|
|
63
|
+
</div>
|
|
64
|
+
</template>
|
|
65
|
+
<script>
|
|
66
|
+
|
|
67
|
+
export default {
|
|
68
|
+
title: '电子发票',
|
|
69
|
+
data () {
|
|
70
|
+
return {
|
|
71
|
+
is_pax: [{label: '征税', value: '征税'}, {label: '不征税', value: '不征税'}]
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
props: ['row', 'show'],
|
|
75
|
+
ready () {
|
|
76
|
+
},
|
|
77
|
+
methods: {
|
|
78
|
+
confirm () {
|
|
79
|
+
this.$dispatch('confirm')
|
|
80
|
+
},
|
|
81
|
+
closeShow () {
|
|
82
|
+
this.$dispatch('closemodalshow')
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
watch: {
|
|
86
|
+
'row' () {
|
|
87
|
+
this.row.invoice_is_pax = '征税'
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
events: {}
|
|
91
|
+
}
|
|
92
|
+
</script>
|
|
93
|
+
<style>
|
|
94
|
+
</style>
|
|
@@ -37,4 +37,7 @@ export default function () {
|
|
|
37
37
|
Vue.component('enablemanage-detail', (resolve) => { require(['./EnableManageDetail'], resolve) })
|
|
38
38
|
Vue.component('upload', (resolve) => { require(['./Upload'], resolve) })
|
|
39
39
|
Vue.component('upload-img', (resolve) => { require(['./UploadImg'], resolve) })
|
|
40
|
+
// 发票信息公共
|
|
41
|
+
Vue.component('eticket-modal', (resolve) => { require(['./EticketModal'], resolve) })
|
|
42
|
+
|
|
40
43
|
}
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
dataId: null // 操作记录ID
|
|
297
297
|
}
|
|
298
298
|
console.log(datas)
|
|
299
|
-
this.$resetpost('/
|
|
299
|
+
this.$resetpost('/rs/logic/syncSaveSetParams', {data: datas}, {resolveMsg: `清理成功`, rejectMsg: `清理失败`}).then(res => {
|
|
300
300
|
})
|
|
301
301
|
},
|
|
302
302
|
getuuid () {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|