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
3b59317d
Commit
3b59317d
authored
Nov 02, 2023
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
退库入库批量签审联调
parent
f07d4d6b
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
320 additions
and
2 deletions
+320
-2
index.vue
.../src/privateComponents/components/EditReqAmount/index.vue
+1
-1
index.vue
.../task-center/myPlanTask/inStorageMatchBackApply/index.vue
+47
-0
index.vue
...ask-center/myPlanTask/inStorageMatchBackConfirm/index.vue
+54
-0
index.vue
...ask-center/myPlanTask/inStorageMatchBackExamine/index.vue
+55
-0
index.vue
...task-center/myPlanTask/inStorageUseOutBackApply/index.vue
+47
-0
index.vue
...sk-center/myPlanTask/inStorageUseOutBackConfirm/index.vue
+54
-0
index.vue
...sk-center/myPlanTask/inStorageUseOutBackExamine/index.vue
+55
-0
taskList.vue
...er/src/views/workflow/task-center/myPlanTask/taskList.vue
+7
-1
No files found.
applications/dee-mes/src/privateComponents/components/EditReqAmount/index.vue
View file @
3b59317d
...
@@ -69,7 +69,7 @@ export default {
...
@@ -69,7 +69,7 @@ export default {
this
.
maxNum
=
maxAmount
this
.
maxNum
=
maxAmount
}
}
this
.
$emit
(
'input'
,
this
.
reqAmount
)
this
.
$emit
(
'input'
,
this
.
reqAmount
)
if
(
this
.
form
.
id
&&
this
.
parentType_Inject
!==
'退库入库'
)
{
if
(
this
.
form
.
id
&&
this
.
parentType_Inject
!==
'退库入库'
&&
!
this
.
form
.
subTypeName
.
includes
(
'BackItem'
)
)
{
this
.
changeAmount
()
this
.
changeAmount
()
}
}
},
},
...
...
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/inStorageMatchBackApply/index.vue
0 → 100644
View file @
3b59317d
<!--
* @Author: gjn
* @Date: 2023-11-02 09:29:39
* @Description:配套退库入库申请
-->
<
template
>
<div
class=
"inStorageMatchBackApply"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData: selectData }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackApply'}"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'InStorageMatchBackApply'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{}
}
</
script
>
<
style
lang=
'scss'
>
.inStorageMatchBackApply
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
4px
;
}
</
style
>
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/inStorageMatchBackConfirm/index.vue
0 → 100644
View file @
3b59317d
<!--
* @Author: gjn
* @Date: 2023-11-02 13:49:39
* @Description:配套退库入库确认
-->
<
template
>
<div
class=
"inStorageMatchBackConfirm"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData,selectionRows }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackConfirm'}"
@selectionChange="selectionChange"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'InStorageMatchBackConfirm'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{
selectionRows
:
[]
}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{
selectionChange
(
val
)
{
this
.
selectionRows
=
val
}
}
}
</
script
>
<
style
lang=
'scss'
>
.inStorageMatchBackConfirm
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
4px
;
}
</
style
>
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/inStorageMatchBackExamine/index.vue
0 → 100644
View file @
3b59317d
<!--
* @Author: gjn
* @Date: 2023-11-02 13:49:39
* @Description:配套退库入库审核
-->
<
template
>
<div
class=
"inStorageMatchBackExamine"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData,selectionRows }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackExamine'}"
@selectionChange="selectionChange"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'InStorageMatchBackExamine'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{
selectionRows
:
[]
}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{
},
// 组件方法
methods
:
{
selectionChange
(
val
)
{
this
.
selectionRows
=
val
}
}
}
</
script
>
<
style
lang=
'scss'
>
.inStorageMatchBackExamine
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
4px
;
}
</
style
>
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/inStorageUseOutBackApply/index.vue
0 → 100644
View file @
3b59317d
<!--
* @Author: gjn
* @Date: 2023-11-02 09:29:39
* @Description:领用/供外退库入库申请
-->
<
template
>
<div
class=
"inStorageUseOutBackApply"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData: selectData }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackApply'}"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'InStorageUseOutBackApply'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{}
}
</
script
>
<
style
lang=
'scss'
>
.inStorageUseOutBackApply
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
4px
;
}
</
style
>
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/inStorageUseOutBackConfirm/index.vue
0 → 100644
View file @
3b59317d
<!--
* @Author: gjn
* @Date: 2023-11-02 13:49:39
* @Description:领用/供外退库入库确认
-->
<
template
>
<div
class=
"inStorageUseOutBackConfirm"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData,selectionRows }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackConfirm'}"
@selectionChange="selectionChange"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'InStorageUseOutBackConfirm'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{
selectionRows
:
[]
}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{
selectionChange
(
val
)
{
this
.
selectionRows
=
val
}
}
}
</
script
>
<
style
lang=
'scss'
>
.inStorageUseOutBackConfirm
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
4px
;
}
</
style
>
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/inStorageUseOutBackExamine/index.vue
0 → 100644
View file @
3b59317d
<!--
* @Author: gjn
* @Date: 2023-11-02 13:49:39
* @Description:领用/供外退库入库审核
-->
<
template
>
<div
class=
"inStorageUseOutBackExamine"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData,selectionRows }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackExamine'}"
@selectionChange="selectionChange"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'InStorageUseOutBackExamine'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{
selectionRows
:
[]
}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{
},
// 组件方法
methods
:
{
selectionChange
(
val
)
{
this
.
selectionRows
=
val
}
}
}
</
script
>
<
style
lang=
'scss'
>
.inStorageUseOutBackExamine
{
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 @
3b59317d
...
@@ -20,7 +20,13 @@ export default {
...
@@ -20,7 +20,13 @@ export default {
OutStorageOutApply
:
()
=>
import
(
'./outStorageOutApply'
),
// 供外出库申请
OutStorageOutApply
:
()
=>
import
(
'./outStorageOutApply'
),
// 供外出库申请
OutStorageOutExamine
:
()
=>
import
(
'./outStorageOutExamine'
),
// 供外出库审核
OutStorageOutExamine
:
()
=>
import
(
'./outStorageOutExamine'
),
// 供外出库审核
OutStorageOutApproval
:
()
=>
import
(
'./outStorageOutApproval'
),
// 供外出库批准
OutStorageOutApproval
:
()
=>
import
(
'./outStorageOutApproval'
),
// 供外出库批准
OutStorageOutConfirm
:
()
=>
import
(
'./outStorageOutConfirm'
)
// 供外出库确认
OutStorageOutConfirm
:
()
=>
import
(
'./outStorageOutConfirm'
),
// 供外出库确认
InStorageMatchBackApply
:
()
=>
import
(
'./inStorageMatchBackApply'
),
// 配套退库申请
InStorageMatchBackExamin
:
()
=>
import
(
'./inStorageMatchBackExamine'
),
// 配套退库审核
InStorageMatchBackConfirm
:
()
=>
import
(
'./inStorageMatchBackConfirm'
),
// 配套退库确认
InStorageUseOutBackApply
:
()
=>
import
(
'./inStorageUseOutBackApply'
),
// 领用/供外退库申请
InStorageUseOutBackExamine
:
()
=>
import
(
'./inStorageUseOutBackExamine'
),
// 领用/供外退库审核
InStorageUseOutBackConfirm
:
()
=>
import
(
'./inStorageUseOutBackConfirm'
)
// 领用/供外退库确认
},
},
props
:
{
props
:
{
selectData
:
{
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