Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-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
mes
mes-ui
Commits
7285d0a6
Commit
7285d0a6
authored
Jan 22, 2024
by
鲁鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
产品主数据销售单位修改
parent
f301b884
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
494 additions
and
2 deletions
+494
-2
unit.js
src/api/mes/md/unit.js
+44
-0
index.vue
src/components/unitmeasureSelect/index.vue
+172
-0
faceColor.vue
src/views/mes/md/product/components/faceColor.vue
+0
-1
saleUnitCon.vue
src/views/mes/md/product/components/saleUnitCon.vue
+277
-0
index.vue
src/views/mes/md/product/index.vue
+1
-1
No files found.
src/api/mes/md/unit.js
0 → 100644
View file @
7285d0a6
import
request
from
'@/utils/request'
// 查询销售单位转换列表
export
function
listUnit
(
query
)
{
return
request
({
url
:
'/md/unit/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询销售单位转换详细
export
function
getUnit
(
id
)
{
return
request
({
url
:
'/md/unit/'
+
id
,
method
:
'get'
})
}
// 新增销售单位转换
export
function
addUnit
(
data
)
{
return
request
({
url
:
'/md/unit'
,
method
:
'post'
,
data
:
data
})
}
// 修改销售单位转换
export
function
updateUnit
(
data
)
{
return
request
({
url
:
'/md/unit'
,
method
:
'put'
,
data
:
data
})
}
// 删除销售单位转换
export
function
delUnit
(
id
)
{
return
request
({
url
:
'/md/unit/'
+
id
,
method
:
'delete'
})
}
src/components/unitmeasureSelect/index.vue
0 → 100644
View file @
7285d0a6
<
template
>
<el-dialog
title=
"计量单位选择"
v-if=
"showFlag"
:visible
.
sync=
"showFlag"
:modal=
false
width=
"80%"
center
>
<el-row
:gutter=
"20"
>
<!--计量单位数据-->
<el-col
:span=
"20"
:xs=
"24"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"单位编码"
prop=
"measureCode"
>
<el-input
v-model=
"queryParams.measureCode"
placeholder=
"请输入单位编码"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"单位名称"
prop=
"measureName"
>
<el-input
v-model=
"queryParams.measureName"
placeholder=
"请输入单位名称"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
</el-form-item>
</el-form>
<el-table
v-loading=
"loading"
:data=
"unitmeasureList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
label=
"单位编码"
align=
"center"
prop=
"measureCode"
/>
<el-table-column
label=
"单位名称"
align=
"center"
prop=
"measureName"
/>
<el-table-column
label=
"是否是主单位"
align=
"center"
prop=
"primaryFlag"
>
<template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.sys_yes_no"
:value=
"scope.row.primaryFlag"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"与主单位换算比例"
align=
"center"
prop=
"changeRate"
/>
<el-table-column
label=
"是否启用"
align=
"center"
prop=
"enableFlag"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.sys_yes_no"
:value=
"scope.row.enableFlag"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
/>
</el-table>
<pagination
v-show=
"total>0"
:total=
"total"
:page
.
sync=
"queryParams.pageNum"
:limit
.
sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
</el-col>
</el-row>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"confirmSelect"
>
确 定
</el-button>
<el-button
@
click=
"showFlag=false"
>
取 消
</el-button>
</div>
</el-dialog>
</template>
<
script
>
import
{
listUnitmeasure
}
from
"@/api/mes/md/unitmeasure"
;
export
default
{
name
:
"Unitmeasure"
,
dicts
:
[
'sys_yes_no'
],
data
()
{
return
{
showFlag
:
false
,
// 遮罩层
loading
:
true
,
// 选中数组
ids
:
[],
selectedRows
:
[],
// 非单个禁用
single
:
true
,
// 非多个禁用
multiple
:
true
,
// 显示搜索条件
showSearch
:
true
,
// 总条数
total
:
0
,
// 单位表格数据
unitmeasureList
:
[],
//主单位列表
measureOptions
:
[],
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
pageSize
:
10
,
measureCode
:
null
,
measureName
:
null
,
primaryFlag
:
null
,
primaryId
:
null
,
changeRate
:
null
,
enableFlag
:
null
},
// 表单参数
form
:
{},
// 表单校验
rules
:
{
measureCode
:
[
{
required
:
true
,
message
:
"单位编码不能为空"
,
trigger
:
"blur"
}
],
measureName
:
[
{
required
:
true
,
message
:
"单位名称不能为空"
,
trigger
:
"blur"
}
],
primaryFlag
:
[
{
required
:
true
,
message
:
"是否是主单位不能为空"
,
trigger
:
"blur"
}
],
enableFlag
:
[
{
required
:
true
,
message
:
"是否启用不能为空"
,
trigger
:
"blur"
}
],
}
};
},
created
()
{
this
.
getList
();
},
methods
:
{
/** 查询单位列表 */
getList
()
{
this
.
loading
=
true
;
listUnitmeasure
(
this
.
queryParams
).
then
(
response
=>
{
this
.
unitmeasureList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
});
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
},
/** 重置按钮操作 */
resetQuery
()
{
this
.
resetForm
(
"queryForm"
);
this
.
handleQuery
();
},
// 多选框选中数据
handleSelectionChange
(
selection
)
{
this
.
ids
=
selection
.
map
(
item
=>
item
.
measureId
)
this
.
single
=
selection
.
length
!==
1
this
.
multiple
=
!
selection
.
length
this
.
selectedRows
=
selection
;
},
//确定选中
confirmSelect
(){
if
(
this
.
ids
==
[]
||
this
.
ids
.
length
==
0
){
this
.
$notify
({
title
:
'提示'
,
type
:
'warning'
,
message
:
'请至少选择一条数据!'
});
return
;
}
this
.
$emit
(
'onSelected'
,
this
.
selectedRows
);
this
.
showFlag
=
false
;
}
}
};
</
script
>
src/views/mes/md/product/components/faceColor.vue
View file @
7285d0a6
...
@@ -239,7 +239,6 @@ export default {
...
@@ -239,7 +239,6 @@ export default {
},
},
//物料选择弹出框
//物料选择弹出框
onColorSelected
(
obj
){
onColorSelected
(
obj
){
debugger
;
this
.
form
.
itemId
=
this
.
itemId
;
this
.
form
.
itemId
=
this
.
itemId
;
if
(
obj
!=
undefined
&&
obj
!=
null
){
if
(
obj
!=
undefined
&&
obj
!=
null
){
obj
.
forEach
(
element
=>
{
obj
.
forEach
(
element
=>
{
...
...
src/views/mes/md/product/components/saleUnitCon.vue
0 → 100644
View file @
7285d0a6
<
template
>
<div
class=
"app-container"
>
<el-row
:gutter=
"10"
class=
"mb8"
>
<el-col
:span=
"1.5"
>
<el-button
type=
"primary"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
v-hasPermi=
"['md:unit:add']"
>
新增
</el-button>
<UnitmeasureSelect
ref=
"unitmeasureSelect"
@
onSelected=
"onUnitmeasureSelect"
>
</UnitmeasureSelect>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"success"
plain
icon=
"el-icon-edit"
size=
"mini"
:disabled=
"single"
@
click=
"handleUpdate"
v-hasPermi=
"['md:unit:edit']"
>
修改
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"danger"
plain
icon=
"el-icon-delete"
size=
"mini"
:disabled=
"multiple"
@
click=
"handleDelete"
v-hasPermi=
"['md:unit:remove']"
>
删除
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"warning"
plain
icon=
"el-icon-download"
size=
"mini"
@
click=
"handleExport"
v-hasPermi=
"['md:unit:export']"
>
导出
</el-button>
</el-col>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
<el-table
v-loading=
"loading"
:data=
"unitList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
label=
"销售单位编码"
align=
"center"
prop=
"unitCode"
/>
<el-table-column
label=
"销售单位名称"
align=
"center"
prop=
"unitName"
/>
<el-table-column
label=
"销售换算值"
align=
"center"
prop=
"saleConversionValue"
/>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<template
slot-scope=
"scope"
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
v-hasPermi=
"['md:unit:edit']"
>
修改
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-delete"
@
click=
"handleDelete(scope.row)"
v-hasPermi=
"['md:unit:remove']"
>
删除
</el-button>
</
template
>
</el-table-column>
</el-table>
<pagination
v-show=
"total>0"
:total=
"total"
:page
.
sync=
"queryParams.pageNum"
:limit
.
sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
<!-- 添加或修改销售单位转换对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"500px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-form-item
label=
"销售单位编码"
label-width=
"100px"
prop=
"unitCode"
>
<el-input
v-model=
"form.unitCode"
readonly
placeholder=
"请输入销售单位"
/>
</el-form-item>
<el-form-item
label=
"销售单位名称"
label-width=
"100px"
prop=
"unitName"
>
<el-input
v-model=
"form.unitName"
readonly
placeholder=
"请输入销售单位"
/>
</el-form-item>
<el-form-item
label=
"销售换算值"
label-width=
"100px"
prop=
"saleConversionValue"
>
<el-input
v-model=
"form.saleConversionValue"
placeholder=
"请输入销售换算值"
/>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</el-dialog>
</div>
</template>
<
script
>
import
{
listUnit
,
getUnit
,
delUnit
,
addUnit
,
updateUnit
}
from
"@/api/mes/md/unit"
;
import
UnitmeasureSelect
from
"@/components/unitmeasureSelect/index.vue"
;
export
default
{
name
:
"Unit"
,
components
:
{
UnitmeasureSelect
},
data
()
{
return
{
// 遮罩层
loading
:
true
,
// 选中数组
ids
:
[],
// 非单个禁用
single
:
true
,
// 非多个禁用
multiple
:
true
,
// 显示搜索条件
showSearch
:
true
,
// 总条数
total
:
0
,
// 销售单位转换表格数据
unitList
:
[],
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
pageSize
:
10
,
itemId
:
this
.
itemId
,
unitId
:
null
,
saleConversionValue
:
null
,
unitCode
:
null
,
unitName
:
null
},
// 表单参数
form
:
{},
// 表单校验
rules
:
{
itemId
:
[
{
required
:
true
,
message
:
"产品ID不能为空"
,
trigger
:
"blur"
}
],
}
};
},
props
:
{
optType
:
undefined
,
itemId
:
undefined
},
created
()
{
this
.
getList
();
},
methods
:
{
/** 查询销售单位转换列表 */
getList
()
{
this
.
loading
=
true
;
listUnit
(
this
.
queryParams
).
then
(
response
=>
{
this
.
unitList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
});
},
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
},
// 表单重置
reset
()
{
this
.
form
=
{
id
:
null
,
itemId
:
null
,
unitId
:
null
,
saleConversionValue
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
,
unitCode
:
null
,
unitName
:
null
};
this
.
resetForm
(
"form"
);
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
},
/** 重置按钮操作 */
resetQuery
()
{
this
.
resetForm
(
"queryForm"
);
this
.
handleQuery
();
},
// 多选框选中数据
handleSelectionChange
(
selection
)
{
this
.
ids
=
selection
.
map
(
item
=>
item
.
id
)
this
.
single
=
selection
.
length
!==
1
this
.
multiple
=
!
selection
.
length
},
/** 新增按钮操作 */
handleAdd
()
{
this
.
$refs
.
unitmeasureSelect
.
showFlag
=
true
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
const
id
=
row
.
id
||
this
.
ids
getUnit
(
id
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"修改销售单位转换"
;
});
},
/** 提交按钮 */
submitForm
()
{
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
this
.
form
.
id
!=
null
)
{
updateUnit
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
getList
();
});
}
else
{
addUnit
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"新增成功"
);
this
.
open
=
false
;
this
.
getList
();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
ids
=
row
.
id
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除销售单位转换编号为"'
+
ids
+
'"的数据项?'
).
then
(
function
()
{
return
delUnit
(
ids
);
}).
then
(()
=>
{
this
.
getList
();
this
.
$modal
.
msgSuccess
(
"删除成功"
);
}).
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
this
.
download
(
'md/unit/export'
,
{
...
this
.
queryParams
},
`unit_
${
new
Date
().
getTime
()}
.xlsx`
)
},
//计量单位选择弹出框
onUnitmeasureSelect
(
obj
){
this
.
form
.
itemId
=
this
.
itemId
;
if
(
obj
!=
undefined
&&
obj
!=
null
){
obj
.
forEach
(
element
=>
{
this
.
form
.
unitId
=
element
.
measureId
;
this
.
form
.
unitName
=
element
.
measureName
;
this
.
form
.
unitCode
=
element
.
measureCode
;
const
idx
=
this
.
unitList
.
findIndex
(
itm
=>
itm
.
unitId
==
element
.
measureId
)
if
(
idx
>
-
1
)
{
this
.
$modal
.
msgError
(
"新增单位失败,单位已存在"
);
return
}
addUnit
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"新增成功"
);
this
.
getList
();
});
});
}
}
}
};
</
script
>
src/views/mes/md/product/index.vue
View file @
7285d0a6
...
@@ -644,7 +644,7 @@ import {
...
@@ -644,7 +644,7 @@ import {
import
BaseInfo
from
"./components/baseInfo.vue"
;
import
BaseInfo
from
"./components/baseInfo.vue"
;
import
SpecProperty
from
"./components/specProperty.vue"
;
import
SpecProperty
from
"./components/specProperty.vue"
;
import
SaleUnit
from
"./components/saleUnit.vue"
;
import
SaleUnit
from
"./components/saleUnit
Con
.vue"
;
import
Factory
from
"./components/factory.vue"
;
import
Factory
from
"./components/factory.vue"
;
import
Customer
from
"./components/customer.vue"
;
import
Customer
from
"./components/customer.vue"
;
import
Look
from
"./components/look.vue"
;
import
Look
from
"./components/look.vue"
;
...
...
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