Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
Releases
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
周远喜
mes-ui
Commits
52938112
Commit
52938112
authored
Sep 04, 2020
by
仇晓婷
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'product' of
http://git.mes123.com/zhouyx/mes-ui
into product
parents
7f08beb0
79d960c7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
1589 additions
and
925 deletions
+1589
-925
dataGrid.vue
components/page/dataGrid.vue
+43
-4
process.vue
components/page/import/process.vue
+7
-4
productSelect.vue
components/page/productSelect.vue
+175
-172
zh-CN.js
i18n/locale/zh-CN.js
+4
-3
index.vue
pages/aps/ai/index.vue
+1
-0
process.vue
pages/import/process.vue
+410
-26
masterData.vue
pages/materiel/masterData/masterData.vue
+9
-1
add.vue
pages/technology/add.vue
+262
-249
api.js
pages/technology/details/routingsupporting/api.js
+4
-0
index.vue
pages/technology/details/routingsupporting/index.vue
+110
-1
index.vue
pages/technology/index.vue
+564
-465
No files found.
components/page/dataGrid.vue
View file @
52938112
...
...
@@ -102,6 +102,7 @@ export default {
userId
:
this
.
$store
.
state
.
userInfo
.
userId
,
treeData
:
[],
//物料数据
codeRuleData
:
[],
//物料编码
routingHeaderData
:
[],
//工艺规程
};
},
props
:
{
...
...
@@ -276,6 +277,7 @@ export default {
//物料加载类型数据
this
.
getTreeData
();
this
.
getcodeRuleData
();
this
.
getRoutingHeaderData
();
},
methods
:
{
//数据加载
...
...
@@ -518,10 +520,11 @@ export default {
const
tHeader
=
[];
// 设置Excel的表格第一行的标题
const
filterVal
=
[];
//list里对象的属性
var
tempCol
=
[];
var
tempCol1
=
[];
var
columnsCur
=
this
.
$u
.
clone
(
this
.
columnsNow
);
//导出列标题信息griddata this.$refs.grid.columnsCur
var
tempCol1
=
[];
//存放物料相关表头
var
tempCol2
=
[];
//存放工艺规程相关表头
var
columnsCur
=
this
.
$u
.
clone
(
this
.
columnsCur
);
//导出列标题信息griddata this.$refs.grid.columnsCur
columnsCur
.
forEach
((
el
)
=>
{
if
((
el
.
hide
&&
!
el
.
import
)
||
(
!
el
.
hide
&&
el
.
key
!=
"action"
&&
el
.
type
!=
"selection"
&&
el
.
key
!=
"ico"
))
{
if
((
el
.
hide
&&
el
.
import
)
||
(
!
el
.
hide
&&
el
.
key
!=
"action"
&&
el
.
type
!=
"selection"
&&
el
.
key
!=
"ico"
))
{
if
(
el
.
code
)
{
tempCol
.
push
({
key
:
el
.
key
,
...
...
@@ -534,6 +537,13 @@ export default {
code
:
el
.
materialKey
});
//临时存放物料管理大类和子类列表
}
if
(
el
.
techKey
)
{
tempCol2
.
push
({
key
:
el
.
key
,
code
:
el
.
techKey
});
//临时存放工艺规程相关转换
}
tHeader
.
push
(
el
.
title
);
filterVal
.
push
(
el
.
key
);
}
...
...
@@ -546,7 +556,7 @@ export default {
e
[
ele
.
key
]
);
});
//导出数据增加对应的物料管理信息
//导出数据增加对应的物料管理信息
code: 1【rootCategoryId 大类】 2【categoryId 大类】 3【codeRuleId 编码名称】
tempCol1
.
forEach
((
elcol1
)
=>
{
if
(
elcol1
.
code
==
1
)
{
e
[
elcol1
.
key
]
=
this
.
getType1
(
e
[
elcol1
.
key
])
...
...
@@ -556,6 +566,12 @@ export default {
e
[
elcol1
.
key
]
=
this
.
getType3
(
e
[
elcol1
.
key
])
}
});
//导出工艺规程相关转换表头信息
tempCol2
.
forEach
((
elcol2
)
=>
{
if
(
elcol2
.
code
==
1
)
{
e
[
elcol2
.
key
]
=
this
.
getRoutingHeaderName
(
e
[
elcol2
.
key
])
}
});
});
...
...
@@ -620,6 +636,29 @@ export default {
return
codeRuleName
},
//物料大类和子类的解析end
//工艺规程的解析start
//获取工艺规程名称
getRoutingHeaderData
()
{
let
data
=
{
conditions
:
[]
};
this
.
$api
.
post
(
`
${
technologyUrl
}
routingheader/list`
,
data
).
then
((
r
)
=>
{
if
(
r
.
success
)
{
this
.
routingHeaderData
=
r
.
result
||
[]
}
});
},
getRoutingHeaderName
(
val
)
{
let
routingHeaderDataList
=
this
.
$u
.
clone
(
this
.
routingHeaderData
)
let
routingHeaderName
=
""
routingHeaderDataList
.
forEach
(
ele
=>
{
if
(
ele
.
id
==
val
)
{
routingHeaderName
=
ele
.
name
}
})
return
routingHeaderName
},
//工艺规程的解析end
},
computed
:
{
columnsNow
()
{
...
...
components/page/import/process.vue
View file @
52938112
...
...
@@ -215,12 +215,13 @@ export default {
useData
.
forEach
(
eles
=>
{
//如果导入文件没有departmentid,但存在departmentTitle的话,通过title获取id
if
(
eles
.
departmentTitle
&&
eles
.
departmentTitle
!=
""
&&
[(
eles
.
departmentTitle
&&
eles
.
departmentTitle
!=
""
)
||
(
eles
.
departmentName
&&
eles
.
departmentName
!=
""
)]
&&
(
!
eles
.
departmentId
||
eles
.
departmentId
==
""
)
)
{
this
.
departArr
.
forEach
((
e
)
=>
{
if
(
eles
.
departmentTitle
&&
eles
.
departmentTitle
==
e
.
name
)
{
if
(
(
eles
.
departmentTitle
&&
eles
.
departmentTitle
==
e
.
name
)
||
(
eles
.
departmentName
&&
eles
.
departmentName
==
e
.
name
)
)
{
eles
.
departmentId
=
e
.
id
;
}
});
...
...
@@ -228,14 +229,16 @@ export default {
//如果导入文件没有departmentTitle,但存在departmentid的话,通过id获取departmentTitle
eles
.
departmentId
&&
eles
.
departmentId
+
""
!=
""
&&
(
!
eles
.
departmentTitle
||
eles
.
departmentTitle
==
""
)
(
!
eles
.
departmentTitle
||
eles
.
departmentTitle
==
""
)
&&
(
!
eles
.
departmentName
||
eles
.
departmentName
==
""
)
)
{
this
.
departArr
.
forEach
((
e
)
=>
{
if
(
eles
.
departmentId
&&
eles
.
departmentId
==
e
.
id
)
{
eles
.
departmentTitle
=
e
.
name
;
eles
.
departmentName
=
e
.
name
;
}
});
}
arrTitleUse
.
forEach
((
elem
)
=>
{
if
(
eles
[
elem
.
key
]
&&
eles
[
elem
.
key
]
!=
""
&&
eles
[
elem
.
key
]
!=
null
)
{
//如果数据字典项对应的DirName字段存在,通过name查询到对应的code,然后赋值
...
...
components/page/productSelect.vue
View file @
52938112
<
template
>
<Select
v-model=
"dep"
:placeholder=
"placeholdeinfo"
clearable
@
on-clear=
"onClear"
>
<Option
v-for=
"(item,index) in list"
:key=
"index"
:value=
"item.value"
style=
"display:none"
:label=
"item.label"
></Option>
<
template
>
<Select
v-model=
"dep"
:placeholder=
"placeholdeinfo"
clearable
@
on-clear=
"onClear"
>
<Option
v-for=
"(item,index) in list"
:key=
"index"
:value=
"item.value"
style=
"display:none"
:label=
"item.label"
></Option>
<Tree
key=
"mytree"
:data=
"data1"
ref=
"mytree"
:render=
"renderContent"
></Tree>
</Select>
</Select>
</
template
>
<
script
>
<
script
>
export
default
{
name
:
"Add"
,
model
:
{
...
...
@@ -59,7 +54,10 @@ export default {
this
.
selectdata
=
data
;
if
(
data
[
0
].
isProduct
==
"1"
)
{
this
.
list
=
[];
this
.
list
.
push
({
label
:
data
[
0
].
title
,
value
:
data
[
0
].
id
});
this
.
list
.
push
({
label
:
data
[
0
].
title
,
value
:
data
[
0
].
id
});
this
.
orderSearchForm
.
productName
=
data
[
0
].
title
;
this
.
orderSearchForm
.
productId
=
data
[
0
].
productId
;
this
.
orderSearchForm
.
drawingNo
=
data
[
0
].
drawingNo
;
...
...
@@ -97,7 +95,11 @@ export default {
}
});
},
renderContent
(
h
,
{
root
,
node
,
data
})
{
renderContent
(
h
,
{
root
,
node
,
data
})
{
let
type
=
"md-folder"
;
let
title
=
data
.
title
;
if
(
data
.
isProduct
!=
0
)
{
...
...
@@ -114,8 +116,7 @@ export default {
}
//渲染树的样式
return
h
(
"span"
,
{
"span"
,
{
on
:
{
click
:
()
=>
{
let
arrTree
=
[];
...
...
@@ -134,8 +135,7 @@ export default {
}
}),
h
(
"span"
,
{
"span"
,
{
style
:
{
color
:
data
.
isProduct
==
0
?
"#000"
:
"rgba(38, 128, 235, 1)"
}
...
...
@@ -171,7 +171,10 @@ export default {
dataTemp
.
forEach
(
data
=>
{
if
(
data
.
isProduct
==
1
&&
data
.
id
==
this
.
dep
)
{
this
.
placeholdeinfo
=
data
.
title
;
this
.
list
.
push
({
label
:
data
.
title
,
value
:
data
.
id
});
this
.
list
.
push
({
label
:
data
.
title
,
value
:
data
.
id
});
}
});
}
...
...
i18n/locale/zh-CN.js
View file @
52938112
...
...
@@ -1175,10 +1175,11 @@ export default {
code
:
'工艺文件编号'
,
productId
:
'产品id'
,
productName
:
'产品名称'
,
productBomId
:
'产品BomId'
,
drawingNo
:
'图号'
,
version
:
'版本'
,
author
:
'编制人'
,
departmentId
:
'主制车间'
,
departmentId
:
'主制车间
Id
'
,
departmentName
:
'主制车间'
,
isMain
:
'主工艺'
,
upId
:
'父工艺'
,
...
...
@@ -1188,8 +1189,8 @@ export default {
approvalStatus
:
'审批状态'
,
remark
:
'工艺说明'
,
approvalStatusRemark
:
'审批备注'
,
auditUserId1
:
'审批人'
,
auditUserId2
:
'审批人'
,
auditUserId1
:
'审批人
1
'
,
auditUserId2
:
'审批人
2
'
,
isDeleted
:
'是否删除'
,
platesnum
:
'板数'
,
isEffect
:
'有效'
,
...
...
pages/aps/ai/index.vue
View file @
52938112
...
...
@@ -6,6 +6,7 @@
<Search
/>
</
template
>
<
template
slot=
"buttons"
>
应用规则:
<Select
v-model=
"rulesAi"
multiple
style=
"width:280px;"
class=
"tl"
>
<Option
v-for=
"item in rulesAiList"
:value=
"item.value"
:key=
"item.value"
>
{{
item
.
label
}}
</Option>
</Select>
...
...
pages/import/process.vue
View file @
52938112
This diff is collapsed.
Click to expand it.
pages/materiel/masterData/masterData.vue
View file @
52938112
...
...
@@ -74,12 +74,16 @@ export default {
key
:
"codeRuleType"
,
title
:
"类型"
,
align
:
"center"
,
code
:
"material.code.type"
code
:
"material.code.type"
,
import
:
true
,
hide
:
true
,
},
{
key
:
"codeRuleId"
,
title
:
"编码名称"
,
materialKey
:
'3'
,
import
:
true
,
hide
:
true
,
render
:
(
h
,
params
)
=>
{
return
h
(
"span"
,
{},
...
...
@@ -92,6 +96,8 @@ export default {
title
:
"大类"
,
align
:
"right"
,
materialKey
:
'1'
,
import
:
true
,
hide
:
true
,
render
:
(
h
,
params
)
=>
{
return
h
(
"span"
,
{},
...
...
@@ -104,6 +110,8 @@ export default {
title
:
"子类"
,
align
:
"right"
,
materialKey
:
'2'
,
import
:
true
,
hide
:
true
,
render
:
(
h
,
params
)
=>
{
return
h
(
"span"
,
{},
...
...
pages/technology/add.vue
View file @
52938112
<
template
>
<Form
ref=
"form"
:model=
"entity"
:rules=
"rules"
:label-width=
"110"
>
<Form
ref=
"form"
:model=
"entity"
:rules=
"rules"
:label-width=
"110"
>
<Row>
<!--
<Col
:span=
"12"
>
<FormItem
:label=
"l('classId')"
prop=
"classId"
>
...
...
@@ -52,7 +52,7 @@
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('departmentName')"
prop=
"departmentId"
>
<departmentSelect
v-model=
"entity.departmentId"
type=
"3"
@
on-change=
"departChange"
></departmentSelect>
<departmentSelect
v-model=
"entity.departmentId"
:
type=
"3"
@
on-change=
"departChange"
></departmentSelect>
</FormItem>
</Col>
<Col
:span=
"8"
>
...
...
@@ -151,9 +151,11 @@
<Button
type=
"primary"
@
click=
"handleSubmit"
:disabled=
"disabled"
>
保存
</Button>
<Button
@
click=
"handleClose"
class=
"ml20"
>
取消
</Button>
</FormItem>
</Form>
</Form>
</
template
>
<
script
>
<
script
>
import
Api
from
"./api"
;
import
ApiWorkflow
from
"../workflow/process/api"
;
import
iQuill
from
"@/components/quill"
;
...
...
@@ -197,16 +199,22 @@ export default {
fileId
:
""
},
rules
:
{
name
:
[{
required
:
true
,
message
:
"必填"
,
trigger
:
"blur"
}],
code
:
[{
required
:
true
,
message
:
"必填"
,
trigger
:
"blur"
}],
routingType
:
[
{
name
:
[{
required
:
true
,
message
:
"必填"
,
trigger
:
"blur"
}],
code
:
[{
required
:
true
,
message
:
"必填"
,
trigger
:
"blur"
}],
routingType
:
[{
required
:
true
,
message
:
"请选择工艺类型"
,
trigger
:
"change"
,
type
:
"number"
}
]
}]
},
parms
:
{
app
:
"technology"
,
...
...
@@ -328,7 +336,9 @@ export default {
}
},
load
(
v
)
{
Api
.
get
({
id
:
v
}).
then
(
r
=>
{
Api
.
get
({
id
:
v
}).
then
(
r
=>
{
this
.
entity
=
r
.
result
;
this
.
entity
.
isEffect
=
parseInt
(
r
.
result
.
isEffect
);
this
.
entity
.
id
=
0
;
...
...
@@ -336,7 +346,10 @@ export default {
this
.
getCodNumber
();
},
getCodNumber
()
{
Api
.
getCodeNumber
({
code
:
"GY"
,
count
:
"1"
}).
then
(
r
=>
{
Api
.
getCodeNumber
({
code
:
"GY"
,
count
:
"1"
}).
then
(
r
=>
{
if
(
r
.
success
)
{
this
.
entity
.
code
=
r
.
result
[
0
];
}
else
{
...
...
pages/technology/details/routingsupporting/api.js
View file @
52938112
...
...
@@ -27,4 +27,8 @@ export default {
getmaterialids
(
params
)
{
return
Api
.
get
(
`
${
technologyUrl
}
productinfo/getmaterialids`
,
params
);
},
//获取所有工艺规程
getRoutingheaderList
(
params
)
{
return
Api
.
post
(
`
${
technologyUrl
}
routingheader/list`
,
params
);
},
}
pages/technology/details/routingsupporting/index.vue
View file @
52938112
...
...
@@ -16,11 +16,13 @@
</
template
>
<
template
slot=
"buttons"
>
<Button
type=
"primary"
@
click=
"add"
v-show=
"headerStatus==0||headerStatus==4"
>
新增
</Button>
<Button
@
click=
"openModalIm"
>
导入
</Button>
</
template
>
</DataGrid>
<Modal
v-model=
"modal"
:title=
"title"
width=
"1200"
footer-hide
>
<component
:is=
"detail"
:eid=
"curId"
:headid=
"hid"
:productBomId=
"productBomId"
@
on-close=
"cancel"
@
on-ok=
"ok"
/>
</Modal>
<ImportExcel
ref=
"importExcel"
@
on-get-data=
"getData"
:modalTitle=
"temTitle"
:columns=
"columns"
:open=
"ModalIm"
@
on-cancel=
"ModalImCancel"
@
on-ok=
"ok"
/>
</div>
</template>
...
...
@@ -56,7 +58,9 @@ export default {
detail
:
null
,
curId
:
0
,
hid
:
0
,
columns
:
[{
columns
:
[
{
key
:
"routingDetailNo"
,
title
:
this
.
l
(
"routingDetailNo"
),
align
:
"left"
,
...
...
@@ -64,12 +68,31 @@ export default {
width
:
100
,
sortable
:
true
},
{
key
:
"routingHeaderId"
,
title
:
this
.
l
(
"routingHeaderName"
),
hide
:
true
,
import
:
true
,
techKey
:
'1'
,
render
:
(
h
,
params
)
=>
{
return
h
(
"span"
,
{},
this
.
getRoutingHeaderName
(
params
.
row
.
routingHeaderId
)
);
}
},
{
key
:
"routingDetailName"
,
title
:
this
.
l
(
"routingDetailName"
),
align
:
"left"
,
high
:
true
},
{
key
:
"routingDetailId"
,
title
:
this
.
l
(
"routingDetailId"
),
hide
:
true
,
import
:
true
,
},
{
key
:
"quantity"
,
title
:
this
.
l
(
"quantity"
),
...
...
@@ -93,6 +116,13 @@ export default {
easy
:
true
,
high
:
true
},
{
key
:
"materialId"
,
title
:
this
.
l
(
"materialId"
),
align
:
"left"
,
hide
:
true
,
import
:
true
},
{
key
:
"nameMaterial"
,
title
:
this
.
l
(
"nameMaterial"
),
...
...
@@ -229,6 +259,9 @@ export default {
],
headerStatus
:
-
1
,
productBomId
:
-
1
,
ModalIm
:
false
,
temTitle
:
"工艺Bom"
,
routingHeaderData
:
[],
};
},
created
()
{
...
...
@@ -243,6 +276,7 @@ export default {
},
mounted
()
{
console
.
log
(
this
);
this
.
getRoutingHeaderData
();
this
.
search
();
},
async
fetch
({
...
...
@@ -298,6 +332,81 @@ export default {
this
.
curId
=
0
;
this
.
modal
=
false
;
},
//批量导入start
//导入功能
openModalIm
()
{
this
.
ModalIm
=
true
},
ModalImCancel
()
{
this
.
ModalIm
=
false
},
getData
(
val
)
{
let
url
=
`
${
technologyUrl
}
productinfoimportservice/import`
;
this
.
$refs
.
importExcel
.
deelData
(
url
,
this
.
cols
,
this
.
formatMethod
(
val
))
},
//根据页面二次处理数据
formatMethod
(
val
)
{
// alert(JSON.stringify(val))
let
tempData
=
this
.
$u
.
clone
(
val
);
let
tempList
=
[];
tempData
.
forEach
((
ele
)
=>
{
let
obj
=
{
routingHeaderId
:
Number
(
this
.
headerid
),
routingDetailId
:
ele
.
routingDetailId
?
Number
(
ele
.
routingDetailId
)
:
null
,
routingDetailNo
:
ele
.
routingDetailNo
?
Number
(
ele
.
routingDetailNo
)
:
null
,
routingDetailName
:
ele
.
routingDetailName
?
ele
.
routingDetailName
:
''
,
routingStepId
:
0
,
quantity
:
ele
.
quantity
?
Number
(
ele
.
quantity
)
:
0
,
materialId
:
ele
.
materialId
?
ele
.
materialId
:
''
,
materialType
:
ele
.
materialType
?
Number
(
ele
.
materialType
)
:
''
,
materialNumber
:
ele
.
materialNumber
?
ele
.
materialNumber
:
''
,
nameMaterial
:
ele
.
nameMaterial
?
ele
.
nameMaterial
:
''
,
brand
:
ele
.
brand
?
ele
.
brand
:
''
,
specifications
:
ele
.
specifications
?
ele
.
specifications
:
''
,
xhgg
:
ele
.
xhgg
?
ele
.
xhgg
:
''
,
texture
:
ele
.
texture
?
ele
.
texture
:
''
,
procurementStandards
:
ele
.
procurementStandards
?
ele
.
procurementStandards
:
''
,
qualityGrade
:
ele
.
qualityGrade
?
ele
.
qualityGrade
:
''
,
state
:
null
,
extend
:
""
,
remark
:
""
,
drawNum
:
ele
.
drawNum
?
ele
.
drawNum
:
''
};
if
(
ele
.
routingDetailId
&&
ele
.
routingDetailId
!=
null
)
{
obj
.
ico
=
false
}
else
{
obj
.
ico
=
true
}
tempList
.
push
(
obj
);
});
return
tempList
},
//批量导入end
//工艺规程id和name之间的转换
//获取工艺规程信息
getRoutingHeaderData
()
{
let
data
=
{
conditions
:
[]
};
Api
.
getRoutingheaderList
(
data
).
then
((
r
)
=>
{
if
(
r
.
success
)
{
this
.
routingHeaderData
=
r
.
result
||
[]
}
});
},
//根据工艺规程ID获得name
getRoutingHeaderName
(
val
)
{
let
routingHeaderDataList
=
this
.
$u
.
clone
(
this
.
routingHeaderData
)
let
routingHeaderName
=
""
routingHeaderDataList
.
forEach
(
ele
=>
{
if
(
ele
.
id
==
Number
(
val
))
{
routingHeaderName
=
ele
.
name
}
})
return
routingHeaderName
},
l
(
key
)
{
let
vkey
=
"routingsupporting"
+
"."
+
key
;
return
this
.
$t
(
vkey
)
||
key
;
...
...
pages/technology/index.vue
View file @
52938112
This diff is collapsed.
Click to expand it.
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