Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
b5580f68
Commit
b5580f68
authored
Aug 16, 2022
by
吴滔
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
应款款/付款单
parent
5fb02d14
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2257 additions
and
942 deletions
+2257
-942
financial.js
src/api/ecw/financial.js
+83
-0
creatCollection.vue
src/views/ecw/financial/creatCollection.vue
+601
-324
creatPayment.vue
src/views/ecw/financial/creatPayment.vue
+618
-241
payable.vue
src/views/ecw/financial/payable.vue
+333
-177
paymentVoucher.vue
src/views/ecw/financial/paymentVoucher.vue
+310
-0
receivable.vue
src/views/ecw/financial/receivable.vue
+312
-200
No files found.
src/api/ecw/financial.js
0 → 100644
View file @
b5580f68
import
request
from
'
@/utils/request
'
// 创建收款单
export
function
createReceipt
(
data
)
{
return
request
({
url
:
'
/ecw/receipt/create
'
,
method
:
'
post
'
,
data
:
data
})
}
// 获取应收款列表
export
function
getReceivableList
(
query
)
{
return
request
({
url
:
'
/ecw/receivable/page
'
,
method
:
'
get
'
,
params
:
query
})
}
// 根据获取应收款列表
// export function getReceivableListByIds(query) {
// return request({
// url: '/ecw/receivable/list',
// method: 'get',
// params: query
// })
// }
// 更新应付款
export
function
updatePayable
(
data
)
{
return
request
({
url
:
'
/ecw/payable/update
'
,
method
:
'
put
'
,
data
:
data
})
}
// 删除应付款
export
function
deletePayable
(
id
)
{
return
request
({
url
:
'
/ecw/payable/delete?id=
'
+
id
,
method
:
'
delete
'
})
}
// 获取应付款列表
export
function
getPayableList
(
query
)
{
return
request
({
url
:
'
/ecw/payable/page
'
,
method
:
'
get
'
,
params
:
query
})
}
// 获取应付款详情
export
function
getPayableInfoByIds
(
query
)
{
return
request
({
url
:
'
/ecw/payable/get
'
,
method
:
'
get
'
,
params
:
query
})
}
// 创建付款单
export
function
createPayment
(
data
)
{
return
request
({
url
:
'
/ecw/payment/create
'
,
method
:
'
post
'
,
data
:
data
})
}
// 获取付款单列表
export
function
getPaymentList
(
query
)
{
return
request
({
url
:
'
/ecw/payment/page
'
,
method
:
'
get
'
,
params
:
query
})
}
\ No newline at end of file
src/views/ecw/financial/creatCollection.vue
View file @
b5580f68
This diff is collapsed.
Click to expand it.
src/views/ecw/financial/creatPayment.vue
View file @
b5580f68
This diff is collapsed.
Click to expand it.
src/views/ecw/financial/payable.vue
View file @
b5580f68
This diff is collapsed.
Click to expand it.
src/views/ecw/financial/paymentVoucher.vue
0 → 100644
View file @
b5580f68
<
template
>
<div
class=
"app-container"
>
<div
slot=
"header"
class=
"card-title"
>
付款单
</div>
<!-- 搜索工作栏 -->
<el-card
v-show=
"showSearch"
class=
"card"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
label-width=
"100px"
class=
"card"
>
<el-row
:span=
"24"
>
<el-form-item
label=
"柜号:"
>
<el-input
style=
"max-width: 188px"
v-model=
"queryParams.receiptNo"
placeholder=
"请输入收款单号"
clearable
@
keyup.enter.native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"自编号:"
>
<el-input
style=
"max-width: 188px"
v-model=
"queryParams.receiptNo"
placeholder=
"请输入收款单号"
clearable
@
keyup.enter.native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"付款单号:"
>
<el-input
style=
"max-width: 188px"
v-model=
"queryParams.receiptNo"
placeholder=
"请输入收款单号"
clearable
@
keyup.enter.native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"供应商:"
>
<el-select
v-model=
"queryParams.supplierId"
placeholder=
"请选择供应商"
>
<el-option
v-for=
"supplier in allSupplier"
:key=
"supplier.id"
:label=
"supplier.companyZh"
:value=
"supplier.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"状态:"
>
<dict-selector
:type=
"DICT_TYPE.ECW_RECEIPT_STATE"
v-model=
"queryParams.state"
/>
</el-form-item>
</el-row>
<el-row
:span=
"24"
>
<el-form-item
label=
"业务员:"
>
<el-select
v-model=
"form.salesmanId"
placeholder=
"请选择业务员"
>
<el-option
v-for=
"item in creatorData"
:key=
"item.id"
:label=
"item.nickname"
:value=
"item.id"
/>
</el-select>
</el-form-item>
<el-form-item
label=
"创建时间:"
>
<el-date-picker
v-model=
"queryParams.beginCreateTime"
type=
"datetimerange"
range-separator=
"到"
start-placeholder=
"请选择日期"
end-placeholder=
"请选择日期"
>
</el-date-picker>
</el-form-item>
<el-form-item
label=
"发票状态:"
>
<el-select
v-model=
"queryParams.invoiceStatus"
placeholder=
"请选择是否开票"
>
<el-option
label=
"未开票"
value=
"0"
/>
<el-option
label=
"已开票"
value=
"1"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
@
click=
"handleQuery"
>
查找
</el-button>
</el-form-item>
</el-row>
</el-form>
</el-card>
<el-table
v-loading=
"loadings"
:data=
"list"
border
class=
"card"
>
<el-table-column
label=
"序号"
align=
"center"
prop=
"id"
type=
"index"
>
<template
slot-scope=
"scope"
>
<span>
{{
scope
.
$index
+
1
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"付款单号"
align=
"center"
prop=
"paymentNo"
/>
<el-table-column
label=
"供应商"
align=
"center"
prop=
"supplierName"
/>
<el-table-column
label=
"创建时间"
align=
"center"
prop=
"createTime"
>
<
template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
createTime
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"最后付款时间"
align=
"center"
prop=
"latestPayAt"
>
<
template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
latestPayAt
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"发票"
align=
"center"
prop=
"invoiceStatus"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
invoiceStatus
===
0
?
'
未开票
'
:
'
已开票
'
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"状态"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<span>
{{
stateMap
(
scope
.
row
.
state
)
}}
</span>
<!--
<dict-tag
:type=
"DICT_TYPE.ECW_RECEIPT_STATE"
:value=
"scope.row.state"
/>
-->
</
template
>
</el-table-column>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<el-button
v-if=
"scope.row.state == 1 || scope.row.state == 3"
size=
"mini"
@
click=
"handleAdd(scope.row.id)"
type=
"text"
>
编辑
</el-button>
<el-button
v-if=
"scope.row.state == 1 || scope.row.state == 3"
size=
"mini"
type=
"text"
>
审核
</el-button>
<el-button
v-if=
"scope.row.state == 2"
size=
"mini"
type=
"text"
>
反审核
</el-button>
<el-button
v-if=
"scope.row.state == 2"
size=
"mini"
type=
"text"
>
核销
</el-button>
<el-button
v-if=
"scope.row.state = 4"
size=
"mini"
type=
"text"
>
反核销
</el-button>
<!--
<el-button
v-if=
"scope.row.state == 3"
size=
"mini"
type=
"text"
>
开票
</el-button>
-->
<el-button
size=
"mini"
type=
"text"
@
click=
"toprint(scope.row.id)"
>
打印
</el-button>
<el-button
v-if=
"scope.row.state == 1 || scope.row.state == 3"
size=
"mini"
type=
"text"
>
删除
</el-button>
<!--
<el-button
size=
"mini"
type=
"text"
@
click=
"open = true"
>
导出订单
</el-button>
-->
</
template
>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<pagination
v-show=
"total > 0"
:total=
"total"
:page.sync=
"queryParams.page"
:limit.sync=
"queryParams.rows"
@
pagination=
"getList"
/>
<!-- 对话框(添加 / 修改) -->
<el-dialog
title=
"费用登记"
:visible.sync=
"open"
width=
"500px"
style=
"margin-top: 20vh !important"
append-to-body
>
<div
slot=
"header"
class=
"card-title"
style=
"border-bottom: 2px solid #f8f8f8"
>
<span>
导出账单
</span>
<i
class=
"el-icon-close"
@
click=
"cancel"
></i>
</div>
<div
class=
"dialog-footer"
>
<el-button
type=
"primary"
style=
"width: 130px"
@
click=
"submitForm"
>
国内账单
</el-button
>
<el-button
plain
type=
"primary"
style=
"width: 130px; margin: 0"
@
click=
"submitForm"
>
Debite note
</el-button
>
</div>
</el-dialog>
</div>
</template>
<
script
>
import
{
userList
}
from
"
@/api/system/user
"
;
import
{
DICT_TYPE
}
from
"
@/utils/dict
"
;
import
CustomerSelector
from
"
@/components/CustomerSelector
"
;
import
{
getSupplierPage
}
from
"
@/api/ecw/supplier
"
;
import
{
getPaymentList
}
from
"
@/api/ecw/financial
"
export
default
{
name
:
"
paymentVoucher
"
,
components
:
{
CustomerSelector
,
},
data
()
{
return
{
open
:
false
,
showSearch
:
true
,
loadings
:
false
,
form
:
{},
creatorData
:
[],
allSupplier
:
[],
list
:
[],
total
:
0
,
dateType
:
[],
loading
:
""
,
// params: {
// page: 1,
// rows: 20,
// },
// 查询参数
queryParams
:
{
page
:
1
,
rows
:
20
,
dateType
:
null
,
date
:
null
,
originId
:
null
,
destinationId
:
null
,
transportId
:
null
,
isCargoControl
:
null
,
orderExceptionStatus
:
null
,
orderExceptionType
:
null
,
orderNo
:
null
,
consignorId
:
null
,
marks
:
null
,
prodId
:
null
,
productRecord
:
null
,
followUpSalesmanId
:
null
,
},
};
},
created
()
{
let
that
=
this
;
userList
(
"
salesman
"
).
then
((
res
)
=>
(
that
.
creatorData
=
res
.
data
));
getSupplierPage
({
pageNo
:
"
1
"
,
pageSize
:
"
10000
"
}).
then
((
res
)
=>
{
const
{
data
}
=
res
;
this
.
allSupplier
=
data
.
list
;
});
this
.
getList
()
},
methods
:
{
/** 查询列表 */
getList
()
{
this
.
loading
=
true
;
// 处理查询参数
let
params
=
{
...
this
.
queryParams
};
this
.
addBeginAndEndTime
(
params
,
this
.
dateRangeCreateTime
,
"
createTime
"
);
// 执行查询
getPaymentList
(
params
).
then
((
response
)
=>
{
this
.
list
=
response
.
data
.
list
;
this
.
total
=
response
.
data
.
total
;
this
.
loading
=
false
;
});
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
page
=
1
;
this
.
getList
();
},
stateMap
(
state
)
{
switch
(
state
)
{
case
1
:
return
'
待审核
'
case
2
:
return
'
已审核待核销
'
case
3
:
return
'
已核销
'
case
4
:
return
'
审批驳回
'
}
},
/** 新增按钮操作 */
handleAdd
(
id
)
{
return
this
.
$router
.
push
(
"
creatCollection?id=
"
+
id
);
},
toprint
(
id
)
{
return
this
.
$router
.
push
(
"
printVoucher?id=
"
+
id
);
},
submitForm
()
{
this
.
open
=
false
;
},
/** 取消按钮 */
cancel
()
{
this
.
open
=
false
;
},
},
};
</
script
>
<
style
>
.card
{
margin-top
:
20px
;
}
.dialog-footer
{
padding
:
30px
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
justify-content
:
space-between
;
height
:
160px
;
}
.card-title
{
font-size
:
18px
;
font-weight
:
bold
;
}
</
style
>
src/views/ecw/financial/receivable.vue
View file @
b5580f68
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment