1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
| // 销售台账页面接口
| import request from '@/utils/request'
|
| // 分页查询
| export function invoiceRegistrationList(query) {
| return request({
| url: '/invoiceRegistration/listPage',
| method: 'get',
| params: query
| })
| }
| // 开票登记新增
| export function invoiceRegistrationSave(query) {
| return request({
| url: '/invoiceRegistration/save',
| method: 'post',
| data: query
| })
| }
| // 开票登记删除
| export function invoiceRegistrationDel(query) {
| return request({
| url: '/invoiceRegistration/del',
| method: 'delete',
| data: query
| })
| }
| // 子表格查询
| export function productList(query) {
| return request({
| url: '/invoiceRegistration/productList',
| method: 'get',
| params: query
| })
| }
|
| // 开票登记详情
| export function invoiceRegistrationDetail(query) {
| return request({
| url: '/invoiceRegistration/detail',
| method: 'get',
| params: query
| })
| }
|
| // 导出开票登记
| export function invoiceRegistrationExport(query) {
| return request({
| url: '/invoiceRegistration/export',
| method: 'get',
| params: query,
| responseType: 'blob'
| })
| }
|
|