| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305 |
- <template>
- <div class="ele-body">
- <el-card shadow="never">
- <header-title title="基本信息">
- <el-button @click="cancel">返回</el-button>
- <el-button
- type="primary"
- @click="save"
- :loading="loading"
- v-if="type != 'detail'"
- >保存</el-button
- >
- <el-button
- type="primary"
- @click="handleReporting"
- :loading="loading"
- v-if="type != 'detail'"
- >报工完成</el-button
- >
- </header-title>
- <base-info
- ref="baseInfoRefs"
- v-if="form"
- :form="form"
- :btnType="type"
- :qualityType1="qualityType"
- @changeModel="changeModel"
- @changeNumber="changeNumber"
- @changeInspectionStandardsModel="changeInspectionStandardsModel"
- ></base-info>
- <quality-content-tabs
- ref="tabsRef"
- :type="type"
- :ids="this.$route.query.id"
- :sample-list="sampleList"
- :activeName="activeName"
- :scheme-list="schemeList"
- :loading="loading"
- :form="form"
- @handleSelectionChange="handleSelectionChange1"
- @batch-quality="batchQuality"
- @batch-dispose="batchDispose"
- @handleDetail="handleDetail"
- @inputWeight="inputWeight"
- @handleDispose="handleDispose"
- @changeSamUnit="changeSamUnit"
- @handleSample1="handleSample1"
- @handleSampleSubmit="handleSampleSubmit"
- @getConditionType="getConditionType"
- @countQualityResults="countQualityResults"
- />
- </el-card>
- <sampleListDialog
- ref="detailRef"
- @handleConfirm="handleConfirm"
- @handleDispose="handleDispose"
- ></sampleListDialog>
- <sampleDisposeDialog
- ref="disposeRef"
- @handleDisposeConfirm="handleDisposeConfirm"
- ></sampleDisposeDialog>
- </div>
- </template>
- <script>
- import baseInfo from './components/baseInfo.vue';
- // import QualityContentTabs from './components/QualityContentTabs.vue';
- import QualityContentTabs from './components/newQualityContentTabs.vue';
- import { getCode } from '@/api/login';
- import {
- save,
- update,
- getById,
- exeReportWork,
- queryQualitySamplContent,
- queryQualityTempleContent,
- queryQualityInventory
- } from '@/api/inspectionWork';
- import dictMixins from '@/mixins/dictMixins';
- // import term from './term';
- import sampleListDialog from './components/sampleListDialog.vue';
- import sampleDisposeDialog from './components/sampleDisposeDialog.vue';
- import { finishPageTab } from '@/utils/page-tab-util';
- export default {
- components: {
- baseInfo,
- QualityContentTabs,
- sampleListDialog,
- sampleDisposeDialog
- },
- mixins: [dictMixins],
- data() {
- const defaultForm = function () {
- return {
- code: '',
- qualityType: null,
- qualityModeproduceRoutingId: '',
- produceRoutingName: '',
- produceTaskId: '',
- produceTaskName: '',
- productName: '',
- productCode: '',
- batchNo: '',
- specification: '',
- modelType: '',
- brandNo: '',
- total: '',
- qualifiedNumber: '',
- noQualifiedNumber: '',
- groupId: '',
- groupName: '',
- qualityId: '',
- qualityName: '',
- qualityTime: '',
- hours: '',
- qualificationRate: '',
- noQualificationRate: '',
- totalWeight: '',
- sampleNumber: '',
- imgUrl: [],
- qualityTimeStart: '',
- qualityTimeEnd: '',
- sampleMeasureUnit: '',
- conditionType: null
- };
- };
- return {
- defaultForm,
- // 表单数据
- form: { ...defaultForm() },
- voList: [],
- // 表单验证规则
- categoryParamList: [],
- type: '',
- title: '',
- loading: false,
- tabTaskId: null,
- // activeName: '2',
- packingList: [],
- sampleList: [],
- schemeList: [],
- inventoryList: [],
- activeName: '1',
- isValid: true,
- isStatus: true,
- SampleListbyReportList: [],
- qualityTimeStart: '',
- isReportProcessProduce: false,
- addStatus: []
- };
- },
- watch: {
- '$route.query.id': {
- handler(id) {
- if (id) {
- this.getDetail();
- } else {
- this.form = { ...defaultForm() };
- }
- }
- }
- },
- created() {
- this.open();
- if (this.$route.query.id) {
- this.getDetail();
- }
- },
- methods: {
- //切换检验方式
- changeModel(val, flag) {
- this.$refs.tabsRef.tableSelClear();
- this.sampleList = [];
- this.$refs.tabsRef.tabsChange('1');
- this.$refs.tabsRef.tabsConditionType(null);
- this.form.qualityMode = val;
- //检验方式 全检
- if (this.form.qualityMode == 1) {
- this.activeName = '2';
- this.form.sampleNumber = '';
- const sData = this.$refs.tabsRef.$refs.sourceTable.getData();
- if (sData.length == 0) {
- for (let i = 0; i < sData.length; i++) {
- this.$set(sData[i], 'qualityStatus', 2);
- }
- }
- console.log(
- this.$refs.tabsRef.$refs.sourceTable.getData(),
- 'packingList'
- );
- this.getProSamList(sData);
- } else {
- this.activeName = '1';
- if (!flag) {
- this.sampleList = [];
- }
- }
- },
- //根据类型判断样品清单现实列表数据
- async getProSamList(list) {
- //生产检验
- if (this.qualityType == 2) {
- if (this.form.qualityMode != null) {
- const ProductSampleList = [];
- console.log(list, 'list');
- for (const oldItem of list) {
- const count = oldItem.measureQuantity;
- const newMeasureQuantity = oldItem.measureQuantity / count;
- const newWeight = parseFloat((oldItem.weight / count).toFixed(2));
- console.log(typeof oldItem.qualitySampleTemplateList, 'ssssss');
- // 遍历新数组设置 qualityResults 默认值
- this.schemeList.forEach((item) => {
- if (typeof item === 'object' && item !== null) {
- item.qualityResults = 1; // 设置默认值
- }
- delete item.id;
- });
- console.log(oldItem, 'oldItem');
- console.log(count, newMeasureQuantity, newWeight);
- delete oldItem.id;
- if (
- oldItem.qualitySampleTemplateList == undefined ||
- oldItem.qualitySampleTemplateList == null ||
- oldItem.qualitySampleTemplateList.length == 0
- ) {
- oldItem.qualitySampleTemplateList = JSON.parse(
- JSON.stringify(this.schemeList)
- );
- for (let i = 0; i < count; i++) {
- ProductSampleList.push({
- ...oldItem,
- measureQuantity: newMeasureQuantity,
- weight: newWeight,
- sampleCode: await this.getSampleCode(),
- qualitySampleTemplateList: JSON.parse(
- JSON.stringify(this.schemeList)
- )
- });
- }
- console.log(ProductSampleList, 'ProductSampleList');
- this.sampleList = ProductSampleList;
- const pNum = ProductSampleList.reduce((sum, item) => {
- return sum + Number(item.weight || 0);
- }, 0);
- this.form.totalWeight = parseFloat(pNum.toFixed(2));
- } else {
- for (let i = 0; i < count; i++) {
- ProductSampleList.push({
- ...oldItem,
- measureQuantity: newMeasureQuantity,
- weight: newWeight,
- sampleCode: await this.getSampleCode(),
- qualitySampleTemplateList: JSON.parse(
- JSON.stringify(oldItem.qualitySampleTemplateList)
- )
- });
- }
- console.log(ProductSampleList, 'ProductSampleList');
- this.sampleList = ProductSampleList;
- const pNum = ProductSampleList.reduce((sum, item) => {
- return sum + Number(item.weight || 0);
- }, 0);
- this.form.totalWeight = parseFloat(pNum.toFixed(2));
- }
- }
- }
- } else {
- // this.sampleList = list;
- this.sampleList = this.addStatus;
- }
- },
- //输入取样数量
- changeNumber(val) {
- if (this.form.qualityMode !== 2) {
- return;
- }
- if (val <= 0) {
- this.$refs.showPackingListTable.clearSelection();
- return;
- }
- if (this.qualityType == 2) {
- //生产检验的抽检逻辑
- if (val > this.packingList[0].measureQuantity) {
- this.$message.warning('取样数量不能大于来源清单的计量数量!');
- return;
- }
- const ProductSampleList = [];
- this.packingList.forEach((oldItem) => {
- const count = oldItem.measureQuantity;
- const newMeasureQuantity = oldItem.measureQuantity / count;
- const newWeight = parseFloat((oldItem.weight / count).toFixed(2));
- console.log(count, newMeasureQuantity, newWeight);
- delete oldItem.id;
- // 遍历新数组设置 qualityResults 默认值
- this.schemeList.forEach((item) => {
- if (typeof item === 'object' && item !== null) {
- item.qualityResults = 1; // 设置默认值
- }
- delete item.id;
- });
- for (let i = 0; i < val; i++) {
- ProductSampleList.push({
- ...oldItem,
- measureQuantity: newMeasureQuantity,
- weight: newWeight,
- qualitySampleTemplateList: JSON.parse(
- JSON.stringify(this.schemeList)
- )
- });
- }
- });
- this.sampleList = ProductSampleList;
- const pNum = ProductSampleList.reduce((sum, item) => {
- return sum + Number(item.weight || 0);
- }, 0);
- this.form.totalWeight = parseFloat(pNum.toFixed(2));
- } else {
- if (val > this.packingList.length) {
- this.$message.warning('取样数量不能大于物料明细总数!');
- return;
- }
- const rows = this.packingList.slice(0, val);
- rows.forEach((row) => {
- this.$refs.showPackingListTable.toggleRowSelection(row);
- });
- }
- },
- getNowDate() {
- let date = new Date(),
- obj = {
- year: date.getFullYear(), //获取当前月份(0-11,0代表1月)
- month: date.getMonth() + 1, //获取当前月份(0-11,0代表1月)
- strDate: date.getDate(), // 获取当前日(1-31)
- hour: date.getHours(), //获取当前小时(0 ~ 23)
- minute: date.getMinutes(), //获取当前分钟(0 ~ 59)
- second: date.getSeconds() //获取当前秒数(0 ~ 59)
- };
- Object.keys(obj).forEach((key) => {
- if (obj[key] < 10) obj[key] = `0${obj[key]}`;
- });
- return obj;
- },
- //来源清单勾选事件
- handleSelectionChange1(selection) {
- if (this.form.qualityMode === 2) {
- this.selectedList = selection;
- this.activeName = '1';
- if (this.schemeList.length == 0) {
- for (let i = 0; i < selection.length; i++) {
- this.$set(selection[i], 'qualityStatus', 2);
- // 遍历新数组设置 qualityResults 默认值
- this.schemeList.forEach((item) => {
- if (typeof item === 'object' && item !== null) {
- item.qualityResults = 1; // 设置默认值
- }
- delete item.id;
- });
- this.$set(
- selection[i],
- 'qualitySampleTemplateList',
- JSON.parse(JSON.stringify(this.schemeList))
- );
- }
- }
- // this.sampleList = selection;
- //赋值取样数量
- this.form.sampleNumber = selection.length;
- }
- },
- async open() {
- this.type = this.$route.query.type;
- this.qualityType = this.$route.query.qualityType;
- this.title =
- this.type == 'add' ? '新增' : this.type == 'edit' ? '报工' : '详情';
- if (this.type == 'add') {
- const code = await getCode('quality_work_order_code');
- this.form.code = code;
- } else {
- if (
- this.$route.query.qualityTimeStart != '' ||
- this.$route.query.qualityTimeStart != null ||
- this.$route.query.qualityTimeStart != undefined
- ) {
- this.qualityTimeStart = this.getNowTime();
- }
- }
- },
- getNowTime() {
- const nowDate = this.getNowDate();
- return (
- nowDate.year +
- '-' +
- nowDate.month +
- '-' +
- nowDate.strDate +
- ' ' +
- nowDate.hour +
- ':' +
- nowDate.minute +
- ':' +
- nowDate.second
- );
- },
- getNowTimes() {
- const nowDate = this.getNowDate();
- return nowDate.year + '-' + nowDate.month + '-' + nowDate.strDate;
- },
- async getDetail() {
- getById(this.$route.query.id).then((res) => {
- this.form = res.data;
- this.isReportProcessProduce =
- this.form.isReportProcessProduce == 1 ? true : false;
- this.tabTaskId =
- this.categoryParamList[0] && this.categoryParamList[0].id;
- if (this.form.groupId) {
- this.$nextTick(() => {
- this.$refs.baseInfoRefs?.getUserList({
- groupId: this.form.groupId
- });
- });
- }
- if (this.form.produceRoutingId) {
- this.$nextTick(() => {
- this.$refs.baseInfoRefs?.getTaskList();
- });
- }
- });
- // await this.queryQualityInventory()
- await this.queryQualityTempleContent();
- await this.queryQualitySamplContent();
- await this.getQueryQualityInventory();
- },
- // getNewData(val) {
- // console.log(val, '清单列表')
- // this.packingList = val
- // },
- // async queryQualityInventory() {
- // let res = await queryQualityInventory({ qualityWorkerId: this.$route.query.id });
- // console.log(res, '清单列表');
- // this.packingList = res;
- // },
- changeSamUnit(val) {
- this.$set(this.form, 'sampleMeasureUnit', val);
- },
- async handleSample1(val, data) {
- this.sampleList = [];
- if (this.selectedList == undefined || this.selectedList.length == 0) {
- this.activeName = '1';
- this.$message.warning('请先选择样品!');
- return;
- }
- if (val == 1) {
- this.activeName = '2';
- if (this.form.isUnpack == 1) {
- for (let i = 0; i < this.selectedList.length; i++) {
- for (let j = 0; j < this.selectedList[i].measureQuantity; j++) {
- // 不拆计算每个重量
- let newWeight = parseFloat(
- (
- this.selectedList[i].weight /
- this.selectedList[i].measureQuantity
- ).toFixed(4)
- );
- if (
- this.selectedList[i].qualitySampleTemplateList == undefined ||
- this.selectedList[i].qualitySampleTemplateList == null ||
- this.selectedList[i].qualitySampleTemplateList.length == 0
- ) {
- this.sampleList.push({
- ...this.selectedList[i],
- sampleCode: await this.getSampleCode(),
- measureQuantity: 1,
- qualitySampleTemplateList: JSON.parse(
- JSON.stringify(this.schemeList)
- ),
- weight: newWeight || 0
- });
- } else {
- this.sampleList.push({
- ...this.selectedList[i],
- sampleCode: await this.getSampleCode(),
- measureQuantity: 1,
- qualitySampleTemplateList: JSON.parse(
- JSON.stringify(
- this.selectedList[i].qualitySampleTemplateList
- )
- ),
- weight: newWeight || 0
- });
- }
- }
- }
- } else if (this.form.isUnpack == 2) {
- // 不拆计算每个重量
- let newWeight = parseFloat(
- (
- this.selectedList[0].weight /
- this.selectedList[0].measureQuantity
- ).toFixed(4)
- );
- for (let i = 0; i < this.selectedList[0].measureQuantity; i++) {
- if (
- this.selectedList[0].qualitySampleTemplateList == undefined ||
- this.selectedList[0].qualitySampleTemplateList == null ||
- this.selectedList[0].qualitySampleTemplateList.length == 0
- ) {
- this.sampleList.push({
- ...this.selectedList[0],
- sampleCode: await this.getSampleCode(),
- measureQuantity: 1,
- qualitySampleTemplateList: JSON.parse(
- JSON.stringify(this.schemeList)
- ),
- weight: newWeight || 0
- });
- } else {
- this.sampleList.push({
- ...this.selectedList[0],
- sampleCode: await this.getSampleCode(),
- measureQuantity: 1,
- qualitySampleTemplateList: JSON.parse(
- JSON.stringify(
- this.selectedList[0].qualitySampleTemplateList
- )
- ),
- weight: newWeight || 0
- });
- }
- }
- }
- //取整样=勾选数据
- // this.sampleList = this.selectedList;
- this.$message.success('取样成功!');
- } else if (val == 2) {
- console.log(data, 'datadatadatadataxiaoyang');
- }
- },
- async handleSampleSubmit(data) {
- console.log(data, 'data123确认');
- this.sampleList = [];
- if (!this.selectedList || this.selectedList.length == 0) {
- this.$message.warning('请先选择样品!');
- return;
- }
- const measureQ = data.measureQ || 1;
- const unit = data.sampleUnit;
- const sampleCount = Number(data.portion);
- console.log(measureQ, '计量数量');
- console.log(unit, '所选单位');
- console.log(sampleCount, '数量');
- try {
- if (this.isStandard1OrWeightSample()) {
- //抽检计量整样小样或者抽检计重小样
- if (!this.validateMeasureQuantity(measureQ, unit, sampleCount))
- return; //取样数量验证
- if (unit === 'KG' && !this.validateWeight(measureQ, sampleCount))
- return; // 若计量单位为重量,还需验证总重量是否足够
- await this.getNewFullSampleList(
- Math.ceil(sampleCount),
- measureQ,
- unit
- );
- } else if (this.isWeightStandardFullSample()) {
- //抽检取计重取整样
- if (!this.validateSampleCount(sampleCount)) return;
- await this.handleWeightFullSample(sampleCount);
- }
- this.activeName = '2';
- } catch (error) {
- console.error('取样处理失败:', error);
- this.$message.error('取样处理失败');
- }
- },
- //获取样品编码
- async getSampleCode() {
- return await getCode('sample_code');
- },
- async getNewSampleList(measureQ, unit, nums) {
- this.sampleList = [];
- console.log(this.selectedList, 'this.selectedList');
- if (!this.selectedList || this.selectedList.length == 0) {
- this.$message.warning('请先选择来源清单!');
- return;
- }
- this.activeName = '2';
- if (this.form.isUnpack == 1) {
- // 1 拆包 2 不拆
- let measureQuantity = 1;
- if (this.form.conditionType == 2) {
- measureQuantity = measureQ;
- }
- for (let i = 0; i < this.selectedList.length; i++) {
- if (
- this.selectedList[i].qualitySampleTemplateList == undefined ||
- this.selectedList[i].qualitySampleTemplateList == null ||
- this.selectedList[i].qualitySampleTemplateList.length == 0
- ) {
- this.sampleList.push({
- ...this.selectedList[i],
- sampleCode: await this.getSampleCode(),
- measureQuantity: measureQuantity,
- qualitySampleTemplateList: JSON.parse(
- JSON.stringify(this.schemeList)
- ),
- measureUnit: unit
- });
- } else {
- this.sampleList.push({
- ...this.selectedList[i],
- sampleCode: await this.getSampleCode(),
- measureQuantity: measureQuantity,
- qualitySampleTemplateList: JSON.parse(
- JSON.stringify(this.selectedList[i].qualitySampleTemplateList)
- ),
- measureUnit: unit
- });
- }
- }
- } else if (this.form.isUnpack == 2) {
- if (this.form.conditionType == 1) {
- measureQ = 1;
- }
- // 不拆计算每个重量
- let newWeight = parseFloat(
- (
- this.selectedList[0].weight / this.selectedList[0].measureQuantity
- ).toFixed(4)
- );
- for (let i = 0; i < nums; i++) {
- if (
- this.selectedList[0].qualitySampleTemplateList == undefined ||
- this.selectedList[0].qualitySampleTemplateList == null ||
- this.selectedList[0].qualitySampleTemplateList.length == 0
- ) {
- this.sampleList.push({
- ...this.selectedList[0],
- sampleCode: await this.getSampleCode(),
- measureQuantity: measureQ,
- qualitySampleTemplateList: JSON.parse(
- JSON.stringify(this.schemeList)
- ),
- measureUnit: unit,
- weight: newWeight || 0
- });
- } else {
- this.sampleList.push({
- ...this.selectedList[0],
- sampleCode: await this.getSampleCode(),
- measureQuantity: measureQ,
- qualitySampleTemplateList: JSON.parse(
- JSON.stringify(this.selectedList[0].qualitySampleTemplateList)
- ),
- measureUnit: unit,
- weight: newWeight || 0
- });
- // this.sampleList.push({
- // ...this.selectedList[0],
- // sampleCode: await this.getSampleCode(),
- // measureQuantity: measureQ,
- // measureUnit: unit,
- // weight: newWeight || 0,
- // });
- }
- }
- }
- // this.sampleList = this.selectedList.map(oldItem => {
- // const newItem = JSON.parse(JSON.stringify(oldItem));
- // newItem.measureQuantity = measureQ;
- // newItem.measureUnit = unit;
- // return newItem;
- // });
- this.$refs.tabsRef.tabsChange('2');
- },
- async getQueryQualityInventory() {
- const res = await queryQualityInventory({
- qualityWorkerId: this.$route.query.id,
- size: -1
- });
- if (res.list.length > 0) {
- this.inventoryList = res.list;
- }
- },
- async queryQualitySamplContent() {
- const res = await queryQualitySamplContent({
- qualityWorkerId: this.$route.query.id,
- size: 1000
- });
- let addStatus = res.list.map((item) => {
- item.isValid = true;
- item.disposeTime = item.disposeTime
- ? item.disposeTime.split(' ')[0]
- : null;
- item.sampleDate = item.sampleDate
- ? item.sampleDate.split(' ')[0]
- : null;
- return {
- ...item
- };
- });
- console.log(addStatus, '样品清单12123123');
- if (addStatus.length > 0) {
- this.sampleList = addStatus;
- this.addStatus = addStatus;
- } else {
- this.getProSamList(this.packingList);
- }
- },
- async queryQualityTempleContent() {
- const res = await queryQualityTempleContent({
- qualityWorkerId: this.$route.query.id
- });
- console.log(res, '质检方案');
- this.schemeList = res.list;
- },
- getConditionType(val) {
- this.form.conditionType = val;
- },
- /* 保存编辑 */
- save() {
- // *** 新增判断
- let flag = this.$refs.baseInfoRefs.quantityCalculation();
- if (!flag) return;
- // ***
- this.$refs.baseInfoRefs.$refs.form1.validate((valid) => {
- if (!valid) {
- return false;
- }
- // this.loading = true;
- let URL =
- this.type == 'add' ? save : this.type == 'edit' ? update : '';
- this.form.qualityTimeStart = new Date(this.qualityTimeStart);
- delete this.form['qualityTimeEnd'];
- let params = {
- ...this.form,
- sampleList: this.sampleList,
- planTemplateList: this.schemeList,
- templateList: this.schemeList,
- // qualityInventoryList: this.$refs.tabsRef.$refs.sourceTable.getData()
- qualityInventoryList: this.inventoryList
- };
- console.log(params, 'params ----');
- URL(params)
- .then((msg) => {
- this.loading = false;
- this.$message.success(msg);
- this.cancel();
- this.$emit('done');
- })
- .catch((e) => {
- this.loading = false;
- });
- });
- },
- update() {
- this.loading = true;
- this.form['status'] = 1;
- update({ ...this.form })
- .then((msg) => {
- this.loading = false;
- this.$message.success(msg);
- this.$emit('done');
- })
- .catch((e) => {
- this.loading = false;
- });
- },
- restForm() {
- this.form = { ...this.defaultForm() };
- this.$nextTick(() => {
- this.$refs.baseInfoRefs.$refs.form1.clearValidate();
- });
- },
- cancel() {
- finishPageTab();
- this.$router.go(-1);
- },
- handleDetail(index, row, type) {
- if (!this.sampleList[index] || !this.schemeList) {
- return;
- }
- const selectedData = [];
- selectedData.push(this.sampleList[index]);
- this.$refs.detailRef.openDia(
- index,
- row,
- type,
- selectedData,
- null,
- this.schemeList.toolList
- );
- },
- inputWeight(row, index) {
- console.log(row, index, '输入重量');
- // 计算所有样本的总重量
- const pNum = this.sampleList.reduce((sum, item) => {
- return sum + Number(item.weight || 0);
- }, 0);
- this.form.totalWeight = parseFloat(pNum.toFixed(2));
- },
- handleDispose(index, row, type) {
- if (!this.sampleList[index]) {
- return;
- }
- this.sampleList[index].sampleDate = this.getNowTimes();
- this.sampleList[index].disposeTime = this.getNowTimes();
- console.log(index, row, type, this.qualityType);
- this.$refs.disposeRef.openDispose(index, row, type, this.qualityType);
- },
- // 报工
- handleReporting(index, row) {
- if (this.form.qualityMode == 2 && !this.form.qualityResults) {
- this.$refs.baseInfoRefs.toggleExpand2();
- this.$message.error('请选择质检结果');
- return;
- }
- this.$refs.baseInfoRefs.$refs.form1.validate((valid) => {
- if (!valid) return false;
- this.loading = true;
- if (this.qualityType == 2 && this.isReportProcessProduce) {
- for (let i = 0; i < this.sampleList.length; i++) {
- const disposalStatus = this.sampleList[i].disposalStatus;
- if (disposalStatus == null) {
- this.loading = false;
- this.$refs.tabsRef.tabsChange('2');
- this.$message.error('请完成以下样品处置!');
- return;
- }
- }
- }
- for (let i = 0; i < this.sampleList.length; i++) {
- const qualityStatus = this.sampleList[i].qualityStatus;
- if (qualityStatus == '2') {
- this.loading = false;
- this.$refs.tabsRef.tabsChange('2');
- this.$message.error('请完成以下样品质检!');
- return;
- }
- }
- this.form.qualityTimeEnd = new Date(this.getNowTime());
- this.form.qualityTimeStart = new Date(this.qualityTimeStart);
- // if (this.form.qualityMode == 1) {
- // this.form.qualityResults = '';
- // }
- let params = {
- ...this.form,
- sampleList: this.sampleList,
- planTemplateList: this.schemeList,
- // qualityInventoryList: this.$refs.tabsRef.$refs.sourceTable.getData()
- qualityInventoryList: this.inventoryList
- };
- console.log(params, 'params');
- exeReportWork(params)
- .then((msg) => {
- this.loading = false;
- this.$message.success(msg);
- this.cancel();
- this.$emit('done');
- })
- .catch((e) => {
- this.loading = false;
- });
- });
- },
- // 处理确认事件
- handleDisposeConfirm(data, index) {
- console.log(data, index, '确认处置事件');
- if (index != null) {
- this.$set(this.sampleList, index, data);
- } else {
- this.sampleList.forEach((obj) => {
- obj.disposalStatus = data.disposalStatus;
- obj.sampleDate = data.sampleDate;
- obj.disposeTime = data.disposeTime;
- obj.sampleCondition = data.sampleCondition;
- obj.producerManufacturer = data.producerManufacturer;
- obj.samplePlace = data.samplePlace;
- obj.sampleRemark = data.sampleRemark;
- });
- }
- },
- //确认质检
- handleConfirm(list, index) {
- console.log(list);
- // 检查有效性
- // for (const item of list) {
- // for (const child of item.qualitySampleTemplateList) {
- //
- // console.log(child, 'child')
- // if (!child.qualityResultContent || !child.qualityResults) {
- // this.$message.error('请完善报工内容!');
- // return;
- // }
- // }
- // }
- console.log(list, 'listlistlistlist');
- list.forEach((item) => {
- if (item.qualitySampleTemplateList.length == 1) {
- if (
- item.qualitySampleTemplateList.some(
- (child) => child.qualityResults === 3
- )
- ) {
- // 如果质检项只有一条而且结果为让步接收那么整个就是让步接收
- item.isValid = false;
- item.qualityResults = 3;
- } else if (
- item.qualitySampleTemplateList.some(
- (child) => child.qualityResults === 2
- )
- ) {
- item.isValid = false;
- item.qualityResults = 2;
- } else {
- item.isValid = true;
- item.qualityResults = 1;
- }
- } else {
- if (
- item.qualitySampleTemplateList.some(
- (child) => child.qualityResults === 2
- )
- ) {
- item.isValid = false;
- item.qualityResults = 2;
- } else {
- item.isValid = true;
- item.qualityResults = 1;
- }
- }
- item.qualityStatus = 1;
- });
- if (index != null) {
- this.$set(this.sampleList, index, list[0]);
- } else {
- this.$set(this.sampleList, null, list);
- }
- this.activeName = '2';
- console.log(this.sampleList, '222表');
- // *** 选完批量质检调用
- this.countQualityResults();
- },
- // 批量质检
- batchQuality(index, row, type) {
- this.$refs.detailRef.openDia(
- null,
- null,
- 'report',
- this.sampleList,
- null,
- this.schemeList.toolList
- );
- },
- // 批量处置
- batchDispose() {
- this.$refs.disposeRef.openDispose(
- null,
- null,
- 'dispose',
- this.qualityType
- );
- },
- //全检,检验标准改变时,重新获取样品列表
- async changeInspectionStandardsModel(val) {
- const sData = this.$refs.tabsRef.$refs.sourceTable.getData();
- if (sData.length > 0) {
- for (let i = 0; i < sData.length; i++) {
- this.$set(sData[i], 'qualityStatus', 2);
- }
- }
- this.form.inspectionStandards = val;
- this.form.sampleNumber = '';
- this.$refs.tabsRef.tableSelClear();
- this.sampleList = [];
- this.$refs.tabsRef.tabsChange('1');
- //检验标准 2计重 1计量
- if (this.form.inspectionStandards == 2 && this.form.qualityMode == 1) {
- for (let i = 0; i < sData.length; i++) {
- let qualitySampleTemplateList = [];
- if (
- sData[i].qualitySampleTemplateList == undefined ||
- sData[i].qualitySampleTemplateList == null ||
- sData[i].qualitySampleTemplateList.length == 0
- ) {
- qualitySampleTemplateList = JSON.parse(
- JSON.stringify(this.schemeList)
- );
- } else {
- qualitySampleTemplateList = sData[i].qualitySampleTemplateList;
- }
- this.sampleList.push({
- ...sData[i],
- sampleCode: await this.getSampleCode(),
- qualitySampleTemplateList
- });
- }
- } else if (
- this.form.inspectionStandards == 1 &&
- this.form.qualityMode == 1
- ) {
- this.getProSamList(sData);
- }
- },
- //从来源数组取样到目标数组
- async getNewFullSampleList(sampleCount, sampleQuantity, sampleUnit) {
- const sourceArray = this.selectedList;
- // 检查单位是否匹配
- const isUnitMismatch =
- sourceArray.length > 0 && sourceArray[0].measureUnit !== sampleUnit;
- // 创建副本并计算初始可取样数量
- const items = sourceArray.map((item) => ({
- ...item,
- remainingQuantity: isUnitMismatch
- ? Infinity
- : item['measureQuantity'], // 剩余可取样数量
- maxPossible: item['measureQuantity'] / sampleQuantity // 最大取样次数
- }));
- const result = [];
- let remainingCount = sampleCount;
- // 尽可能均匀地从各条目取样
- while (remainingCount > 0) {
- // 按剩余可取样比例排序
- items.sort(
- (a, b) =>
- b.remainingQuantity / b['measureQuantity'] -
- a.remainingQuantity / a['measureQuantity']
- );
- let distributed = false;
- for (const item of items) {
- if (
- !isUnitMismatch ||
- (item.remainingQuantity >= sampleQuantity && remainingCount > 0)
- ) {
- let qualitySampleTemplateList = [];
- if (
- item.qualitySampleTemplateList == undefined ||
- item.qualitySampleTemplateList == null ||
- item.qualitySampleTemplateList.length == 0
- ) {
- qualitySampleTemplateList = JSON.parse(
- JSON.stringify(this.schemeList)
- );
- } else {
- qualitySampleTemplateList = item.qualitySampleTemplateList;
- }
- // 添加到结果数组
- let sampleCode = await this.getSampleCode();
- if (
- this.form.conditionType == 1 &&
- this.form.inspectionStandards == 1
- ) {
- result.push({
- ...item,
- measureQuantity: 1,
- sampleCode,
- qualitySampleTemplateList
- });
- } else if (
- this.form.conditionType == 2 &&
- (this.form.inspectionStandards == 1 ||
- this.form.inspectionStandards == 2)
- ) {
- let weight = (item.weight / item.maxPossible).toFixed(2);
- result.push({
- ...item,
- measureQuantity: sampleQuantity,
- measureUnit: sampleUnit,
- sampleCode,
- weight,
- qualitySampleTemplateList
- });
- }
- // 更新剩余数量
- if (!isUnitMismatch) {
- item.remainingQuantity -= sampleQuantity;
- }
- remainingCount--;
- distributed = true;
- }
- }
- // 如果没有分配任何取样
- if (!distributed) {
- break;
- }
- }
- this.sampleList = result;
- if (this.sampleList.length > sampleCount) {
- this.sampleList = this.sampleList.splice(0, sampleCount);
- }
- this.form.sampleNumber = this.sampleList.length;
- },
- validateWeight(measureQ, sampleCount) {
- let totalMaxPossible = 0;
- this.selectedList.forEach((item) => {
- totalMaxPossible += item.measureQuantity / measureQ;
- });
- if (totalMaxPossible < sampleCount) {
- // this.formData.portion = totalMaxPossible;
- this.$message.info(`最大取样条数为${totalMaxPossible}`);
- return false;
- }
- let totalWeight = this.selectedList.reduce(
- (sum, item) => sum + item.weight,
- 0
- );
- const weightUnit = this.selectedList[0].weightUnit;
- if (weightUnit === 'G') totalWeight /= 1000;
- if (measureQ * sampleCount > totalWeight) {
- this.$message.info('取样计量重量不能大于总计量重量');
- return false;
- }
- const invalidItem = this.selectedList.find((item) => {
- const weight =
- item.weightUnit === 'G' ? item.weight / 1000 : item.weight;
- return weight < measureQ;
- });
- if (invalidItem) {
- this.$message.info('勾选条目重量小于取样重量');
- return false;
- }
- return true;
- },
- isStandard1OrWeightSample() {
- return (
- this.form.inspectionStandards === 1 ||
- (this.form.inspectionStandards === 2 && this.form.conditionType == 2)
- );
- },
- validateMeasureQuantity(measureQ, unit, sampleCount) {
- if (this.form.conditionType == 2 && measureQ <= 0) {
- this.$message.info('取样计量数量必须大于0');
- return false;
- }
- const totalQuantity = this.selectedList.reduce(
- (sum, item) => sum + item.measureQuantity,
- 0
- );
- if (
- (this.selectedList[0].measureUnit === unit ||
- this.form.conditionType == 1) &&
- measureQ * sampleCount > totalQuantity
- ) {
- this.$message.info('取样计量数量不能大于总计量数量');
- return false;
- }
- const invalidItem = this.selectedList.find(
- (item) => item.measureQuantity < measureQ
- );
- if (invalidItem) {
- this.$message.info('条目计量数量小于取样计量数量');
- return false;
- }
- return true;
- },
- isWeightStandardFullSample() {
- return (
- this.form.inspectionStandards === 2 && this.form.conditionType == 1
- );
- },
- validateSampleCount(sampleCount) {
- const invalidItem = this.selectedList.find(
- (item) => item.measureQuantity < sampleCount
- );
- if (invalidItem) {
- this.$message.info('所选的条目计量数量小于取样计量数量');
- return false;
- }
- return true;
- },
- async handleWeightFullSample(sampleCount) {
- for (const item of this.selectedList) {
- const qualitySampleTemplateList = item.qualitySampleTemplateList
- ?.length
- ? JSON.parse(JSON.stringify(item.qualitySampleTemplateList))
- : JSON.parse(JSON.stringify(this.schemeList));
- this.sampleList.push({
- ...item,
- measureQuantity: sampleCount, //作为计量数量
- sampleCode: await this.getSampleCode(),
- qualitySampleTemplateList
- });
- }
- this.sampleNumber = this.sampleList.length;
- },
- //计算合格率
- countQualityResults() {
- let sampleList = this.sampleList; //样品清单
- let sampleNumber = this.form.total; //样品总数
- console.log(sampleList, sampleNumber, '=====');
- // let qualifiedNumber = sampleList.filter(item => item.qualityResults == 1 || item.qualityResults == 3).length;
- // let noQualifiedNumber = sampleList.filter(
- // (item) => item.qualityResults == 2
- // ).length;
- let noQualifiedNumber = sampleList.reduce((acc, pro) => {
- // console.log(acc, pro);
- // if (pro.qualityResults == 2) {
- // return acc + Number(pro.measureQuantity);
- // }
- return pro.qualityResults == 2
- ? acc + Number(pro.measureQuantity)
- : acc;
- }, 0);
- console.log(noQualifiedNumber, 'noQualifiedNumber');
- let qualifiedNumber = sampleNumber - noQualifiedNumber; //不合格数
- let qualificationRate = (
- (qualifiedNumber / sampleNumber) *
- 100
- ).toFixed(2); //合格率
- let noQualificationRate = (
- (noQualifiedNumber / sampleNumber) *
- 100
- ).toFixed(2); //不合格率
- this.$refs.baseInfoRefs.updateQualificationRate(
- qualifiedNumber,
- noQualifiedNumber,
- qualificationRate,
- noQualificationRate
- );
- }
- }
- };
- </script>
- <style lang="scss" scoped></style>
|