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
c9a5acdb
Commit
c9a5acdb
authored
Jun 04, 2024
by
lanbaoming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2024-06-04提交
parent
db9bb0e6
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
4000 additions
and
2144 deletions
+4000
-2144
box.js
src/api/ecw/box.js
+4
-2
query.vue
src/views/ecw/box/query.vue
+2
-2
queryAir.vue
src/views/ecw/box/queryAir.vue
+2
-2
edit.vue
src/views/ecw/customer/edit.vue
+968
-586
payable.vue
src/views/ecw/financial/payable.vue
+3
-0
PrintLadingBill.vue
src/views/ecw/order/components/PrintLadingBill.vue
+3
-2
detail.vue
src/views/ecw/order/detail.vue
+1
-0
prepayDeal.vue
src/views/ecw/order/prepayDeal.vue
+2985
-1546
index.vue
src/views/ecw/warehouse/index.vue
+32
-4
No files found.
src/api/ecw/box.js
View file @
c9a5acdb
...
...
@@ -117,6 +117,8 @@ export function getLogList(params) {
}
// 获得费用登记列表
//先登记费用入表 ecw_box_cost 同时进应付款表,ecw_payable,
//用户在应收款列表中点击收款,生成付款单,入表 ecw_payment
export
function
getCostList
(
params
)
{
return
request
({
url
:
"
/ecw/box-cost/list
"
,
...
...
@@ -124,8 +126,8 @@ export function getCostList(params) {
params
,
});
}
//
付款单主
表 SELECT * from ecw_payment
//
付款单费用明细
SELECT * from ecw_payable
//
收款单
表 SELECT * from ecw_payment
//
应付款表
SELECT * from ecw_payable
// 根据明细获取主表ID
export
function
getPaymentId
(
id
)
{
return
request
({
...
...
src/views/ecw/box/query.vue
View file @
c9a5acdb
...
...
@@ -392,7 +392,7 @@
<el-table-column
:label=
"$t('操作')"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<el-button
type=
"primary"
type=
"primary"
:disabled=
"scope.row.paymentId!='-1'"
size=
"small"
@
click=
"editCostClick(scope.row)"
style=
"marginright: 10px"
...
...
@@ -404,7 +404,7 @@
@
confirm=
"deleteCostClick(scope.row)"
>
<el-button
type=
"danger"
type=
"danger"
:disabled=
"scope.row.paymentId!='-1'"
size=
"small"
slot=
"reference"
v-hasPermi=
"['ecw:box-cost:delete']"
...
...
src/views/ecw/box/queryAir.vue
View file @
c9a5acdb
...
...
@@ -456,7 +456,7 @@
<el-table-column
:label=
"$t('操作')"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<el-button
type=
"primary"
type=
"primary"
:disabled=
"scope.row.paymentId!='-1'"
size=
"small"
@
click=
"editCostClick(scope.row)"
style=
"marginright: 10px"
...
...
@@ -468,7 +468,7 @@
@
confirm=
"deleteCostClick(scope.row)"
>
<el-button
type=
"danger"
type=
"danger"
:disabled=
"scope.row.paymentId!='-1'"
size=
"small"
slot=
"reference"
v-hasPermi=
"['ecw:box-cost:delete']"
...
...
src/views/ecw/customer/edit.vue
View file @
c9a5acdb
This diff is collapsed.
Click to expand it.
src/views/ecw/financial/payable.vue
View file @
c9a5acdb
...
...
@@ -343,6 +343,9 @@ import { getSupplierPage } from "@/api/ecw/supplier";
import
{
getCurrencyPage
}
from
"
@/api/ecw/currency
"
;
import
{
getWarehouseList
}
from
"
@/api/ecw/warehouse
"
;
/*
应付款
*/
export
default
{
name
:
"
EcwFinancialPayable
"
,
components
:
{},
...
...
src/views/ecw/order/components/PrintLadingBill.vue
View file @
c9a5acdb
...
...
@@ -6,8 +6,9 @@
<pdf-viewer
id=
"pdfViewer"
ref=
"viewer"
v-if=
"pdfData"
:url=
"pdfData"
style=
"display:block; margin: 0 auto; max-height: 80vh; overflow:auto;"
/>
<!--
<div
v-if=
"detail"
class=
"billcontent"
v-html=
"detail.billContent"
></div>
-->
<p
class=
"subs"
style=
"text-align:center"
>
<el-button
type=
"primary"
@
click=
"download"
:disabled=
"!detail"
>
{{
$t
(
'
下载
'
)
}}
</el-button>
<el-button
type=
"primary"
@
click=
"print"
:disabled=
"!detail"
>
{{
$t
(
'
打印
'
)
}}
</el-button>
<!--lanbm 2024-06-04 添加审批状态控制逻辑-->
<el-button
type=
"primary"
@
click=
"download"
:disabled=
"detail.bpmStatus!='2'"
>
{{
$t
(
'
下载
'
)
}}
</el-button>
<el-button
type=
"primary"
@
click=
"print"
:disabled=
"detail.bpmStatus!='2'"
>
{{
$t
(
'
打印
'
)
}}
</el-button>
</p>
</el-dialog>
</
template
>
...
...
src/views/ecw/order/detail.vue
View file @
c9a5acdb
...
...
@@ -574,6 +574,7 @@
<
/el-card
>
<
print
-
warehouse
-
receipt
v
-
if
=
"
showWarehouseReceipt
"
:
order
-
id
=
"
order.orderId
"
@
close
=
"
showWarehouseReceipt=false
"
/>
<!--
查看提货单
lanbm
2024
-
06
-
03
-->
<
print
-
lading
-
bill
v
-
if
=
"
showLadingBill
"
:
order
-
id
=
"
order.orderId
"
:
transport
-
type
=
"
order.transportId
"
@
close
=
"
showLadingBill=false
"
/>
<
warehouse
-
detail
:
order
=
"
order
"
:
orderItemId
=
"
showWarehouseInItemId
"
:
type
=
"
type
"
@
openPackHistory
=
"
openPackHistory
"
v
-
if
=
"
showWarehouseInItemId
"
@
close
=
"
showWarehouseInItemId=null
"
/>
<
el
-
dialog
:
title
=
"
$t('付款人')
"
:
visible
.
sync
=
"
showDarweeDialog
"
v
-
if
=
"
order && order.customDraweeVOList
"
>
...
...
src/views/ecw/order/prepayDeal.vue
View file @
c9a5acdb
This diff is collapsed.
Click to expand it.
src/views/ecw/warehouse/index.vue
View file @
c9a5acdb
...
...
@@ -91,7 +91,6 @@
<el-table-column
:label=
"$t('仓库编号')"
align=
"center"
prop=
"number"
/>
<el-table-column
:label=
"$t('仓库名称')"
align=
"center"
prop=
"titleZh"
/>
<el-table-column
:label=
"$t('英文名称')"
align=
"center"
prop=
"titleEn"
/>
<el-table-column
:label=
"$t('贸易属性')"
align=
"center"
prop=
"tradeType"
>
<template
slot-scope=
"scope"
>
<div>
{{
tradeTypeName
(
scope
.
row
.
tradeType
)
}}
</div>
...
...
@@ -114,7 +113,18 @@
align=
"center"
:prop=
"$l('address')"
/>
<!--lanbm 2024-06-04 add-->
<el-table-column
:label=
"$t('仓库免租期')"
align=
"center"
prop=
"rentFreeDays"
/>
<el-table-column
:label=
"$t('锁定收货人天数')"
align=
"center"
prop=
"lockRecipientDays"
/>
<!--end lanbm 2024-06-04 add-->
<el-table-column
prop=
"head"
:label=
"$t('负责人')"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<div>
...
...
@@ -315,7 +325,7 @@
<!-- 对话框(添加 / 修改) -->
<el-dialog
:title=
"title"
:visible.sync=
"open"
width=
"900px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"
9
0px"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"
12
0px"
>
<el-form-item
:label=
"$t('所属网点')"
prop=
"nodeId"
>
<el-select
v-model=
"form.nodeId"
...
...
@@ -504,7 +514,25 @@
>
</el-radio-group>
</el-form-item>
<!--lanbm 2024-06-04 添加控货需要的逻辑字段-->
<el-form-item
:label=
"$t('仓库免租期')"
prop=
"rentFreeDays"
>
<el-input-number
v-model=
"form.rentFreeDays"
controls-position=
"right"
:min=
"0"
/>
</el-form-item>
<el-form-item
:label=
"$t('锁定收货人天数')"
prop=
"lockRecipientDays"
>
<el-input-number
v-model=
"form.lockRecipientDays"
controls-position=
"right"
:min=
"0"
/>
</el-form-item>
</el-form>
<!--end lanbm 2024-06-04 添加控货需要的逻辑字段-->
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
{{
$t("确定")
...
...
@@ -609,7 +637,7 @@
</el-radio-group>
</el-form-item>
<!--lanbm 2024-05-25 把海运的相关配置信息也显示出来了,把空运文字提示出掉了-->
<
template
v-if=
"['3', '4','1'].includes(lineform.transportType)"
>
<
template
v-if=
"['3', '4',
'1'].includes(lineform.transportType)"
>
<el-form-item
:label=
"$t('模板中文标题')"
>
<el-input
v-model=
"lineform.tempTitleZh"
...
...
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