You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
324 lines
8.0 KiB
324 lines
8.0 KiB
<template>
|
|
<lay-form :model="dataInfo" class="dataInfo">
|
|
<lay-form-item label="选择模式" prop="FCreateFactoryID" required label-width="120" style="margin-bottom:30px;">
|
|
<lay-select v-model="dataInfo.FCreateFactoryID" placeholder="请选择">
|
|
<lay-select-option v-for="(fIdv, fIdx) in factoryLists" key="fIdx" :value="fIdv.FID" :label="fIdv.FName"></lay-select-option>
|
|
</lay-select>
|
|
<p class="note">注:模式必选,通过模式确认视图类型</p>
|
|
</lay-form-item>
|
|
|
|
<lay-form-item label="请选择物料名称" prop="FFormulaName" required label-width="120" style="margin-bottom:30px;">
|
|
<lay-select v-model="dataInfo.FCreateFactoryID" placeholder="请选择">
|
|
<lay-select-option v-for="(fIdv, fIdx) in factoryLists" key="fIdx" :value="fIdv.FID" :label="fIdv.FName"></lay-select-option>
|
|
</lay-select>
|
|
<p class="note">注:检索该模式下的所有物料</p>
|
|
</lay-form-item>
|
|
<lay-form-item v-if="dataList.length > 0">
|
|
<lay-table height="200px" :columns="dataColumn" v-model:selected-key="selectedKey" id="FID"
|
|
:dataSource="dataList" :page="dataList.length > 0 ? pageInfo : null" @change="changePage">
|
|
</lay-table>
|
|
</lay-form-item>
|
|
</lay-form>
|
|
<div v-if="showButton" style="text-align: center;">
|
|
<lay-form-item>
|
|
<lay-button type="normal" @click="submitClick(true)">确认</lay-button>
|
|
<lay-button @click="cancelClick">取消</lay-button>
|
|
</lay-form-item>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.dataInfo {
|
|
max-width: 90%;
|
|
height: 600px;
|
|
margin: 30px auto;
|
|
padding-right: 30px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.search-btn2 {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.note2 {
|
|
display: inline-block;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.note3 {
|
|
display: inline-flex;
|
|
line-height: 38px;
|
|
margin-left: 12px;
|
|
}
|
|
|
|
.note2,
|
|
.note {
|
|
color: #999;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.note {
|
|
margin-top: 4px;
|
|
position: absolute;
|
|
left: 0;
|
|
}
|
|
|
|
.note .layui-form-radio,
|
|
.note .layui-form-radio i {
|
|
margin: 0 1px 0 0;
|
|
padding: 0;
|
|
font-size: 14px;
|
|
margin-top: -2px;
|
|
line-height: 0;
|
|
}
|
|
|
|
.FSearchName {
|
|
color: var(--global-primary-color)
|
|
}
|
|
</style>
|
|
<script>
|
|
import {
|
|
ref,
|
|
watch
|
|
} from 'vue';
|
|
import {
|
|
getDataCode,
|
|
getPageList,
|
|
getBasicList,
|
|
insertDataInfo,
|
|
updateDataInfo,
|
|
getDataModel
|
|
} from "/src/api/api/common";
|
|
import {
|
|
getFactoryList
|
|
} from "/src/api/api/factory";
|
|
|
|
export default {
|
|
setup() {
|
|
const dataInfo = ref({
|
|
FMaterialType: "ZMAT",
|
|
FWeightUnit: "KG"
|
|
});
|
|
const formulaList = ref([]);
|
|
const seletList = ref([
|
|
[],
|
|
[]
|
|
]);
|
|
const typeList = ref([]);
|
|
|
|
let dataColumn = [{
|
|
type: "radio"
|
|
}, {
|
|
title: "物料号",
|
|
key: "FName"
|
|
},
|
|
{
|
|
title: "试验号",
|
|
key: "FTestCode"
|
|
},
|
|
{
|
|
title: "物料描述",
|
|
key: "FTypeName",
|
|
width: "110px"
|
|
},
|
|
{
|
|
title: "产品分类",
|
|
key: "FVersionCode"
|
|
}
|
|
];
|
|
dataColumn.forEach((item) => {
|
|
item.align = "center";
|
|
});
|
|
const pageInfo = ref({
|
|
total: 0,
|
|
limit: 5,
|
|
current: 1
|
|
});
|
|
const dataList = ref([]);
|
|
const selectedKey = ref("");
|
|
watch(selectedKey, function () {
|
|
const chose = dataList.value.find(s => s.FID == selectedKey.value) || null;
|
|
if (chose != null) {
|
|
dataInfo.value.FFormulaName = chose.FName + "+" + chose.FTestCode + "+" + chose.FVersionCode;
|
|
dataInfo.value.FFormulaID = chose.FID;
|
|
dataInfo.value.FVersionCode = chose.FVersionCode;
|
|
dataInfo.value.FFormulaTestCode = chose.FTestCode;
|
|
}
|
|
});
|
|
|
|
const showEditBox = ref(false);
|
|
const showButton = ref(true);
|
|
const saleList = ref([]);
|
|
const factoryLists = ref([]);
|
|
const factoryValue=ref(null);
|
|
return {
|
|
dataInfo,
|
|
formulaList,
|
|
seletList,
|
|
typeList,
|
|
dataColumn,
|
|
dataList,
|
|
pageInfo,
|
|
selectedKey,
|
|
showEditBox,
|
|
showButton,
|
|
saleList,
|
|
factoryLists,
|
|
factoryValue
|
|
}
|
|
},
|
|
props: {
|
|
dataInfoObj: {
|
|
type: Object,
|
|
default: () => { },
|
|
}
|
|
},
|
|
mounted() {
|
|
//其他地方过来获取数据
|
|
if (this.dataInfoObj && this.dataInfoObj.FTeamID) {
|
|
this._getTeamData(this.dataInfoObj.FTeamID);
|
|
this.showButton = this.dataInfoObj.FCanEdit != 2
|
|
}
|
|
this._getSelectList();
|
|
this._getFactoryList();
|
|
},
|
|
methods: {
|
|
cancelClick(isFirst) {
|
|
this.$emit('cancelClick', isFirst ? isFirst : false);
|
|
},
|
|
async _getFactoryList() {
|
|
this.factoryLists = await getFactoryList() || [];
|
|
},
|
|
async _getTeamData(dataId) {
|
|
let result = await getDataModel({
|
|
FID: dataId,
|
|
FKey: "FID,FTestCode,FWeightUnit,FSaleCode,FMaterialType,FMaterialGroup,FFormulaTestCode,FFormulaName,FFormulaID,FPackCode,FCreateFactoryID"
|
|
}, "Teamwork");
|
|
this.dataInfo = result || this.dataInfo;
|
|
},
|
|
async _getSelectList() {
|
|
let result = await getDataCode({
|
|
FType: '1,2'
|
|
});
|
|
this.seletList[0] = result.FType1 || [];
|
|
this.seletList[1] = result.FType2 || [];
|
|
this.typeList = await getBasicList(37) || [];
|
|
this._getPageList();
|
|
},
|
|
async _inputSaleCode(val) {
|
|
let pData = {
|
|
FPageIndex: 1,
|
|
FPageSize: 10,
|
|
FName: val || ""
|
|
};
|
|
this.saleList = [];
|
|
if (pData.FName != "") {
|
|
let result = await getPageList(pData, "Material");
|
|
this.saleList = result.Data.List || [];
|
|
}
|
|
},
|
|
//配方检索
|
|
_searchPageList(value) {
|
|
this._getPageList(true);
|
|
},
|
|
//配方翻页
|
|
changePage(obj) {
|
|
this.pageInfo.current = obj.current;
|
|
this.pageInfo.limit = obj.limit;
|
|
this._getPageList();
|
|
},
|
|
//配方接口
|
|
async _getPageList(isFirst) {
|
|
if (isFirst) {
|
|
this.pageInfo.current = 1;
|
|
this.pageInfo.total = 0;
|
|
}
|
|
let postData = {
|
|
FPageIndex: this.pageInfo.current,
|
|
FPageSize: this.pageInfo.limit
|
|
}
|
|
let search = this.dataInfo.FSearchName;
|
|
if (search && search != "") {
|
|
postData.Or_FPlmCode = postData.Or_FTestCode = postData.Or_FName = postData.Or_FVersionCode =
|
|
search;
|
|
}
|
|
let result = await getPageList(postData, "Formula");
|
|
result.Data.List = result.Data.List || [];
|
|
result.Data.List.forEach((item) => {
|
|
let type = this.typeList.find(s => s.FValue == item.FType);
|
|
item.FTypeName = type == null ? item.FType : type.FName;
|
|
if (this.dataInfo.FFormulaID == item.FID) this.selectedKey = item.FID
|
|
});
|
|
this.pageInfo.total = result.Data.Total || 0;
|
|
this.dataList = result.Data.List;
|
|
},
|
|
//数据-验证
|
|
async submitClick(isCreate) {
|
|
let postData = this.dataInfo;
|
|
postData.FSaleCode = (postData.FSaleCode || "").trim();
|
|
postData.FTestCode = (postData.FTestCode || "").trim();
|
|
postData.FMaterialGroup = (postData.FMaterialGroup || "").trim();
|
|
postData.FWeightUnit = (postData.FWeightUnit || "").trim();
|
|
postData.FFormulaName = (postData.FFormulaName || "").trim();
|
|
postData.FCreateFactoryID=(postData.FCreateFactoryID==-1?"":postData.FCreateFactoryID);
|
|
for (let key in postData) {
|
|
if (postData[key] == "") return false;
|
|
}
|
|
// let indexs = [postData.FSaleCode.indexOf("-"), postData.FSaleCode.indexOf("@")];
|
|
// if (indexs[0] == -1 || indexs[1] == -1 || indexs[1] - indexs[0] < 2) {
|
|
// layer.msg('必须要输入包材代码')
|
|
// return false;
|
|
// }
|
|
postData.FState = isCreate ? 1 : 0;
|
|
postData = JSON.parse(JSON.stringify(postData));
|
|
if (postData.FTestCode != postData.FFormulaTestCode) {
|
|
this.sureTextCode(postData);
|
|
return false;
|
|
}
|
|
this._postTermData(postData);
|
|
},
|
|
//数据-确认
|
|
sureTextCode(postData) {
|
|
let $this = this;
|
|
layer.confirm("选择的配方和订单试验号不一致,请确认使用选择的配方嘛?", {
|
|
title: "提示",
|
|
btn: [{
|
|
text: '暂时保存',
|
|
callback: function (id) {
|
|
layer.close(id);
|
|
postData["FState"] = 0;
|
|
$this._postTermData(postData);
|
|
}
|
|
},
|
|
{
|
|
text: '确认提交',
|
|
callback: function (id) {
|
|
layer.close(id);
|
|
postData["FState"] = 1;
|
|
$this._postTermData(postData);
|
|
}
|
|
}
|
|
]
|
|
});
|
|
},
|
|
//数据-提交
|
|
async _postTermData(postData) {
|
|
delete postData["FSearchName"];
|
|
let result = 0;
|
|
let idx = layer.load(2);
|
|
if (postData.FID && postData.FID > 0) {
|
|
result = await updateDataInfo(postData, "Teamwork") || 0;
|
|
} else {
|
|
result = await insertDataInfo(postData, "Teamwork") || 0;
|
|
}
|
|
if (result > 0) {
|
|
this.cancelClick(true);
|
|
}
|
|
layer.close(idx);
|
|
}
|
|
}
|
|
}
|
|
</script>
|