| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046 |
- <template>
- <div class="ele-body">
- <el-card shadow="never">
- <div class="body-title">
- <div class="title-left">{{type == 'edit' ? '计划修改' : '销售订单转生产计划'}}</div>
- <div class="title-right">
- <el-button @click="cancel">取消</el-button>
- <el-button type="primary" @click="toSubmit" :loading="loading">
- 提交计划
- </el-button>
- </div>
- </div>
- <el-form
- ref="form"
- :model="form"
- :rules="rules"
- label-width="90px"
- class="formbox"
- >
- <el-row :gutter="24">
- <el-col v-bind="styleResponsive ? { lg: 4, md: 8 } : { span: 4 }">
- <el-form-item label="计划类型:">
- <DictSelection
- dictName="订单计划类型"
- clearable
- v-model="form.planType"
- disabled
- >
- </DictSelection>
- </el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 5, md: 10 } : { span: 5 }">
- <el-form-item label="工艺路线:" prop="produceRoutingName">
- <el-input
- @click.native="openVersion"
- placeholder="请选择工艺路线"
- readonly
- v-model="form.produceRoutingName"
- ></el-input>
- </el-form-item>
- </el-col>
- <!-- <el-col v-bind="styleResponsive ? { lg: 3, md: 6 } : { span: 3 }">
- <el-form-item label="使用改型:" prop="modification">
- <el-checkbox
- v-model="form.modification"
- :true-label="1"
- :false-label="0"
- ></el-checkbox>
- </el-form-item>
- </el-col> -->
- <el-col v-bind="styleResponsive ? { lg: 4, md: 8 } : { span: 4 }">
- <el-form-item label="余量系数:" prop="marginCoefficient">
- <el-select
- v-model="form.marginCoefficient"
- filterable
- allow-create
- @change="itemChange"
- >
- <el-option
- v-for="(item, index) in marginList"
- :key="index"
- :label="item.name"
- :value="item.value"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 4, md: 8 } : { span: 4 }">
- <el-form-item label="批次号:" prop="batchNo">
- <el-input
- placeholder="请输入批次号"
- v-model="form.batchNo"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 4, md: 8 } : { span: 4 }">
- <el-form-item label="生产方式:" prop="produced">
- <el-select v-model="form.produceType" style="width: 100%">
- <el-option
- v-for="item of producedList"
- :key="item.code"
- :label="item.name"
- :value="item.code"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="24" class="row-intro">
- <el-col v-bind="styleResponsive ? { lg: 3, md: 12 } : { span: 3 }">
- <el-form-item label="销售单数量:">{{ form.codeNum }}</el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 3, md: 12 } : { span: 3 }">
- <el-form-item label="订单总数量:">{{
- form.contractNum
- }}</el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 3, md: 12 } : { span: 4 }">
- <el-form-item label="订单总重量:">{{
- form.sumOrderWeight
- }}</el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 3, md: 12 } : { span: 3 }">
- <el-form-item label="产品编码:">{{
- form.productCode
- }}</el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 3, md: 12 } : { span: 3 }">
- <el-form-item label="牌号:">{{ form.brandNo }}</el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 4, md: 12 } : { span: 5 }">
- <el-form-item label="型号:">{{ form.model }}</el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 4, md: 12 } : { span: 3 }">
- <el-form-item label="规格:">{{ form.specification }}</el-form-item>
- </el-col>
- <!--
- <el-col v-bind="styleResponsive ? { lg: 3, md: 12 } : { span: 3 }">
- <el-form-item label="库存数量:">{{
- form.stockCountBase
- }}</el-form-item>
- </el-col> -->
- </el-row>
- <el-table :data="form.salesOrders" border>
- <el-table-column label="序号" align="center" width="60">
- <template slot-scope="scope">
- <span>{{ scope.$index + 1 }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="销售订单号"
- align="center"
- prop="code"
- width="120"
- sortable
- >
- </el-table-column>
- <el-table-column
- label="产品名称"
- align="center"
- prop="productName"
- width="120"
- >
- </el-table-column>
- <el-table-column label="行号" align="center" prop="lineNumber">
- </el-table-column>
- <el-table-column
- :label="'订单数量' + (clientEnvironmentId == '4' ? '(方)' : '')"
- align="center"
- prop="contractNum"
- width="120"
- >
- <template slot-scope="scope">
- {{ scope.row.contractNum }} {{scope.row.measuringUnit }}
- </template>
- </el-table-column>
- <el-table-column
- label="订单重量"
- align="center"
- prop="productSumWeight"
- width="120"
- >
- <template slot-scope="scope">
- {{ scope.row.productSumWeight }} {{ form.weightUnit }}
- </template>
- </el-table-column>
- <el-table-column label="规格" align="center" prop="specification">
- </el-table-column>
- <el-table-column
- :label="'欠交数量' + (clientEnvironmentId == '4' ? '(方)' : '')"
- align="center"
- prop="lackNum"
- >
- </el-table-column>
- <el-table-column
- :label="'计划生产数量' + (clientEnvironmentId == '4' ? '(方)' : '')"
- align="center"
- prop="planProductNum"
- width="140"
- >
- <template slot-scope="scope">
- <el-form-item
- label-width="0px"
- :prop="'salesOrders.' + scope.$index + '.planProductNum'"
- :rules="{
- required: true,
- message: '请输入计划生产数量',
- trigger: 'blur'
- }"
- class="table-item"
- >
- <el-input
- v-model.number="scope.row.planProductNum"
- size="small"
- oninput="value=value.replace(/[^\d]/g,'')"
- style="width: 100%"
- @input="
- tableHandleKeyUp(scope.row, scope.$index, $event, 'sum')
- "
- placeholder="输入数量"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column
- :label="'要求生产数量' + (clientEnvironmentId == '4' ? '(方)' : '')"
- align="center"
- prop="requiredFormingNum"
- width="120"
- >
- <template slot-scope="scope">
- <el-form-item
- label-width="0px"
- :prop="'salesOrders.' + scope.$index + '.requiredFormingNum'"
- :rules="{
- required: true,
- message: '请输入要求生产数量',
- trigger: 'blur'
- }"
- class="table-item"
- >
- <el-input
- v-model.number="scope.row.requiredFormingNum"
- size="small"
- disabled
- oninput="value=value.replace(/[^\d]/g,'')"
- style="width: 100%"
- placeholder="输入数量"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column
- label="模数"
- align="center"
- width="100"
- v-if="clientEnvironmentId == '4'"
- >
- <template slot-scope="scope">
- <div>
- <el-input
- style="width: 100%"
- size="small"
- v-model="scope.row.moCount"
- oninput="value=value.replace(/[^0-9.]/g,'')"
- @input="
- tableHandleKeyUp(scope.row, scope.$index, $event, 'moCount')
- "
- placeholder="请输入"
- >
- </el-input>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- width="100"
- v-if="clientEnvironmentId == '4'"
- >
- <template slot="header">
- <span style="color: red">*</span>
- <span>块数</span>
- </template>
- <template slot-scope="scope">
- <div>
- <el-input
- size="small"
- style="width: 100%"
- oninput="value=value.replace(/[^0-9.]/g,'')"
- @input="
- tableHandleKeyUp(
- scope.row,
- scope.$index,
- $event,
- 'blockCount'
- )
- "
- v-model="scope.row.blockCount"
- placeholder="请输入"
- ></el-input>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- label="权重等级"
- align="center"
- width="120"
- v-if="clientEnvironmentId == '4'"
- >
- <template slot-scope="scope">
- <div>
- <el-select v-model="scope.row.weight" style="width: 100%">
- <el-option
- v-for="item of weightList"
- :key="item.code"
- :label="item.name"
- :value="item.code"
- ></el-option>
- </el-select>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- width="120"
- label="是否开槽"
- v-if="clientEnvironmentId == '4'"
- >
- <template slot-scope="scope">
- <div>
- <el-select
- style="width: 100%"
- v-model="scope.row.isSlotting"
- placeholder="请选择"
- >
- <el-option
- v-for="item of isSlotting"
- :key="item.code"
- :label="item.name"
- :value="item.code"
- />
- </el-select>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- width="120"
- label="开槽类型"
- v-if="clientEnvironmentId == '4'"
- >
- <template slot-scope="scope">
- <DictSelection
- dictName="开槽类型"
- v-model="scope.row.slottingType"
- v-if="scope.row.isSlotting == 1"
- >
- </DictSelection>
- </template>
- </el-table-column>
- <el-table-column
- label="按单按库"
- align="center"
- prop="orderLibraryType"
- >
- <template slot-scope="{ row }">
- {{ getDictValue('按单按库', row.orderLibraryType) }}
- </template>
- </el-table-column>
- <el-table-column label="订单类型" align="center" prop="orderType">
- <template slot-scope="{ row }">
- {{ getDictValue('订单类型', row.orderType) }}
- </template>
- </el-table-column>
- <el-table-column
- label="交付日期"
- align="center"
- prop="deliveryTime"
- width="160"
- >
- </el-table-column>
- <el-table-column
- label="要求生产日期"
- align="center"
- prop="reqMoldTime"
- width="180"
- >
- <template slot-scope="scope">
- <el-form-item
- label-width="0px"
- :prop="'salesOrders.' + scope.$index + '.reqMoldTime'"
- :rules="{
- required: true,
- message: '请选择要求生产日期',
- trigger: 'blur'
- }"
- class="table-item"
- >
- <el-date-picker
- style="width: 100%"
- v-model="scope.row.reqMoldTime"
- :pickerOptions="{
- disabledDate: (time) =>
- time.getTime() <
- new Date(new Date().setHours(0, 0, 0, 0)).getTime()
- }"
- type="date"
- placeholder="选择日期"
- value-format="yyyy-MM-dd"
- >
- </el-date-picker>
-
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="客户名称" align="center" prop="customerName">
- </el-table-column>
- <el-table-column label="业务员" align="center" prop="salesman">
- </el-table-column>
- <el-table-column
- label="交付要求"
- align="center"
- prop="deliveryRequirements"
- >
- <template slot-scope="{ row }">
- {{ getDictValue('交付要求', row.deliveryRequirements) }}
- </template>
- </el-table-column>
- <el-table-column
- prop="priority"
- label="优先级"
- width="100"
- align="center"
- >
- <template slot-scope="{ row, $index }">
- <div style="display: flex">
- <el-input
- v-if="$index == 0"
- v-model="row.priority"
- type="number"
- size="mini"
- :min="0"
- :max="10"
- @change="priorityChange(row)"
- style="width: 80px"
- ></el-input>
- <el-popover
- v-if="$index == 0"
- placement="right"
- width="200"
- trigger="hover"
- content="数值越大优先级越高(0-3普通, 4-6优先, 7-10紧急)"
- >
- <div class="sort-wrap" slot="reference">
- <i class="el-icon-caret-top" @click="sortTop(row)"></i>
- <i class="el-icon-caret-bottom" @click="sortBottom(row)"></i>
- </div>
- </el-popover>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" width="70" fixed="right">
- <template slot-scope="scope">
- <el-button type="text" @click="handleDeleteItem(scope.$index)" v-if="type != 'edit'"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <div class="add-product" @click="addEquipment" v-if="type != 'edit'">
- <i class="el-icon-circle-plus-outline"></i>
- </div>
- <el-row :gutter="24">
- <el-col v-bind="styleResponsive ? { lg: 24, md: 24 } : { span: 24 }">
- <el-form-item label="计划备注:">
- <el-input
- type="textarea"
- :rows="4"
- v-model="form.notes"
- resize="none"
- ></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <AdditionalOrder
- ref="additionalRefs"
- :productCode="form.productCode"
- :selectList="form.salesOrders"
- @choose="confirmChoose"
- ></AdditionalOrder>
- <ProductionVersion
- ref="versionRefs"
- @changeProduct="changeProduct"
- ></ProductionVersion>
- <PlanSubmit
- ref="submitRefs"
- :type="$route.query.type"
- :info="form"
- @publish="publishData"
- ></PlanSubmit>
- </el-card>
- </div>
- </template>
- <script>
- import AdditionalOrder from './components/AdditionalOrder.vue';
- import PlanSubmit from './components/plan-submit.vue';
- import ProductionVersion from '@/components/CreatePlan/ProductionVersion2.vue';
- import {
- productionToPlan,
- saveSaleToPlan,
- updateSaleToPlan,
- releaseSave,
- getInventory,
- getUpdateInfoById,
- getProductVersion
- } from '@/api/saleOrder';
- import { getByCode } from '@/api/system/dictionary-data';
- import dictMixins from '@/mixins/dictMixins';
- import { deepClone } from '@/utils/index';
- import { getRouteTabKey, removePageTab } from '@/utils/page-tab-util';
- import { getCode } from '@/api/codeManagement';
- import dayjs from 'dayjs';
- import { debounce } from 'lodash';
- export default {
- mixins: [dictMixins],
- components: {
- AdditionalOrder,
- ProductionVersion,
- PlanSubmit
- },
- data() {
- return {
- type: this.$route.query.type,
- weightList: [
- { code: 1, name: 'A' },
- { code: 2, name: 'B' },
- { code: 3, name: 'C' }
- ],
- isSlotting: [
- { code: 1, name: '是' },
- { code: 2, name: '否' }
- ], //是否开槽
- producedList: [
- { code: 2, name: '加工' },
- { code: 3, name: '装配' }
- ],
- form: {
- planType: 1,
- produceRoutingId: '',
- stockCountBase: '',
- salesOrders: [],
- produceRoutingName: '',
- marginCoefficient: '1.0',
- batchNo: null,
- produceType: 2
- },
- marginList: [],
- // 表单验证规则
- rules: {
- produceRoutingName: [
- { required: true, message: '请选择生产版本', trigger: 'change' }
- ],
- produceType: [
- { required: true, message: '请选择生产类型', trigger: 'change' }
- ]
- },
- // selection: [],
- loading: false
- };
- },
- computed: {
- clientEnvironmentId() {
- return this.$store.state.user.info.clientEnvironmentId;
- },
- // 是否开启响应式布局
- styleResponsive() {
- return this.$store.state.theme.styleResponsive;
- }
- },
- created() {
- this.requestDict('按单按库');
- this.requestDict('订单类型');
- this.requestDict('交付要求');
- this.getByCodeFn();
- if (this.type == 'edit') {
- this.getPlanInfo(this.$route.query.id);
- } else {
- this.getSaleInfo();
- }
- },
- methods: {
- async getPlanInfo(id) {
- const data = await getUpdateInfoById(id);
- this.form = data;
- },
- async _getInventory() {
- const res = await getInventory(this.form.productCode, this.form.planType);
- this.form.stockCountBase = res;
- },
- getByCodeFn() {
- getByCode('margin_code').then((res) => {
- let _arr = [];
- res.data.map((item) => {
- const key = Object.keys(item)[0];
- const value = item[key];
- _arr.push({ name: key, value: value });
- });
- this.marginList = _arr;
- });
- },
- getSaleInfo() {
- let params = JSON.parse(this.$route.query.selection);
- productionToPlan(params).then((res) => {
- this.form = deepClone(res);
- this.form.produceRoutingName =
- res.produceRoutingName || this.$route.query.produceRoutingName;
- this.form.produceRoutingId =
- res.produceRoutingId || this.$route.query.produceRoutingId;
- this.form.salesOrders.map((item, index) => {
- if (this.clientEnvironmentId == '4') {
- if (item.productName.includes('板材')) {
- this.tableHandleKeyUp(item, '', item.lackNum, 'blockCount');
- } else {
- this.tableHandleKeyUp(item, '', item.lackNum, 'moCount');
- }
- } else {
- item.planProductNum = item.lackNum;
- item.requiredFormingNum = item.lackNum;
- }
- item.slottingType = item.slottingType && item.slottingType + '';
- item.priority = index + 1;
- item.reqMoldTime = dayjs(
- new Date(item.deliveryTime).getTime() - 3600 * 1000 * 24 * 10
- ).format('YYYY-MM-DD');
- });
- if (this.form.salesOrders.every((itm) => itm.orderType == 2)) {
- this.form.planType = 2;
- } else if (this.form.salesOrders.every((itm) => itm.orderType == 1)) {
- this.form.planType = 1;
- } else {
- this.form.planType = 3;
- }
- this._getInventory();
- });
- this.$forceUpdate();
- },
- itemChange() {
- this.form.salesOrders.map((item, index) => {
- this.$set(
- item,
- 'requiredFormingNum',
- item.planProductNum * (this.form.marginCoefficient || 1)
- );
- });
- },
- toInt(planProductNum) {
- return planProductNum * (this.form.marginCoefficient || 1);
- },
- cancel() {
- const key = getRouteTabKey();
- this.$router.go(-1);
- removePageTab({ key });
- },
- toSubmit() {
- this.$refs.form.validate((valid) => {
- if (valid) {
- this.mapList();
- this.$refs.submitRefs.open();
- }
- });
- },
- // 对比日期,计算要求生产重量
- mapList() {
- var _sumOrderWeight = 0;
- var requiredFormingNum = 0;
- var productNum = 0;
- this.form.salesOrders.map((item, index) => {
- requiredFormingNum =
- Number(requiredFormingNum) + Number(item.requiredFormingNum);
- if (
- this.form.weightUnit == 'G' ||
- this.form.weightUnit == 'g' ||
- this.form.weightUnit == '克'
- ) {
- this.form.newWeightUnit = 'kg';
- _sumOrderWeight =
- (this.form.sumOrderWeight *
- Number(this.form.marginCoefficient || 1)) /
- 1000;
- } else {
- this.form.newWeightUnit = this.form.weightUnit;
- _sumOrderWeight =
- this.form.sumOrderWeight * Number(this.form.marginCoefficient || 1);
- }
- productNum += Number(item.planProductNum);
- });
- this.form.productNum = productNum;
- this.form.productUnitWeight = this.form.salesOrders[0]?.productUnitWeight;
- this.form.newSumOrderWeight = _sumOrderWeight.toFixed(2);
- this.form.requiredFormingNum = requiredFormingNum;
- const collection = deepClone(this.form.salesOrders);
- const sortedCollection = collection.sort(
- (a, b) => new Date(b.reqMoldTime) - new Date(a.reqMoldTime)
- );
- let latestData = {};
- for (let i = 0; i < sortedCollection.length; i++) {
- const data = sortedCollection[i];
- if (
- !latestData.reqMoldTime ||
- new Date(data.reqMoldTime) >= new Date(latestData.reqMoldTime)
- ) {
- latestData = data;
- }
- }
- this.form.reqMoldTime = latestData.reqMoldTime;
- },
- sortTop(row) {
- row.priority = Number(row.priority) + 1;
- this.priorityChange(row);
- },
- sortBottom(row) {
- if (row.priority <= 1) {
- return;
- }
- row.priority = Number(row.priority) - 1;
- this.priorityChange(row);
- },
- priorityChange(row) {
- if (row.priority > 10) {
- row.priority = 10; // 如果大于 10,则设置为 10
- } else if (row.priority < 0) {
- row.priority = 0; // 如果小于 0,则设置为 0
- }
- this.priorityFn(row);
- },
- priorityFn: debounce(function (row) {}, 800),
- // 删除产品
- handleDeleteItem(index) {
- this.form.salesOrders.splice(index, 1);
- },
- addEquipment() {
- this.$refs.additionalRefs.open(this.form.planType);
- },
- openVersion() {
- this.$refs.versionRefs.open();
- },
- changeProduct(data) {
- this.$set(this.form, 'produceRoutingName', data.name);
- this.$set(this.form, 'produceRoutingId', data.id);
- this.$set(this.form, 'produceVersionName', data.produceVersionName);
- },
- // 表格:模数、数量(方)、块数输入框 输入事件
- tableHandleKeyUp(row, index, e, name) {
- 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') {
- // 模数
- row.moCount = e;
- // 计算块数的公式:
- // (一模6米长度 / model规格长度) * (一模1.2米宽度 / model规格宽度) = 每一模的块数
- // 每一模的块数*模数moCount = 总块数
- if (row.productName.includes('板材')) {
- row.blockCount =
- Math.floor(600 / modelLong) *
- Math.floor(120 / modeHight) *
- Math.floor(60 / modeWide) *
- row.moCount;
- } 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
- );
- row.blockCount =
- Math.floor(modelLongFixed * modeWideFixed * modeHightFixed) *
- row.moCount;
- }
- row.planProductNum =
- Nu((modelLong * modeWide * modeHight) / 1000000).toFixed(5) *
- row.blockCount;
- } else if (name === 'sum') {
- //方数
- row.planProductNum = e;
- row.blockCount = Math.floor(
- e / ((modelLong * modeWide * modeHight) / 1000000)
- );
- if (row.productName.includes('板材')) {
- row.moCount = Math.ceil(
- row.blockCount /
- (Math.floor(600 / modelLong) *
- Math.floor(120 / modeHight) *
- Math.floor(60 / modeWide))
- );
- } 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 = e;
- if (row.productName.includes('板材')) {
- row.moCount = Math.ceil(
- row.blockCount /
- (Math.floor(600 / modelLong) *
- Math.floor(120 / modeHight) *
- Math.floor(60 / modeWide))
- );
- } else if (row.productName.includes('砌块')) {
- row.moCount = Math.ceil(
- row.blockCount /
- Math.floor(
- (600 / modelLong) * (120 / modeHight) * (60 / modeWide)
- )
- );
- }
- row.planProductNum =
- (Number(e) * modelLong * modeWide * modeHight) / 1000000;
- }
- }
- row.planProductNum = Number(row.planProductNum);
- row.requiredFormingNum =Number(row.planProductNum * (this.form.marginCoefficient || 1)).toFixed(5);
-
- },
- confirmChoose(list) {
- // 取出在弹窗中选中并且不在表格中的数据
- const result = list.filter(
- (i) => this.form.salesOrders.findIndex((p) => p.id === i.id) === -1
- );
- // 取出在表格中并且不在弹窗中选中的数据 即取消选中的数据
- const del = this.form.salesOrders.filter(
- (i) => list.findIndex((p) => p.id === i.id) === -1
- );
- for (let i = this.form.salesOrders.length - 1; i >= 0; i--) {
- for (let j in del) {
- if (this.form.salesOrders[i].id === del[j].id) {
- this.form.salesOrders.splice(i, 1);
- }
- }
- }
- let priority =
- this.form.salesOrders[this.form.salesOrders.length - 1]?.priority || 0;
- this.form.salesOrders = this.form.salesOrders.concat(
- result.map((item, index) => {
- item.priority = ++priority;
- item.planProductNum = item.lackNum;
- item.requiredFormingNum = item.lackNum;
- item.reqMoldTime = dayjs(
- new Date(item.deliveryTime).getTime() - 3600 * 1000 * 24 * 10
- ).format('YYYY-MM-DD');
- return item;
- })
- );
- this.changeData();
- },
- changeData() {
- var planProductNum = 0;
- var productWeight = 0;
- this.form.salesOrders.map((item, index) => {
- item.priority = index + 1;
- planProductNum = planProductNum + item.requiredFormingNum;
- productWeight = productWeight + Number(item.productSumWeight);
- });
- this.$set(this.form, 'codeNum', this.form.salesOrders.length);
- this.$set(this.form, 'contractNum', planProductNum);
- this.$set(this.form, 'sumOrderWeight', productWeight.toFixed(2));
- },
- async publishData(type) {
- const key = getRouteTabKey();
- let params = deepClone(this.form);
- params.categoryId = params.salesOrders[0]?.categoryId;
- if (this.$route.query.type != 'edit') {
- delete params.id;
- }
- if (type === 2) {
- this.$confirm('发布工单后不可撤回,确定发布吗?', '发布确认').then(
- async () => {
- const loading = this.$loading({
- lock: true,
- fullscreen: true,
- text: '工单发布中...'
- });
- try {
- const code = await getCode('product_order_code');
- const data = {
- productionPlan: params,
- workOrder: {
- productionPlanCode: params.code,
- code: code,
- // formingNum: params.contractNum,
- formingNum: this.form.requiredFormingNum,
- formingWeight: params.sumOrderWeight,
- produceRoutingId: params.produceRoutingId,
- status: 4,
- model: params.model,
- brandNo: params.brandNo,
- categoryId: params.categoryId,
- productCode: params.productCode,
- productName: params.productName,
- newWeightUnit: this.form.newWeightUnit,
- newSumOrderWeight: this.form.newSumOrderWeight
- }
- };
- if (this.$route.query.type == 'edit') {
- data.workOrder.productionPlanId = params.id;
- }
- await releaseSave(data)
- .then((res) => {
- if (res === 1) {
- this.$message.success('工单已发布!');
- this.$router.push({
- path: '/productionPlan'
- });
- } else {
- this.$confirm(
- '生产计划创建成功,但工单发布失败。请前往【生产计划】列表【重新发布】工单',
- '提示',
- {
- confirmButtonText: '返回',
- cancelButtonText: '立即前往',
- type: 'warning'
- }
- )
- .then(() => {
- this.$router.push({
- path: '/productionPlan'
- });
- })
- .catch(() => {
- this.$router.go(-1);
- });
- }
- removePageTab({ key });
- })
- .catch(() => {
- this.$message.error('发布失败,请重新发布!');
- });
- } catch (error) {}
- loading.close();
- }
- );
- } else {
- let request =
- this.$route.query.type == 'edit' ? updateSaleToPlan : saveSaleToPlan;
- request(params)
- .then(async (res) => {
- // 提交
- this.$router.push({
- path: '/productionPlan'
- });
- removePageTab({ key });
- })
- .catch(() => {
- this.$message.error('提交失败,请重新提交!');
- });
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .ele-body {
- background: #fff;
- }
- .body-title {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .title-left {
- font-size: 20px;
- color: #333;
- }
- .formbox {
- margin: 20px auto;
- }
- .row-intro {
- border-bottom: 1px dashed #ccc;
- margin-bottom: 20px;
- }
- .add-product {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- font-size: 30px;
- color: #1890ff;
- margin: 10px 0;
- cursor: pointer;
- }
- .table-item {
- margin-bottom: 0;
- }
- </style>
|