Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TF-MOM-WEB
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
TFMOM
TF-MOM-WEB
Commits
68cfd60d
Commit
68cfd60d
authored
Oct 09, 2023
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
领用出库及供外出库明细数据源修改
parent
89c96bcb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
90 additions
and
17 deletions
+90
-17
index.vue
...teComponents/components/AddOutStorageUseDetails/index.vue
+69
-6
index.vue
...vateComponents/components/OutStorageOfferDetail/index.vue
+21
-11
No files found.
applications/dee-mes/src/privateComponents/components/AddOutStorageUseDetails/index.vue
View file @
68cfd60d
...
...
@@ -117,12 +117,7 @@ export default {
this
.
$set
(
this
.
cmpOptions
,
'layKey'
,
`add_outStorageUseItem_
${
val
.
useRequestType
}
`
)
}
if
(
val
&&
val
.
id
)
{
if
(
this
.
basicData
.
inStorageRequestItems
&&
(
!
this
.
tableData
||
!
this
.
tableData
.
length
))
{
this
.
tableData
=
this
.
basicData
.
inStorageRequestItems
.
map
(
item
=>
{
item
.
allocatedAmount
=
this
.
$utils
.
sumArray
(
item
.
inventoryJobResponses
,
'allocatedAmount'
)
return
item
})
}
this
.
getDetailsData
(
val
.
id
)
}
}
}
...
...
@@ -170,6 +165,74 @@ export default {
selectionChange
(
val
)
{
this
.
selectionRows
=
val
},
getDetailsData
(
id
)
{
const
params
=
{
'pageFrom'
:
1
,
'pageSize'
:
999
,
'searchItems'
:
{
'children'
:
[
{
'items'
:
[
{
'fieldName'
:
'outStorageRequestId'
,
'operator'
:
'EQ'
,
'value'
:
id
}
],
'operator'
:
'AND'
}
],
'items'
:
[],
'operator'
:
'AND'
},
'openProps'
:
[
{
'name'
:
'extMaterial'
,
'openProps'
:
[{
'name'
:
'resType2'
},
{
'name'
:
'extUnit'
}]
},
{
'name'
:
'extDxSipplier'
},
{
'name'
:
'extSupportingItemVO'
,
'openProps'
:
[{
'name'
:
'extMaterial'
,
'openProps'
:
[{
'name'
:
'resType2'
}]
}]
},
{
'name'
:
'inventoryJobResponses'
},
{
'name'
:
'storageZone'
},
{
'name'
:
'outStorageRequest'
,
'openProps'
:
[
{
'name'
:
'extWorkCenter'
}]
}
],
'sortItem'
:
[
{
'fieldName'
:
'modifyTime'
,
'sortOrder'
:
'desc'
}
]
}
this
.
$api
.
searchApi
(
`InStorageRequestItem`
,
params
).
then
(
res
=>
{
const
data
=
res
.
items
.
content
||
[]
data
.
forEach
(
item
=>
{
if
(
item
.
inventoryJobResponses
)
{
item
.
allocatedAmount
=
this
.
$utils
.
sumArray
(
item
.
inventoryJobResponses
,
'allocatedAmount'
)
}
})
this
.
tableData
=
data
}).
catch
((
err
)
=>
{
console
.
log
(
err
)
})
},
addHandle
()
{
const
useRequestType
=
this
.
basicData
.
useRequestType
if
(
useRequestType
===
'swapUse'
)
{
...
...
applications/dee-mes/src/privateComponents/components/OutStorageOfferDetail/index.vue
View file @
68cfd60d
...
...
@@ -293,20 +293,30 @@ export default {
'openProps'
:
[
{
'name'
:
'extMaterial'
,
'openProps'
:
[
{
'name'
:
'extUnit'
},
{
'name'
:
'resType2'
}
]
},
{
'name'
:
'inventory'
'openProps'
:
[{
'name'
:
'resType2'
},
{
'name'
:
'extUnit'
}]
},
{
'name'
:
'extDxSipplier'
},
{
'name'
:
'extSupportingItemVO'
,
'openProps'
:
[{
'name'
:
'extMaterial'
,
'openProps'
:
[{
'name'
:
'resType2'
}]
}]
},
{
'name'
:
'inventoryJobResponses'
},
{
'name'
:
'storageZone'
},
{
'name'
:
'outStorageRequest'
,
'openProps'
:
[
{
'name'
:
'extWorkCenter'
}]
}
],
'sortItem'
:
[
...
...
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