|
|
@ -62,6 +62,18 @@
|
|
|
|
>修改</el-button
|
|
|
|
>修改</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
|
|
type="success"
|
|
|
|
|
|
|
|
plain
|
|
|
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
|
|
:disabled="single"
|
|
|
|
|
|
|
|
@click="handleUpdateAttached"
|
|
|
|
|
|
|
|
v-hasPermi="['wms:attached:edit']"
|
|
|
|
|
|
|
|
>修改附属属性</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
type="danger"
|
|
|
|
type="danger"
|
|
|
@ -420,10 +432,37 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 查看物料附属信息 -->
|
|
|
|
<!-- 更新附属属性 -->
|
|
|
|
<el-dialog
|
|
|
|
<el-dialog
|
|
|
|
:title="title"
|
|
|
|
:title="title"
|
|
|
|
:visible.sync="openAttached"
|
|
|
|
:visible.sync="openAttached"
|
|
|
|
|
|
|
|
width="500px"
|
|
|
|
|
|
|
|
append-to-body
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
|
|
|
|
|
|
|
<el-form-item label="标准效率" prop="iei">
|
|
|
|
|
|
|
|
<el-input-number
|
|
|
|
|
|
|
|
v-model="form.iei"
|
|
|
|
|
|
|
|
style="width: 320px"
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item label="标准用人" prop="manStandar">
|
|
|
|
|
|
|
|
<el-input-number
|
|
|
|
|
|
|
|
v-model="form.manStandar"
|
|
|
|
|
|
|
|
style="width: 320px"
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
|
|
|
<el-button type="primary" @click="submitAttachedForm">确 定</el-button>
|
|
|
|
|
|
|
|
<el-button @click="cancelOpenAttached">取 消</el-button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 查看物料附属信息 -->
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
|
|
|
:title="title"
|
|
|
|
|
|
|
|
:visible.sync="openAttachedView"
|
|
|
|
width="1000px"
|
|
|
|
width="1000px"
|
|
|
|
append-to-body
|
|
|
|
append-to-body
|
|
|
|
>
|
|
|
|
>
|
|
|
@ -506,7 +545,7 @@
|
|
|
|
</el-descriptions>
|
|
|
|
</el-descriptions>
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
<el-button @click="cancelAttached">取 消</el-button>
|
|
|
|
<el-button @click="cancelAttachedView">取 消</el-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -519,6 +558,7 @@ import {
|
|
|
|
delProduct,
|
|
|
|
delProduct,
|
|
|
|
addProduct,
|
|
|
|
addProduct,
|
|
|
|
updateProduct,
|
|
|
|
updateProduct,
|
|
|
|
|
|
|
|
updateProductAttached,
|
|
|
|
} from "@/api/wms/product";
|
|
|
|
} from "@/api/wms/product";
|
|
|
|
import { syncProductSAP } from "@/api/technology/proroute";
|
|
|
|
import { syncProductSAP } from "@/api/technology/proroute";
|
|
|
|
|
|
|
|
|
|
|
@ -537,7 +577,7 @@ export default {
|
|
|
|
loading: true,
|
|
|
|
loading: true,
|
|
|
|
// 选中数组
|
|
|
|
// 选中数组
|
|
|
|
ids: [],
|
|
|
|
ids: [],
|
|
|
|
productCodes:[],
|
|
|
|
productCodes: [],
|
|
|
|
// 非单个禁用
|
|
|
|
// 非单个禁用
|
|
|
|
single: true,
|
|
|
|
single: true,
|
|
|
|
// 非多个禁用
|
|
|
|
// 非多个禁用
|
|
|
@ -552,6 +592,7 @@ export default {
|
|
|
|
title: "",
|
|
|
|
title: "",
|
|
|
|
// 是否显示弹出层
|
|
|
|
// 是否显示弹出层
|
|
|
|
open: false,
|
|
|
|
open: false,
|
|
|
|
|
|
|
|
openAttachedView: false,
|
|
|
|
openAttached: false,
|
|
|
|
openAttached: false,
|
|
|
|
// 查询参数
|
|
|
|
// 查询参数
|
|
|
|
queryParams: {
|
|
|
|
queryParams: {
|
|
|
@ -637,14 +678,22 @@ export default {
|
|
|
|
this.open = false;
|
|
|
|
this.open = false;
|
|
|
|
this.reset();
|
|
|
|
this.reset();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 取消按钮
|
|
|
|
// 查看取消按钮
|
|
|
|
cancelAttached() {
|
|
|
|
cancelAttachedView() {
|
|
|
|
|
|
|
|
this.openAttachedView = false;
|
|
|
|
|
|
|
|
this.reset();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
// 更新附属表取消按钮
|
|
|
|
|
|
|
|
cancelOpenAttached() {
|
|
|
|
this.openAttached = false;
|
|
|
|
this.openAttached = false;
|
|
|
|
this.reset();
|
|
|
|
this.reset();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 表单重置
|
|
|
|
// 表单重置
|
|
|
|
reset() {
|
|
|
|
reset() {
|
|
|
|
this.form = {
|
|
|
|
this.form = {
|
|
|
|
|
|
|
|
id: null,
|
|
|
|
|
|
|
|
iei: null,
|
|
|
|
|
|
|
|
manStandar: null,
|
|
|
|
productId: null,
|
|
|
|
productId: null,
|
|
|
|
productCode: null,
|
|
|
|
productCode: null,
|
|
|
|
productDescZh: null,
|
|
|
|
productDescZh: null,
|
|
|
@ -704,7 +753,7 @@ export default {
|
|
|
|
// 多选框选中数据
|
|
|
|
// 多选框选中数据
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
this.ids = selection.map((item) => item.productId);
|
|
|
|
this.ids = selection.map((item) => item.productId);
|
|
|
|
this.productCodes = selection.map(item => item.productCode)
|
|
|
|
this.productCodes = selection.map((item) => item.productCode);
|
|
|
|
this.single = selection.length !== 1;
|
|
|
|
this.single = selection.length !== 1;
|
|
|
|
this.multiple = !selection.length;
|
|
|
|
this.multiple = !selection.length;
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -724,16 +773,18 @@ export default {
|
|
|
|
this.title = "修改产品信息";
|
|
|
|
this.title = "修改产品信息";
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 查询明细按钮操作
|
|
|
|
// 查询明细按钮操作
|
|
|
|
handleView(row) {
|
|
|
|
handleView(row) {
|
|
|
|
this.reset();
|
|
|
|
this.reset();
|
|
|
|
const productId = row.productId || this.ids;
|
|
|
|
const productId = row.productId || this.ids;
|
|
|
|
getProduct(productId).then((response) => {
|
|
|
|
getProduct(productId).then((response) => {
|
|
|
|
this.form = response.data;
|
|
|
|
this.form = response.data;
|
|
|
|
this.openAttached = true;
|
|
|
|
this.openAttachedView = true;
|
|
|
|
this.title = "查看产品信息";
|
|
|
|
this.title = "查看产品信息";
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
/** 提交按钮 */
|
|
|
|
submitForm() {
|
|
|
|
submitForm() {
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
@ -754,6 +805,37 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
|
|
|
handleUpdateAttached(row) {
|
|
|
|
|
|
|
|
this.reset();
|
|
|
|
|
|
|
|
const productId = row.productId || this.ids;
|
|
|
|
|
|
|
|
getProduct(productId).then((response) => {
|
|
|
|
|
|
|
|
this.form.id = response.data.id;
|
|
|
|
|
|
|
|
this.form.iei = response.data.iei;
|
|
|
|
|
|
|
|
this.form.manStandar = response.data.manStandar;
|
|
|
|
|
|
|
|
this.openAttached = true;
|
|
|
|
|
|
|
|
this.title = "查看产品信息";
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
|
|
|
submitAttachedForm() {
|
|
|
|
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
|
|
|
|
console.log(this.form);
|
|
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
|
|
if (this.form.id != null) {
|
|
|
|
|
|
|
|
console.log(this.form);
|
|
|
|
|
|
|
|
updateProductAttached(this.form).then((response) => {
|
|
|
|
|
|
|
|
this.$modal.msgSuccess("修改产品附属信息成功");
|
|
|
|
|
|
|
|
this.openAttached = false;
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
handleDelete(row) {
|
|
|
|
handleDelete(row) {
|
|
|
|
const productIds = row.productId || this.ids;
|
|
|
|
const productIds = row.productId || this.ids;
|
|
|
@ -781,10 +863,10 @@ export default {
|
|
|
|
);
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
/**选择产品进行工艺同步**/
|
|
|
|
/**选择产品进行工艺同步**/
|
|
|
|
handleSyncProductSAP(){
|
|
|
|
handleSyncProductSAP() {
|
|
|
|
const productCodes = this.productCodes;
|
|
|
|
const productCodes = this.productCodes;
|
|
|
|
return syncProductSAP(productCodes);
|
|
|
|
return syncProductSAP(productCodes);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|