Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
pda-ui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
pda
pda-ui
Commits
30c6aa39
Commit
30c6aa39
authored
Jan 28, 2024
by
hiyonx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新销售订单sap
parent
ca67f1ab
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
7 deletions
+9
-7
factoryQuote.js
src/api/mes/qt/factoryQuote.js
+4
-3
index.vue
src/views/mes/order/purchase/index.vue
+2
-1
index.vue
src/views/mes/order/salesdetail/index.vue
+2
-2
index.vue
src/views/mes/qt/factoryQuote/index.vue
+1
-1
No files found.
src/api/mes/qt/factoryQuote.js
View file @
30c6aa39
...
...
@@ -10,10 +10,11 @@ export function listFactoryQuote(query) {
}
// 查询工厂报价详细
export
function
getFactoryQuote
(
id
)
{
export
function
getFactoryQuote
(
query
)
{
return
request
({
url
:
'/qt/factoryQuote/'
+
id
,
method
:
'get'
url
:
'/qt/factoryQuote/'
,
method
:
'get'
,
params
:
query
})
}
...
...
src/views/mes/order/purchase/index.vue
View file @
30c6aa39
...
...
@@ -94,6 +94,7 @@
<
el
-
dialog
:
visible
.
sync
=
"showDetail"
title
=
"采订单详情"
width
=
"1200px"
>
<
el
-
table
:
data
=
"detailList"
max
-
height
=
"600"
size
=
"mini"
>
<
el
-
table
-
column
label
=
"产品名称"
prop
=
"itemName"
show
-
overflow
-
tooltip
width
=
"120"
/>
<
el
-
table
-
column
label
=
"客户单号"
prop
=
"poOrderNo"
show
-
overflow
-
tooltip
/>
<
el
-
table
-
column
label
=
"客户产品代码"
prop
=
"poProductName"
show
-
overflow
-
tooltip
/>
<
el
-
table
-
column
label
=
"客户产品名称"
prop
=
"poProductNo"
show
-
overflow
-
tooltip
/>
...
...
@@ -128,7 +129,7 @@
<
el
-
table
-
column
label
=
"条码"
prop
=
"barCode"
show
-
overflow
-
tooltip
/>
<
el
-
table
-
column
label
=
"印刷方向"
prop
=
"printingDirection"
show
-
overflow
-
tooltip
/>
<
el
-
table
-
column
label
=
"产品规格"
prop
=
"productSize"
show
-
overflow
-
tooltip
/>
<
el
-
table
-
column
label
=
"操作"
>
<
el
-
table
-
column
label
=
"操作"
fixed
=
"right"
>
<
template
slot
-
scope
=
"{row
}
"
>
<
el
-
button
type
=
"text"
@
click
=
"onShowSpec(row)"
>
特性值
<
/el-button
>
<
/template
>
...
...
src/views/mes/order/salesdetail/index.vue
View file @
30c6aa39
...
...
@@ -550,8 +550,8 @@ export default {
dicts
:
[
'sales_order_state'
],
computed
:
{
totalAmount
()
{
return
this
.
form
.
detailList
.
reduce
((
amount
,
item
)
=>
{
amount
=
+
item
.
amount
return
this
.
form
.
detailList
.
reduce
((
amount
=
0
,
item
)
=>
{
amount
+=
+
item
.
price
return
amount
},
0
)
||
0
}
...
...
src/views/mes/qt/factoryQuote/index.vue
View file @
30c6aa39
...
...
@@ -345,7 +345,7 @@ export default {
handleUpdate
(
row
)
{
this
.
reset
()
const
id
=
row
.
id
||
this
.
ids
getFactoryQuote
(
id
).
then
(
response
=>
{
getFactoryQuote
(
{
id
}
).
then
(
response
=>
{
this
.
form
=
response
.
data
this
.
open
=
true
this
.
title
=
'修改工厂报价'
...
...
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