| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713 |
- <template>
- <!-- :close-on-click-modal="false" -->
- <ele-modal
- width="80vw"
- :visible.sync="visible"
- custom-class="ele-dialog-form"
- :before-close="cancel"
- :title="title"
- :maxable="true"
- >
- <div class="form-wrapper">
- <el-form
- ref="form"
- :model="form"
- :rules="rules"
- label-width="110px"
- class="formbox"
- >
- <headerTitle title="基本信息"> </headerTitle>
- <el-row :gutter="10">
- <el-col :span="6">
- <el-form-item label="计划编号:" prop="code">
- <el-input
- placeholder="计划编号"
- size="mini"
- disabled
- v-model="form.code"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="计划类型:" prop="planType">
- <el-select
- v-model="form.planType"
- style="width: 100%"
- @change="changeProduceType"
- size="mini"
- >
- <el-option
- v-for="item of planTypeList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="批次号:" prop="batchNo">
- <el-input
- placeholder="输入批次号"
- size="mini"
- v-model="form.batchNo"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="客户名称:">
- <el-input
- clearable
- v-model="form.customerName"
- style="width: calc(100% - 80px)"
- />
- <contactDialog
- style="margin-left: 3px"
- @changeParent="contactDialogSuccess"
- ></contactDialog>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="24">
- <el-col :span="6">
- <el-form-item
- label="计划开始日期:"
- label-width="110px"
- prop="startTime"
- >
- <el-date-picker
- style="width: 100%"
- size="mini"
- v-model="form.startTime"
- @change="handleStartTimeChange(form)"
- type="datetime"
- placeholder="选择日期"
- value-format="yyyy-MM-dd HH:mm:ss"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item
- label="计划结束日期:"
- label-width="110px"
- prop="endTime"
- >
- <el-date-picker
- style="width: 100%"
- size="mini"
- v-model="form.endTime"
- @change="handleEndTimeChange(form)"
- type="datetime"
- placeholder="选择日期"
- value-format="yyyy-MM-dd HH:mm:ss"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item
- label="要求完成日期:"
- label-width="110px"
- prop="reqMoldTime"
- >
- <el-date-picker
- style="width: 100%"
- size="mini"
- v-model="form.reqMoldTime"
- @change="handleCompleteChange(form)"
- type="datetime"
- placeholder="选择日期"
- value-format="yyyy-MM-dd HH:mm:ss"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- </el-row>
- <headerTitle title="产品信息"> </headerTitle>
- <el-row :gutter="24">
- <ele-pro-table
- ref="tableRef"
- :columns="columns"
- row-key="code"
- :cache-key="`ProductionPlanTable`"
- :datasource="form.productInfoList"
- border
- height="40vh"
- key="id"
- >
- <template v-slot:modelKey="{ row, $index }">
- <el-select
- clearable
- v-model="row.modelKey"
- multiple
- filterable
- allow-create
- default-first-option
- >
- <el-option
- v-for="item in modelList"
- :key="item.label"
- :value="item.label"
- :label="item.label"
- >
- </el-option>
- </el-select>
- </template>
- <template v-slot:colorKey="{ row, $index }">
- <el-select
- clearable
- v-model="row.colorKey"
- multiple
- filterable
- allow-create
- default-first-option
- >
- <el-option
- v-for="item in colorList"
- :key="item.label"
- :value="item.label"
- :label="item.label"
- >
- </el-option>
- </el-select>
- </template>
- <template v-slot:requiredFormingNum="{ row, $index }">
- <el-input
- v-model="row.requiredFormingNum"
- size="small"
- type="text"
- style="width: 100%"
- placeholder="输入要求生产数量"
- @input="(e) => handleQuantityInput(e, row)"
- ></el-input>
- <!-- placeholder="输入要求生产数量" @input="tableHandleKeyUp(row, 'sum')"></el-input> -->
- </template>
- <template v-slot:productType="{ row, $index }">
- <el-select
- v-model="row.productType"
- @change="changeProductType(row, $index)"
- :key="$index"
- >
- <el-option
- v-for="item of row.producedList"
- :key="$index + item.code"
- :label="item.name"
- :value="item.code"
- ></el-option>
- </el-select>
- </template>
- <template v-slot:bomCategoryId="{ row, $index }">
- <el-select v-model="row.bomCategoryId">
- <el-option
- v-for="item of row.bomVersionList"
- :key="item.id"
- :label="item.name + '(V' + item.versions + '.0)'"
- :value="item.id"
- @click.native="changeBomId(row, $index, item)"
- ></el-option>
- </el-select>
- </template>
- <!-- //权重等级 -->
- <template
- v-slot:weight="{ row, $index }"
- v-if="clientEnvironmentId == 4"
- >
- <el-select
- v-model="row.weight"
- style="width: 100%"
- @change="changeProduceType"
- size="mini"
- >
- <el-option
- v-for="item of weightList"
- :key="item.code"
- :label="item.name"
- :value="item.code"
- ></el-option>
- </el-select>
- </template>
- <!-- 是否开槽 -->
- <template
- v-slot:isSlotting="{ row, $index }"
- v-if="clientEnvironmentId == 4"
- >
- <el-select
- v-model="row.isSlotting"
- style="width: 100%"
- @change="changeProduceType"
- size="mini"
- >
- <el-option
- v-for="item of isSlotting"
- :key="item.code"
- :label="item.name"
- :value="item.code"
- ></el-option>
- </el-select>
- </template>
- <!-- 开槽类型 -->
- <template
- v-slot:slottingType="{ row, $index }"
- v-if="clientEnvironmentId == 4"
- >
- <DictSelection
- dictName="开槽类型"
- v-model="row.slottingType"
- size="mini"
- >
- </DictSelection>
- </template>
- <!-- 工艺路线 -->
- <template
- v-slot:produceRoutingId="{ row, $index }"
- v-if="clientEnvironmentId != 4"
- >
- <!-- <el-form-item required> -->
- <div style="display: flex">
- <el-select
- v-model="row.produceRoutingId"
- v-show="isRouteSelect(row)"
- >
- <el-option
- v-for="item of row.routingList"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- ></el-option>
- </el-select>
- <div style="display: flex">
- <el-input
- v-show="!isRouteSelect(row)"
- disabled
- v-model="row.produceRoutingName"
- ></el-input>
- <el-button
- v-show="isSelectShow"
- type="primary"
- size="mini"
- @click="openDialog($index)"
- >选择</el-button
- >
- </div>
- </div>
- <!-- </el-form-item> -->
- </template>
- <template v-slot:produceRoutingId="{ row, $index }" v-else>
- <el-input
- v-model="row.produceRoutingName"
- style="width: 100%"
- readonly
- ></el-input>
- </template>
- <template v-slot:factoriesId="{ row, $index }">
- <el-select
- v-model="row.factoriesId"
- :key="row.factoriesId"
- @change="(e) => selectFactory(e, row)"
- :disabled="factoriesId"
- >
- <el-option
- v-for="item of factoryList"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- ></el-option>
- </el-select>
- </template>
- <!-- <el-table-column label="所属工厂" width="140" align="center" prop="factoriesId">
- <template slot-scope="scope">
- <el-form-item label-width="0px">
- <el-select v-model="scope.row.factoriesId" :key="scope.row.factoriesId">
- <el-option v-for="item of factoryList" :key="item.id" :label="item.name"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </template>
- </el-table-column> -->
- <!-- 模具数量 -->
- <template
- v-slot:moCount="{ row, $index }"
- v-if="clientEnvironmentId == '4'"
- >
- <div>
- <el-input
- style="width: 100%"
- size="small"
- v-model="row.moCount"
- oninput="value=value.replace(/[^0-9.]/g,'')"
- @input="tableHandleKeyUp(row, 'moCount')"
- placeholder="请输入"
- >
- </el-input>
- </div>
- </template>
- <!-- 块数 -->
- <template
- v-slot:blockCount="{ row, $index }"
- v-if="clientEnvironmentId == '4'"
- >
- <div>
- <el-input
- size="small"
- style="width: 100%"
- @input="tableHandleKeyUp(row, 'blockCount')"
- v-model="row.blockCount"
- placeholder="请输入"
- ></el-input>
- </div>
- </template>
- <template v-slot:productWeight="{ row, $index }">
- <span>{{ row.productWeight ? row.productWeight : '-' }}</span>
- </template>
- <template v-slot:set="{ row, $index }">
- <el-button type="text" @click="handleDeleteItem($index)"
- >删除</el-button
- >
- </template>
- <template v-slot:headerProduceRoutingId="{ column }">
- <div class="header_required"
- ><span class="is-required">{{ column.label }}</span></div
- >
- </template>
- <template v-slot:headeRequiredFormingNum="{ column }">
- <div class="header_required"
- ><span class="is-required">{{ column.label }}</span></div
- >
- </template>
- <template v-slot:headerProcessingBOM="{ column }">
- <div :class="isRequired ? 'header_required' : ''"
- ><span class="is-required">{{ column.label }}</span></div
- >
- </template>
- </ele-pro-table>
- <div class="add-product" @click="addEquipment">
- <i class="el-icon-circle-plus-outline"></i>
- </div>
- </el-row>
- </el-form>
- <!-- 选择产品 -->
- <EquipmentDialog
- @choose="confirmChoose"
- :treeType="['9']"
- :selectList="[]"
- ref="equipmentRefs"
- >
- </EquipmentDialog>
- </div>
- <template v-slot:footer>
- <el-button @click="cancel">取消</el-button>
- <el-button type="primary" @click="save" :loading="loading">
- 确定
- </el-button>
- <el-button type="primary" @click="save('sub')" :loading="loading">
- 发布
- </el-button>
- </template>
- <ProcessRoute ref="processRouteRef" @changeParent="changeParent" />
- </ele-modal>
- </template>
- <script>
- import { findBomCategoryByCategoryId } from '@/api/productionPlan/index';
- import EquipmentDialog from '@/views/saleOrder/components/EquipmentDialog';
- import { getCode } from '@/api/codeManagement';
- import ProcessRoute from '@/components/selectionDialog/processRoute.vue';
- import { parameterGetByCode } from '@/api/mainData/index';
- import { getByCode } from '@/api/system/dictionary-data';
- import {
- bomRoutingList,
- bomListByPlan,
- getFactoryList,
- saveAndRelease,
- temporaryPlanSave,
- getUpdateInfoByCode
- } from '@/api/saleOrder';
- import contactDialog from '@/components/contactDialog/openContactDialog.vue';
- export default {
- components: {
- EquipmentDialog,
- ProcessRoute,
- contactDialog
- },
- props: {
- factoryType: {
- type: Number,
- default: 3
- },
- factoryObj: {
- type: Object,
- default: () => {}
- },
- isAdd: {
- type: Boolean,
- default: true
- }
- },
- watch: {
- // factoryObj: {
- // immediate: true,
- // deep: true,
- // handler(val) {
- // // 修改
- // // this.$nextTick(() => {
- // // if (val.id) {
- // // this.bomListVersion();
- // // if (val.bomCategoryId) {
- // // this.getPlanRouting();
- // // }
- // // }
- // // });
- // }
- // }
- },
- computed: {
- // 是否必填 字段 ( 首先看计划类型 如果是返工返修)
- // 就不是必填 否则就看配置参数
- // 必填的时候 不显示选择按钮 跟 展示输入框 只能有下拉选择框 ( 选择了生产类型 带出 BOM 版本 带出 工艺路线 工艺路线不能选择)
- // 不必填的时候 显示 选择按钮跟 展示输入框 并且可以存在选择框 一开始默认展示选择框
- // 选择按钮选择数据后 隐藏选择框 显示展示框(input) 情况 生产类型 跟 BOM版本
- // 选择了生产类型 清空 选择框选择的工艺路线
- // 是否必填字段
- isRequired() {
- if (this.form.planType == 5) {
- return false;
- }
- return this.processingRequired == 1;
- },
- // 工艺路线 输入框展示跟选择框判断
- isRouteSelect() {
- return (row) => {
- if (this.isRequired) {
- return true;
- }
- if (!row.selectionRowShow) {
- return true;
- }
- return false;
- };
- },
- // 选择按钮的显示
- isSelectShow() {
- if (this.form.planType == 5) {
- return true;
- }
- return this.processingRequired == 0;
- },
- // clientEnvironmentId() {
- // return this.$store.state.user.info.clientEnvironmentId;
- // },
- columns() {
- return [
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true
- },
- {
- slot: 'lineNumber',
- prop: 'lineNumber',
- label: '行号',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'productName',
- prop: 'productName',
- label: '名称',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'productCode',
- prop: 'productCode',
- label: '编码',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'brandNo',
- prop: 'brandNo',
- label: '牌号',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'model',
- prop: 'model',
- label: '型号',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'specification',
- prop: 'specification',
- label: '规格',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'productUnitWeight',
- prop: 'productUnitWeight',
- label: '单重',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'weightUnit',
- prop: 'weightUnit',
- label: '重量单位',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'modelKey',
- prop: 'modelKey',
- label: '机型',
- align: 'center',
- minWidth: 240
- },
- {
- slot: 'colorKey',
- prop: 'colorKey',
- label: '颜色',
- align: 'center',
- minWidth: 240
- },
- {
- slot: 'requiredFormingNum',
- prop: 'requiredFormingNum',
- headerSlot: 'headeRequiredFormingNum',
- label: '要求生产数量',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'measuringUnit',
- prop: 'measuringUnit',
- label: '计量单位',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'moCount',
- prop: 'moCount',
- label: '模数',
- headerSlot: 'headeRequiredFormingNum',
- align: 'center',
- minWidth: 140,
- show: this.clientEnvironmentId == 4
- },
- {
- slot: 'blockCount',
- prop: 'blockCount',
- label: '块数',
- headerSlot: 'headeRequiredFormingNum',
- align: 'center',
- minWidth: 140,
- show: this.clientEnvironmentId == 4
- },
- {
- slot: 'productType',
- prop: 'productType',
- label: '生产类型',
- headerSlot: 'headerProcessingBOM',
- align: 'center',
- minWidth: 180
- },
- {
- slot: 'bomCategoryId',
- prop: 'bomCategoryId',
- label: 'BOM版本',
- headerSlot: 'headerProcessingBOM',
- align: 'center',
- minWidth: 180,
- show: this.clientEnvironmentId !== 4
- },
- {
- slot: 'produceRoutingId',
- prop: 'produceRoutingId',
- headerSlot: 'headerProduceRoutingId',
- label: '工艺路线',
- align: 'center',
- minWidth: 240
- },
- {
- slot: 'factoriesId',
- prop: 'factoriesId',
- headerSlot: 'headerProduceRoutingId',
- label: '所属工厂',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'weight',
- prop: 'weight',
- label: '权重等级',
- align: 'center',
- minWidth: 140,
- show: this.clientEnvironmentId == 4
- },
- {
- slot: 'isSlotting',
- prop: 'isSlotting',
- label: '是否开槽',
- align: 'center',
- minWidth: 140,
- show: this.clientEnvironmentId == 4
- },
- {
- slot: 'slottingType',
- prop: 'slottingType',
- label: '开槽类型',
- align: 'center',
- minWidth: 140,
- show: this.clientEnvironmentId == 4
- },
- {
- slot: 'productWeight',
- prop: 'productWeight',
- label: '订单重量',
- align: 'center',
- minWidth: 140
- },
- {
- slot: 'set',
- prop: 'set',
- label: '操作',
- align: 'center',
- minWidth: 140,
- fixed: 'right'
- }
- ];
- }
- },
- data() {
- return {
- visible: false,
- factoriesId: '',
- clientEnvironmentId: '',
- title: '新增临时生产计划',
- type: 3,
- weightList: [
- { code: 1, name: 'A' },
- { code: 2, name: 'B' },
- { code: 3, name: 'C' }
- ],
- factoryList: [],
- isSlotting: [
- { code: 1, name: '是' },
- { code: 2, name: '否' }
- ], //是否开槽
- planTypeList: [
- { label: '内销计划', value: '1' },
- { label: '外销计划', value: '2' },
- { label: '预制计划', value: '3' },
- { label: '改型计划', value: '4' },
- { label: '返工返修计划', value: '5' }
- ],
- loading: false,
- form: {
- timeDimensionPlanType: 3,
- categoryId: '',
- productName: '',
- planType: '',
- moCount: '', // 模具数量
- blockCount: 0, // 块数
- noWordCount: '', // 无字数量
- weight: '',
- startTime: '',
- endTime: '',
- isSlotting: '', //是否开槽
- slottingType: '', //开槽类型
- id: '',
- produceType: 2,
- bomCategoryId: '',
- produceRoutingId: '',
- requiredFormingNum: '',
- productInfoList: []
- },
- disabledList: [],
- bomVersionList: [],
- routingList: [],
- rules: {
- productName: [
- { required: true, message: '请选择名称', trigger: 'change' }
- ],
- bomCategoryId: [
- { required: true, message: '请选择BOM版本', trigger: 'blur' }
- ],
- produceType: [
- { required: true, message: '请选择工艺路线', trigger: 'blur' }
- ],
- produceRoutingId: [
- { required: true, message: '请选择工艺路线', trigger: 'blur' }
- ],
- startTime: [
- { required: true, message: '请选择计划开始日期', trigger: 'blur' }
- ],
- endTime: [
- { required: true, message: '请选择计划结束日期', trigger: 'blur' }
- ],
- reqMoldTime: [
- { required: true, message: '请选择要求完成日期', trigger: 'blur' }
- ],
- requiredFormingNum: [
- { required: true, message: '请输入生产数量', trigger: 'blur' }
- ]
- },
- producedList: [
- { code: 2, name: '加工(MBOM)' },
- { code: 3, name: '装配(ABOM)' }
- ],
- selectIndex: 0, // 选择工艺路线的当前数据下标
- processingRequired: 0 // 生产类型跟BOM 版本是否必填 1:是 0:否
- // selectionRowShow: false // 工艺路线输入框展示 状态
- };
- },
- // computed: {
- // clientEnvironmentId() {
- // return this.$store.state.user.info.clientEnvironmentId;
- // }
- // },
- mounted() {
- this.getCodeData();
- // 生产类型跟BOM版本字段是否必填
- parameterGetByCode({
- code: 'production_plan_code'
- }).then((res) => {
- console.log(res, 'res 1');
- if (res) {
- this.processingRequired = res.value;
- }
- });
- },
- methods: {
- // 获取
- async getCodeData() {
- let arr1 = await this.getLevelCode('product_model_key');
- let arr2 = await this.getLevelCode('product_color_key');
- this.modelList = arr1;
- this.colorList = arr2;
- },
- async getLevelCode(code) {
- try {
- const res = await getByCode(code);
- if (res.code == 0) {
- let list = Object.values(res.data).map((el) => {
- let k = Object.keys(el)[0];
- let v = Object.values(el)[0];
- return {
- label: v,
- value: k
- };
- });
- return list;
- }
- } catch (err) {
- this.$message.error(err.message);
- }
- },
- selectFactory(e, row) {
- let data = this.factoryList.find((item) => item.id === e);
- this.$set(row, 'factoriesName', data.name);
- },
- // 打开工艺路线
- openDialog(index) {
- this.selectIndex = index;
- this.$refs.processRouteRef.open();
- },
- // 选择工艺路线
- changeParent(item) {
- let data = this.form.productInfoList[this.selectIndex];
- this.$set(data, 'bomVersionList', []);
- this.$set(data, 'bomCategoryId', '');
- this.$set(data, 'model', '');
- this.$set(data, 'routingList', []);
- this.$set(data, 'productType', '');
- this.$set(data, 'produceRoutingName', item.name);
- this.$set(data, 'produceRoutingId', item.id);
- this.$set(data, 'selectionRowShow', true);
- // this.selectionRowShow = true;
- },
- async getFactoryList() {
- this.factoryList = await getFactoryList();
- },
- async open(val) {
- await this.getFactoryList();
- this.clientEnvironmentId =
- this.$store.state.user.info.clientEnvironmentId;
- this.factoriesId = this.$store.state.user.info.factoryId;
- if (val) {
- if (val.planType == null || val.planType == 'null') {
- val.planType = '';
- }
- this.title = !val.id ? '新增临时生产计划' : '编辑临时生产计划';
- val.planType = String(val.planType);
- this.form = await getUpdateInfoByCode(val.code);
- // 修改
- if (val.id) {
- if (
- Array.isArray(val.productInfoList) &&
- val.productInfoList.length
- ) {
- this.form.productInfoList.map(async (v, index) => {
- if (!v.bomCategoryId) {
- v.productType = '';
- v.selectionRowShow = true;
- } else {
- v.selectionRowShow = false;
- }
- if (v.productType) {
- this.$set(
- this.form.productInfoList[index],
- 'bomVersionList',
- await this.bomListVersionFn(v.productType, v.categoryId)
- );
- }
- if (v.bomCategoryId) {
- this.$set(
- this.form.productInfoList[index],
- 'routingList',
- await this.changeBomIdFn(
- v.bomCategoryId,
- this.form.productInfoList[index]
- )
- );
- }
- });
- }
- // let categoryId = this.form.productInfoList[0].categoryId;
- // const res = await findBomCategoryByCategoryId(categoryId);
- let promiseAll = [];
- this.form.productInfoList.forEach(async (item) => {
- let categoryId = item.categoryId;
- promiseAll.push(findBomCategoryByCategoryId(categoryId));
- });
- const resAll = await Promise.all(promiseAll);
- console.log(this.form.productInfoList);
- this.form.productInfoList.forEach((item, index) => {
- if (resAll[index]) {
- let list = [];
- let listMap = {};
- resAll[index].map((el) => {
- if (el.bomType == '2' || el.bomType == '3') {
- console.log(listMap, 'listMap');
- if (listMap[el.bomType]) {
- listMap[el.bomType].push(el);
- } else {
- listMap[el.bomType] = [el];
- }
- }
- });
- if (listMap[2]) {
- list.push({ code: 2, name: 'MBOM' });
- }
- if (listMap[3]) {
- list.push({ code: 3, name: 'ABOM' });
- }
- if (!item.factoriesId) {
- this.$set(
- this.form.productInfoList[index],
- 'factoriesId',
- this.factoriesId
- );
- this.$set(
- this.form.productInfoList[index],
- 'factoriesName',
- this.factoryList?.find(
- (factoryData) => factoryData.id === this.factoriesId
- )?.name
- );
- }
- this.$set(
- this.form.productInfoList[index],
- 'producedList',
- list
- );
- }
- });
- }
- this.$forceUpdate();
- } else {
- this.title = '新增临时生产计划';
- }
- this.visible = true;
- // this.$nextTick(async () => {
- // console.log(val.productInfoList);
- // this.$set(this.form, 'productInfoList', val.productInfoList);
- // this.$set(this.form, 'routingList', val.routingList);
- // });
- //this.clientEnvironmentId 环境判断 宝悦环境
- // if (this.clientEnvironmentId == 4) {
- // this.getPlanRoutingNew();
- // }
- // this.getPlanRoutingNew();
- },
- addEquipment() {
- this.$refs.equipmentRefs.open();
- },
- async confirmChoose(list) {
- list.map((el) => (el.selectionRowShow = false));
- if (this.clientEnvironmentId == 4) {
- list.map((v) => {
- if (v.name.includes('板材')) {
- v.produceRoutingId = '1856970794952372226';
- v.produceRoutingName = '板材';
- v.produceVersionName = '板材';
- } else {
- (v.produceRoutingId = '1857313733642596353'),
- (v.produceRoutingName = '砌块'),
- (v.produceVersionName = '砌块');
- }
- });
- }
- let ids = this.form.productInfoList.map((item) => item.categoryId);
- let result = list
- .filter((i) => !ids.includes(i.id))
- .map((item, index) => {
- return {
- categoryId: item.id,
- productCode: item.code,
- productName: item.name,
- productUnitWeight: item.netWeight,
- weightUnit: item.weightUnit,
- model: item.modelType,
- specification: item.specification,
- brandNo: item.brandNum,
- measuringUnit: item.measuringUnit,
- produceRoutingId: item.produceRoutingId,
- produceRoutingName: item.produceRoutingName,
- produceVersionName: item.produceVersionName,
- factoriesId: this.factoriesId,
- factoriesName: this.factoryList?.find(
- (factoryData) => factoryData.id === this.factoriesId
- )?.name
- };
- });
- // this.form.productInfoList = [];
- // 取出在弹窗中选中并且不在表格中的数据
- // const result = list.filter(
- // (i) =>
- // this.form.productInfoList.findIndex(
- // (p) => p.productCode === i.productCode
- // ) === -1
- // );
- // // 取出在表格中并且不在弹窗中选中的数据 即取消选中的数据
- // const del = this.form.productInfoList.filter(
- // (i) => list.findIndex((p) => p.productCode === i.productCode) === -1
- // );
- // for (let i = this.form.productInfoList.length - 1; i >= 0; i--) {
- // for (let j in del) {
- // if (
- // this.form.productInfoList[i].productCode === del[j].productCode
- // ) {
- // this.form.productInfoList.splice(i, 1);
- // break;
- // }
- // }
- // }
- let promiseAll = [];
- result.forEach(async (item) => {
- let categoryId = item.categoryId;
- promiseAll.push(findBomCategoryByCategoryId(categoryId));
- });
- const resAll = await Promise.all(promiseAll);
- try {
- await result.forEach(async (item, index) => {
- if (resAll[index]) {
- let listMap = {};
- let list = [];
- let arr = [];
- resAll[index].map((el) => {
- if (el.bomType == '2' || el.bomType == '3') {
- console.log(listMap, 'listMap');
- if (listMap[el.bomType]) {
- listMap[el.bomType].push(el);
- } else {
- listMap[el.bomType] = [el];
- }
- }
- });
- if (listMap[2]) {
- list.push({ code: 2, name: 'MBOM' });
- arr = listMap[2];
- item.productType = 2;
- }
- if (listMap[3]) {
- list.push({ code: 3, name: 'ABOM' });
- if (!listMap[2]) {
- arr = listMap[3];
- item.productType = 3;
- }
- }
- if (arr.length > 0) {
- arr.map((el) => (el.bomCategoryId = el.id));
- item.bomCategoryId = arr[0].id;
- await this.changeBomId(arr[0], 0);
- this.$set(item, 'produceRoutingId', arr[0].produceRoutingId);
- this.$set(
- item,
- 'produceVersionName',
- arr[0].produceVersionName
- );
- this.$set(
- item,
- 'produceRoutingName',
- arr[0].produceRoutingName
- );
- console.log(arr[0], 'arr[0]');
- this.$set(item, 'routingList', arr[0].routingList);
- this.$set(item, 'bomCategoryName', arr[0].name);
- this.$set(item, 'bomCategoryVersions', arr[0].versions);
- }
- item.producedList = list;
- item.bomVersionList = arr;
- return item;
- }
- });
- } catch (err) {}
- this.form.productInfoList.push(...result);
- this.changeLineNumber();
- this.$refs.tableRef.setData(this.form.productInfoList);
- //重置
- this.$set(this.form, 'produceType', '');
- this.$set(this.form, 'bomCategoryId', '');
- this.$set(this.form, 'produceRoutingId', '');
- },
- changeLineNumber() {
- this.form.productInfoList.forEach((item, index) => {
- let data = this.form.productInfoList[index - 1];
- this.$set(
- this.form.productInfoList[index],
- 'lineNumber',
- data ? data.lineNumber + 10 : 10
- );
- });
- },
- handleDeleteItem(index) {
- this.$confirm('确定删除当前数据?', '提示')
- .then(() => {
- const newArray = this.form.productInfoList.filter(
- (item, i) => i !== index
- );
- this.form.productInfoList = newArray;
- this.$refs.tableRef.setData(newArray);
- })
- .catch(() => {});
- },
- async getPlanCode() {
- this.loading = true;
- try {
- const code = await getCode('product_code');
- this.$set(this.form, 'code', code);
- } catch (err) {}
- },
- initForm() {
- this.form = {
- timeDimensionPlanType: 3,
- categoryId: '',
- productName: '',
- planType: '',
- moCount: '', // 模具数量
- blockCount: 0, // 块数
- noWordCount: '', // 无字数量
- weight: '',
- isSlotting: '', //是否开槽
- slottingType: '', //开槽类型
- id: '',
- produceType: 2,
- status: 2,
- bomCategoryId: '',
- produceRoutingId: '',
- productInfoList: [],
- requiredFormingNum: ''
- };
- // console.log(this.$refs);
- // this.$refs.tableRef.setData([]);
- },
- changeBomIdFn(bomCategoryId, row) {
- return new Promise((resolve, reject) => {
- bomRoutingList(bomCategoryId).then((res) => {
- let arr = res || [];
- if (arr.length == 0) {
- row.produceRoutingId = '';
- }
- resolve(arr);
- });
- });
- },
- // 选择BOM
- async changeBomId(row, index, bomData) {
- if (bomData) {
- item.bomCategoryName = bomData.name;
- item.bomCategoryVersions = bomData.versions;
- }
- // row.routingList = []
- return await bomRoutingList(row.bomCategoryId).then((res) => {
- let arr = res || [];
- if (arr.length > 0) {
- // this.$nextTick(() => {
- row.produceRoutingName = arr[0].name;
- row.produceVersionName = arr[0].version;
- row.produceRoutingId = arr[0].id;
- row.routingList = arr;
- this.$set(row, 'produceRoutingId', arr[0].id);
- this.$set(
- this.form.productInfoList[index],
- 'produceRoutingId',
- arr[0].id
- );
- row.selectionRowShow = false;
- this.$set(this.form.productInfoList[index], 'routingList', arr);
- // });
- }
- this.$forceUpdate();
- });
- },
- contactDialogSuccess(data) {
- console.log(data, 'data 11');
- // serialNo
- this.form.serialNo = data.serialNo;
- this.$set(this.form, 'customerName', data.name);
- },
- // 清空BOM 跟工艺路线
- wipeData(index) {
- let row = this.form.productInfoList[index];
- row.bomCategoryId = '';
- row.routingList = [];
- row.bomVersionList = [];
- row.produceRoutingId = '';
- row.produceRoutingName = '';
- row.produceVersionName = '';
- row.selectionRowShow = false;
- // this.selectionRowShow = false;
- },
- // 选择生产类型
- changeProductType(row, index) {
- let param = {
- bomType: row.productType,
- categoryId: row.categoryId
- };
- this.wipeData(index);
- // row.bomCategoryId = '';
- // this.form.productInfoList[index].bomVersionList = [];
- bomListByPlan(param).then((res) => {
- let arr = res || [];
- this.$nextTick(() => {
- if (arr.length) {
- row.bomVersionList = arr;
- this.form.productInfoList[index].bomVersionList = arr;
- row.bomCategoryId = arr[0].id;
- this.changeBomId(row, index, arr[0]);
- let arrAll = JSON.parse(JSON.stringify(this.form));
- this.$set(this, 'form', arrAll);
- }
- });
- // this.$set(this.form.productInfoList[index], 'bomVersionList', arr);
- });
- },
- // 参数校验
- parameterVerification() {
- let flag = true;
- this.form.productInfoList.forEach((v) => {
- if (this.isRequired) {
- if (!v.productType) {
- flag = false;
- this.$message.warning('请选择生产类型');
- return;
- }
- if (!v.bomCategoryId) {
- flag = false;
- this.$message.warning('请选择BOM版本');
- return;
- }
- }
- if (!v.produceRoutingId) {
- flag = false;
- this.$message.warning('请选择工艺路线');
- return;
- }
- if (!v.factoriesId) {
- flag = false;
- this.$message.warning('请选择所属工厂');
- return;
- }
- if (v.requiredFormingNum == 0) {
- flag = false;
- this.$message.warning('要求生产数量不能为0');
- return;
- }
- if (!v.requiredFormingNum) {
- flag = false;
- this.$message.warning('请输入要求生产数量');
- return;
- }
- if (!v.moCount && this.clientEnvironmentId == 4) {
- flag = false;
- this.$message.warning('请输入模数');
- return;
- }
- if (!v.blockCount && this.clientEnvironmentId == 4) {
- flag = false;
- this.$message.warning('请输入块数');
- return;
- }
- });
- return flag;
- },
- save(type) {
- this.$refs.form.validate(async (valid) => {
- if (!valid) {
- return false;
- }
- let flag = this.parameterVerification();
- // 必填参数校验
- if (!flag) return;
- // this.
- if (!this.form.id) {
- if (this.form.productInfoList.length) {
- this.form.productInfoList.map((item, index) => {
- if (
- item.weightUnit == 'G' ||
- item.weightUnit == 'g' ||
- item.weightUnit == '克'
- ) {
- let total =
- ((item.requiredFormingNum - 0) * item.productUnitWeight) /
- 1000;
- item.newSumOrderWeight = total.toFixed(2);
- item.newWeightUnit = 'KG';
- } else {
- item.newWeightUnit = item.weightUnit;
- item.newSumOrderWeight = item.requiredFormingNum;
- }
- delete item.selectionRowShow;
- // if (item.bomVersionList && item.bomVersionList.length) {
- // item.bomCategoryName = item.bomVersionList[0].name;
- // item.bomCategoryVersions = item.bomVersionList[0].versions;
- // item.produceRoutingName = item.routingList[0].name;
- // }
- });
- }
- this.form.timeDimensionPlanType = this.type;
- await this.getPlanCode();
- this.loading = true;
- let api = type == 'sub' ? saveAndRelease : temporaryPlanSave;
- api(this.form)
- .then((res) => {
- this.$message.success('新增成功!');
- this.visible = false;
- this.initForm();
- this.$emit('close', true);
- })
- .finally(() => {
- this.loading = false;
- });
- } else {
- this.loading = true;
- let api = type == 'sub' ? saveAndRelease : temporaryPlanSave;
- // return
- api(this.form)
- .then((res) => {
- this.$message.success('修改成功!');
- this.visible = false;
- this.initForm();
- this.$emit('close', true);
- })
- .finally(() => {
- this.loading = false;
- });
- }
- });
- },
- bomListVersionFn(produceType, categoryId) {
- return new Promise((resolve, reject) => {
- let param = {
- bomType: produceType,
- categoryId: categoryId
- };
- bomListByPlan(param).then((res) => {
- this.bomVersionList = res || [];
- resolve(res || []);
- });
- });
- },
- bomListVersion() {
- let param = {
- bomType: this.form.produceType,
- categoryId: this.form.categoryId
- };
- bomListByPlan(param).then((res) => {
- this.$nextTick(() => {
- this.bomVersionList = res || [];
- console.log(res, 'res 000');
- });
- });
- },
- // 工艺路线
- getPlanRouting() {
- bomRoutingList(this.form.bomCategoryId).then((res) => {
- this.routingList = res || [];
- });
- },
- // 宝悦 工艺路线
- getPlanRoutingNew() {
- // bomRoutingList(this.form.bomCategoryId).then((res) => {
- // this.routingList = res || []
- // })
- },
- tableHandleKeyUp(row, name) {
- // return
- // , index, e, name
- if (name == 'procut') {
- return;
- }
- if (row.specification && this.clientEnvironmentId == 4) {
- let modelArr = row.specification.split('*');
- let modelLong = modelArr[0]; // model规格长度
- let modeWide = modelArr[1]; // model规格宽度
- let modeHight = modelArr[2].substr(0, modelArr[2].indexOf('cm')); // model规格高度
- modeHight = Number(modeHight);
- if (name === 'moCount') {
- // 模数
- this.$set(row, 'moCount', row.moCount);
- // 计算块数的公式:
- // (一模6米长度 / model规格长度) * (一模1.2米宽度 / model规格宽度) = 每一模的块数
- // 每一模的块数*模数moCount = 总块数
- if (row.productName.includes('板材')) {
- // 块数
- let blockCount =
- Math.floor(600 / modelLong) *
- Math.floor(120 / modeHight) *
- Math.floor(60 / modeWide) *
- row.moCount;
- row['blockCount'] = blockCount;
- // this.$set(row, 'blockCount', blockCount);
- } else if (row.productName.includes('砌块')) {
- let modelLongFixed = (600 / modelLong).toFixed(2);
- modelLongFixed = modelLongFixed.substring(
- 0,
- modelLongFixed.length - 1
- );
- let modeWideFixed = (120 / modeWide).toFixed(2);
- modeWideFixed = modeWideFixed.substring(
- 0,
- modeWideFixed.length - 1
- );
- let modeHightFixed = (60 / modeHight).toFixed(2);
- modeHightFixed = modeHightFixed.substring(
- 0,
- modeHightFixed.length - 1
- );
- let num =
- Math.floor(modelLongFixed * modeWideFixed * modeHightFixed) *
- row.moCount;
- row['blockCount'] = num;
- }
- let numNew = (
- Number((modelLong * modeWide * modeHight) / 1000000).toFixed(5) *
- row.blockCount
- ).toFixed(5);
- row['requiredFormingNum'] = numNew;
- } else if (name === 'sum') {
- let e = row.requiredFormingNum;
- row.blockCount = Math.floor(
- e / ((modelLong * modeWide * modeHight) / 1000000)
- );
- if (row.productName.includes('板材')) {
- let num = Math.ceil(
- row.blockCount /
- (Math.floor(600 / modelLong) *
- Math.floor(120 / modeHight) *
- Math.floor(60 / modeWide))
- );
- // 48 480 4807 480
- row.moCount = num;
- } else if (row.productName.includes('砌块')) {
- row.moCount = Math.ceil(
- row.blockCount /
- Math.floor(
- (600 / modelLong) * (120 / modeHight) * (60 / modeWide)
- )
- );
- }
- } else if (name === 'blockCount') {
- //块数
- // row.blockCount = row.moCount;
- row.blockCount = row.blockCount;
- if (row.productName.includes('板材')) {
- let moCount = Math.ceil(
- row.blockCount /
- (Math.floor(600 / modelLong) *
- Math.floor(120 / modeHight) *
- Math.floor(60 / modeWide))
- );
- row.moCount = moCount;
- } else if (row.productName.includes('砌块')) {
- let moCount = Math.ceil(
- row.blockCount /
- Math.floor(
- (600 / modelLong) * (120 / modeHight) * (60 / modeWide)
- )
- );
- this.$set(this.form, 'moCount', moCount);
- row.moCount = moCount;
- }
- let a = (
- (Number(row.blockCount) * modelLong * modeWide * modeHight) /
- 1000000
- ).toFixed(5);
- row.requiredFormingNum = a;
- }
- }
- },
- // 数量正则 quantity
- handleQuantityInput(e, row) {
- // 过滤非数字字符(包括负号)
- let value = e.replace(/[^\d.]/g, '');
- // value = value.replace(/-/g, '');
- // 限制不能以 0 开头(除非是 0 本身)
- // if (value.startsWith('0') && value.length > 1) {
- // value = value.slice(1);
- // }
- // 更新绑定值
- row.requiredFormingNum = value;
- this.tableHandleKeyUp(row, 'sum');
- },
- changeProduceType(e) {
- if (this.clientEnvironmentId !== 4) {
- this.form.bomCategoryId = '';
- this.form['bomCategoryName'] = '';
- this.form['bomCategoryVersions'] = '';
- this.bomVersionList = [];
- this.routingList = [];
- this.form.produceRoutingId = '';
- this.form.produceRoutingName = '';
- this.form.produceVersionName = '';
- this.bomListVersion();
- }
- },
- // changeBomId() {
- // this.routingList = [];
- // this.form.produceRoutingId = '';
- // this.form.produceRoutingName = '';
- // this.form.produceVersionName = '';
- // this.bomVersionList.forEach((f) => {
- // if (f.id == this.form.bomCategoryId) {
- // this.$set(this.form, 'bomCategoryName', f.name);
- // this.$set(this.form, 'bomCategoryVersions', f.versions);
- // }
- // });
- // this.getPlanRouting();
- // },
- changeRoute() {
- this.$forceUpdate();
- this.routingList.forEach((f) => {
- if (f.id == this.form.produceRoutingId) {
- this.$set(this.form, 'produceRoutingId', f.id);
- this.$set(this.form, 'produceRoutingName', f.name);
- this.$set(this.form, 'produceVersionName', f.version);
- }
- });
- },
- cancel() {
- this.visible = false;
- this.initForm();
- this.$emit('close');
- },
- // 【开始时间变化时】触发
- handleStartTimeChange(row) {
- // 校验 是否 大于结束时间 wda
- this.checkEndTimeValid(row);
- },
- // 【结束时间变化时】触发
- handleEndTimeChange(row) {
- // 校验 是否 大于结束时间 wda
- this.checkEndTimeValid(row);
- },
- handleCompleteChange(row) {
- const { reqMoldTime } = row;
- if (!row.startTime) {
- row.reqMoldTime = '';
- return this.$message.warning('请选择计划开始时间');
- }
- this.handleComplete(reqMoldTime, row);
- },
- handleComplete(reqMoldTime, row) {
- const startTime = new Date(row.startTime).getTime();
- const completeTime = new Date(reqMoldTime).getTime();
- if (completeTime < startTime) {
- row.reqMoldTime = ''; // 修正为开始时间
- return this.$message.warning(
- '要求完成时间不能早于计划开始时间, 请重新选择要求完成时间'
- );
- }
- },
- // 时间校验
- checkEndTimeValid(row) {
- const { startTime: start, endTime: end } = row;
- this.handleChange(start, end, row);
- // // if (!start || !end) return; // 开始/结束时间未填,跳过
- // const startTime = new Date(start); // 开始时间
- // const endTime = new Date(end); // 结束时间
- // if (endTime < startTime) {
- // row.endTime = new Date(startTime); // 修正为开始时间
- // this.$message.info('结束时间不能早于开始时间,已自动设为开始时间');
- // }
- },
- handleChange(start, end, row) {
- const startTime = new Date(start).getTime();
- const endTime = new Date(end).getTime();
- if (endTime < startTime) {
- row.endTime = ''; // 修正为开始时间
- return this.$message.warning(
- '计划结束时间不能早于计划开始时间,请重新选择计划结束时间'
- );
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .el-form-item {
- margin-bottom: 14px !important;
- }
- .add-product {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- font-size: 30px;
- color: #1890ff;
- margin: 10px 0;
- cursor: pointer;
- }
- .header_required {
- .is-required:before {
- content: '*';
- color: #f56c6c;
- margin-right: 4px;
- }
- }
- </style>
|