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
7ab4e25c
Commit
7ab4e25c
authored
Aug 17, 2023
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
批量签审_返厂出库确认
parent
ae4593be
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
102 additions
and
2 deletions
+102
-2
index.vue
.../task-center/myPlanTask/outStorageRecallConfirm/index.vue
+100
-0
taskList.vue
...er/src/views/workflow/task-center/myPlanTask/taskList.vue
+2
-2
No files found.
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/outStorageRecallConfirm/index.vue
0 → 100644
View file @
7ab4e25c
<!--
* @Author: gjn
* @Date: 2023-08-17 18:29:39
* @Description:批量签审_返厂出库确认
-->
<
template
>
<div
class=
"outStorageRecallConfirm"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData,selectionRows }"
:lay-config="{ typeName: 'OutStorageExpire', layKey: 'batchSign_outStorageRecallConfirm'}"
@selectionChange="selectionChange"
@tableToolHandler="tableToolHandler"
/>
<!-- 打印标签 -->
<PrintTag
ref=
"print"
:config=
"printConfig"
/>
</div>
</
template
>
<
script
>
import
PrintTag
from
'@/../../dee-mes/src/privateComponents/components/WarehousingConfirmationConfirm/component/PrintTag.vue'
export
default
{
name
:
'OutStorageRecallConfirm'
,
components
:
{
PrintTag
},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{
selectionRows
:
[],
// 打印标签
printConfig
:
{
visible
:
false
,
width
:
300
,
prints
:
[]
}
}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{
selectionChange
(
val
)
{
this
.
selectionRows
=
val
},
tableToolHandler
(
val
)
{
if
(
val
.
key
.
btnValue
===
'print'
)
{
this
.
print
()
}
},
print
()
{
// 获取需要打印的数据
this
.
printConfig
.
prints
=
[]
let
JobResponseInStorageEntryId
=
''
this
.
selectionRows
.
forEach
((
row
)
=>
{
this
.
$message
.
closeAll
()
JobResponseInStorageEntryId
=
row
.
extWorkUnit
.
extcode
this
.
printConfig
=
Object
.
assign
({},
this
.
printConfig
,
{
visible
:
true
})
this
.
printConfig
.
prints
.
push
({
text
:
JobResponseInStorageEntryId
,
propertys
:
[
{
label
:
'编码'
,
value
:
row
.
jobOrder
.
extMaterial
.
resCode
},
{
label
:
'名称'
,
value
:
row
.
jobOrder
.
extMaterial
.
resName
},
{
label
:
'型号/牌号/件号'
,
value
:
row
.
jobOrder
.
extMaterial
.
modelNo
},
{
label
:
'规格'
,
value
:
row
.
jobOrder
.
extMaterial
.
spec
},
{
label
:
'批号'
,
value
:
row
.
jobOrder
.
lotNo
},
{
label
:
'系列号/序列号'
,
value
:
row
.
jobOrder
.
serialNo
},
{
label
:
'机型'
,
value
:
row
.
jobOrder
.
airModel
},
{
label
:
'验收单号'
,
value
:
row
.
testNo
},
{
label
:
'库位号'
,
value
:
row
.
extWorkUnit
.
extcode
||
''
},
{
label
:
'备注'
,
value
:
row
.
jobOrder
.
remark
||
''
}
]
})
})
// 打印操作
this
.
$refs
.
print
.
print
()
}
}
}
</
script
>
<
style
lang=
'scss'
>
.outStorageRecallConfirm
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
4px
;
}
</
style
>
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/taskList.vue
View file @
7ab4e25c
...
...
@@ -15,8 +15,8 @@ export default {
OutStorageExpireApply
:
()
=>
import
(
'./outStorageExpireApply'
),
// 三期出库申请
OutStorageRecallApply
:
()
=>
import
(
'./outStorageRecallApply'
),
// 返厂出库申请
WarehouseConfirm
:
()
=>
import
(
'./warehouseConfirm'
),
// 验收入库确认
OutStorageExpireConfirm
:
()
=>
import
(
'./outStorageExpireConfirm'
)
// 三期出库确认
//
OutStorageRecallConfirm: () => import('./outStorageRecallConfirm')// 返厂出库确认
OutStorageExpireConfirm
:
()
=>
import
(
'./outStorageExpireConfirm'
)
,
// 三期出库确认
OutStorageRecallConfirm
:
()
=>
import
(
'./outStorageRecallConfirm'
)
// 返厂出库确认
},
props
:
{
selectData
:
{
...
...
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