Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
a9b5cae5
Commit
a9b5cae5
authored
Oct 19, 2022
by
季圣华
Browse files
从采购订单关联销售订单时,从页面隐藏掉销售单据的相关信息
parent
3a9c48c6
Changes
15
Hide whitespace changes
Inline
Side-by-side
jshERP-web/src/views/bill/dialog/BillDetail.vue
View file @
a9b5cae5
...
...
@@ -201,7 +201,7 @@
</a-col>
<a-col
:span=
"6"
>
<a-form-item
v-if=
"purchaseBySaleFlag"
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
label=
"关联订单"
>
<a
@
click=
"myHandleDetail(model.linkNumber)"
>
{{
model
.
linkNumber
}}
</a>
{{
model
.
linkNumber
}}
</a-form-item>
</a-col>
</a-row>
...
...
jshERP-web/src/views/bill/dialog/LinkBillList.vue
View file @
a9b5cae5
...
...
@@ -58,7 +58,8 @@
:customRow="rowAction"
@change="handleTableChange">
<span
slot=
"numberCustomRender"
slot-scope=
"text, record"
>
<a
@
click=
"myHandleDetail(record)"
>
{{
record
.
number
}}
</a>
<a
v-if=
"!queryParam.purchaseStatus"
@
click=
"myHandleDetail(record)"
>
{{
record
.
number
}}
</a>
<span
v-if=
"queryParam.purchaseStatus"
>
{{
record
.
number
}}
</span>
</span>
<template
slot=
"customRenderStatus"
slot-scope=
"text, record"
>
<template
v-if=
"!queryParam.purchaseStatus"
>
...
...
@@ -139,7 +140,7 @@
// 表头
columns
:
[
{
title
:
''
,
dataIndex
:
'
organName
'
,
width
:
120
,
ellipsis
:
true
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
number
'
,
width
:
1
5
0
,
{
title
:
'
单据编号
'
,
dataIndex
:
'
number
'
,
width
:
1
3
0
,
scopedSlots
:
{
customRender
:
'
numberCustomRender
'
},
},
{
title
:
'
商品信息
'
,
dataIndex
:
'
materialsList
'
,
width
:
280
,
ellipsis
:
true
,
...
...
@@ -151,6 +152,7 @@
},
{
title
:
'
单据日期
'
,
dataIndex
:
'
operTimeStr
'
,
width
:
145
},
{
title
:
'
操作员
'
,
dataIndex
:
'
userName
'
,
width
:
70
},
{
title
:
'
数量
'
,
dataIndex
:
'
materialCount
'
,
width
:
60
},
{
title
:
'
金额合计
'
,
dataIndex
:
'
totalPrice
'
,
width
:
70
},
{
title
:
'
含税合计
'
,
dataIndex
:
'
totalTaxLastMoney
'
,
width
:
70
,
customRender
:
function
(
text
,
record
,
index
)
{
...
...
jshERP-web/src/views/bill/modules/AllocationOutModal.vue
View file @
a9b5cae5
...
...
@@ -203,7 +203,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/AssembleModal.vue
View file @
a9b5cae5
...
...
@@ -201,7 +201,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/DisassembleModal.vue
View file @
a9b5cae5
...
...
@@ -200,7 +200,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/OtherInModal.vue
View file @
a9b5cae5
...
...
@@ -227,7 +227,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/OtherOutModal.vue
View file @
a9b5cae5
...
...
@@ -227,7 +227,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/PurchaseBackModal.vue
View file @
a9b5cae5
...
...
@@ -325,7 +325,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/PurchaseInModal.vue
View file @
a9b5cae5
...
...
@@ -368,7 +368,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/PurchaseOrderModal.vue
View file @
a9b5cae5
...
...
@@ -314,7 +314,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/RetailBackModal.vue
View file @
a9b5cae5
...
...
@@ -307,7 +307,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/RetailOutModal.vue
View file @
a9b5cae5
...
...
@@ -317,7 +317,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/SaleBackModal.vue
View file @
a9b5cae5
...
...
@@ -332,7 +332,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/SaleOrderModal.vue
View file @
a9b5cae5
...
...
@@ -297,7 +297,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
jshERP-web/src/views/bill/modules/SaleOutModal.vue
View file @
a9b5cae5
...
...
@@ -386,7 +386,8 @@
// 加载子表数据
let
params
=
{
headerId
:
this
.
model
.
id
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
)),
//扩展属性
linkType
:
'
basic
'
}
let
url
=
this
.
readOnly
?
this
.
url
.
detailList
:
this
.
url
.
detailList
;
this
.
requestSubTableData
(
url
,
params
,
this
.
materialTable
);
...
...
Write
Preview
Supports
Markdown
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