初始化
This commit is contained in:
192
pages/materialManagement/preparationByPlan/addTask/addTask.vue
Normal file
192
pages/materialManagement/preparationByPlan/addTask/addTask.vue
Normal file
@@ -0,0 +1,192 @@
|
||||
<template>
|
||||
<view>
|
||||
<uni-card>
|
||||
<text>{{ '线别:' + lineCode }}</text>
|
||||
<ScanInput @scanConfirm="scanConfirm" placeholder="扫码或输入零件号"></ScanInput>
|
||||
</uni-card>
|
||||
<scroll-view class="scroll-view" scroll-y="true">
|
||||
<uni-card v-for="(item, index) in materialList" :key="index" :title="item.title">
|
||||
<uni-forms ref="formRef" :modelValue="item">
|
||||
<uni-forms-item label="已扫箱" required name="cases">
|
||||
<uni-easyinput type="number" :clearable="false" v-model.number="item.cases" />
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="零件数" required name="quantity">
|
||||
<uni-easyinput type="number" :clearable="false" v-model.number="item.quantity" />
|
||||
</uni-forms-item>
|
||||
</uni-forms>
|
||||
<uni-row :gutter="40">
|
||||
<uni-col :span="12">
|
||||
<!-- <span>{{item.title}}</span> -->
|
||||
<button type="default" @click="refreshButton(index)">复原</button>
|
||||
</uni-col>
|
||||
<uni-col :span="12">
|
||||
<button type="warn" @click="deleteButton(index)">删除</button>
|
||||
</uni-col>
|
||||
</uni-row>
|
||||
</uni-card>
|
||||
</scroll-view>
|
||||
<view class="bottom-box">
|
||||
<uni-row :gutter="20">
|
||||
<uni-col :span="12">
|
||||
<button type="default" @click="clear">清空</button>
|
||||
</uni-col>
|
||||
<uni-col :span="12">
|
||||
<button type="primary" @click="submit()">提交</button>
|
||||
</uni-col>
|
||||
</uni-row>
|
||||
</view>
|
||||
<uni-popup ref="popup1" type="dialog" :mask-click="false">
|
||||
<uni-popup-dialog mode="base" type="error" :title="popupData.title"></uni-popup-dialog>
|
||||
</uni-popup>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { analysisScanCode } from '@/api/scan/index';
|
||||
import { generateIngredientTaskByline, checkMaterialIsInDateAndLine } from '@/api/preparationTask/index.js';
|
||||
import { warn } from 'vue';
|
||||
export default {
|
||||
onLoad: function (option) {
|
||||
this.lineCode = option.lineCode;
|
||||
this.dateTime = option.dateTime;
|
||||
this.$nextTick(() => {});
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
formRef: null,
|
||||
lineCode: '',
|
||||
dateTime: this.$dayjs().format('YYYY-MM-DD'),
|
||||
clearMaterialList: [],
|
||||
materialList: [],
|
||||
popupData: {
|
||||
title: ''
|
||||
}
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
// 扫码结果
|
||||
scanConfirm(val) {
|
||||
analysisScanCode({ materialCode: val }).then((res) => {
|
||||
if (res.code === 200) {
|
||||
const _data = res.data;
|
||||
let options = {
|
||||
title: `${_data.partnumber} ${_data.materialName}`,
|
||||
materialCode: _data.partnumber,
|
||||
materialName: _data.materialName,
|
||||
specification: _data.specification,
|
||||
color: _data.color,
|
||||
unit: _data.unit,
|
||||
cases: 1,
|
||||
quantity: 0
|
||||
};
|
||||
let _index = this.hasMaterial(options.materialCode);
|
||||
if (_index === -1) {
|
||||
this.materialList.push(options);
|
||||
} else {
|
||||
this.materialList[_index].cases += 1;
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
// 是否已存在此零件
|
||||
hasMaterial(materialCode) {
|
||||
let index = 0;
|
||||
const list = this.materialList;
|
||||
for (index; index < list.length; index++) {
|
||||
if (list[index].materialCode === materialCode) {
|
||||
return index;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
},
|
||||
clear() {
|
||||
this.materialList = JSON.parse(JSON.stringify(this.clearMaterialList));
|
||||
},
|
||||
async submit() {
|
||||
if (!this.formValidate()) {
|
||||
return;
|
||||
}
|
||||
// ====== 检查是否有物料需求 ========
|
||||
// uni.showLoading({
|
||||
// title:'物料校验中'
|
||||
// })
|
||||
// const _strList = this.materialList.map((item) => {
|
||||
// return item.materialCode;
|
||||
// });
|
||||
// const checkData = {
|
||||
// matetialCodeArray: _strList,
|
||||
// lineCode: this.lineCode,
|
||||
// handelDate: this.dateTime
|
||||
// };
|
||||
// const checkRes = await checkMaterialIsInDateAndLine(checkData)
|
||||
// if (checkRes.code === 200 && checkRes.data.length > 0) {
|
||||
// this.popupData.title =
|
||||
// checkRes.data.map((item) => {
|
||||
// return item.matetialCode + '\n';
|
||||
// }) + '零件不在此产线今日工单中,请删除!';
|
||||
// this.$refs.popup1.open();
|
||||
// uni.hideLoading();
|
||||
// return false;
|
||||
// }
|
||||
// uni.hideLoading();
|
||||
// ==== 校验结束 ========
|
||||
const postData = {
|
||||
Ingredient_task: this.materialList,
|
||||
lineCode: this.lineCode,
|
||||
HandleDate: this.dateTime
|
||||
};
|
||||
generateIngredientTaskByline(postData).then((res) => {
|
||||
if (res.code === 200) {
|
||||
uni.showToast({
|
||||
icon: 'success',
|
||||
title: '提交成功'
|
||||
});
|
||||
this.clear();
|
||||
}
|
||||
});
|
||||
},
|
||||
refreshButton(index) {
|
||||
this.materialList[index].cases = 1;
|
||||
this.materialList[index].quantity = 0;
|
||||
},
|
||||
deleteButton(index) {
|
||||
this.materialList.splice(index, 1);
|
||||
},
|
||||
// 手动校验
|
||||
formValidate() {
|
||||
const _list = this.materialList;
|
||||
uni.showLoading({
|
||||
title: '校验中'
|
||||
});
|
||||
if (_list.length === 0) {
|
||||
uni.hideLoading();
|
||||
uni.showToast({
|
||||
icon: 'none',
|
||||
title: '无零件'
|
||||
});
|
||||
|
||||
return false;
|
||||
}
|
||||
for (let item of _list) {
|
||||
if (item.quantity === 0 || item.quantity === '') {
|
||||
uni.hideLoading();
|
||||
uni.showToast({
|
||||
icon: 'none',
|
||||
title: item.materialCode + '零件号不可为0或空'
|
||||
});
|
||||
return false;
|
||||
}
|
||||
}
|
||||
uni.hideLoading();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.scroll-view {
|
||||
height: 960rpx;
|
||||
padding-bottom: 40rpx;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user