Commit 7285d0a6 authored by 鲁鑫's avatar 鲁鑫

产品主数据销售单位修改

parent f301b884
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'
})
}
<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>
...@@ -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 => {
......
<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>
...@@ -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/saleUnitCon.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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment