| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421 |
- <template>
- <div class="ele-body">
- <el-card shadow="never">
- <header-title title="基本信息"></header-title>
- <!-- <basic-information
- ref="basicInformation"
- @onFormChange="formDataChange"
- @onClearMaterialList="clearMaterialList"
- :myFormData="formData"
- :warehousingMaterialList="warehousingMaterialList"
- :rules="rules"
- ></basic-information> -->
- <el-form
- :model="formData"
- ref="formName"
- label-width="110px"
- :rules="rules"
- >
- <el-row :gutter="20">
- <el-col :span="8">
- <el-form-item label="出库场景" prop="bizType">
- <el-select
- filterable
- placeholder="请选择"
- v-model="formData.bizType"
- clearable
- @change="handleBizSceneChange"
- :disabled="
- !!(warehousingMaterialList && warehousingMaterialList.length)
- "
- >
- <el-option
- v-for="item in outputSceneState"
- :key="item.code"
- :value="item.code + ''"
- :label="item.label"
- ></el-option>
- </el-select> </el-form-item
- ></el-col>
- <el-col :span="8">
- <el-form-item
- :label="
- formData.bizType == 3
- ? '销售发货单'
- : formData.bizType == 4
- ? '领料单'
- : formData.bizType == 1
- ? '采购退货单'
- : '来源单据'
- "
- prop="sourceBizNo"
- v-if="formData.extInfo.assetType == 7 && formData.bizType == 4"
- >
- <el-select
- filterable
- v-model="formData.sourceBizNo"
- :disabled="
- !!(formData.sourceBizNo && warehousingMaterialList.length)
- "
- clearable
- placeholder="请输入"
- @change="handleDocumentSourceChange"
- >
- <el-option
- v-for="item in options"
- :key="item"
- :label="item"
- :value="item"
- >
- </el-option> </el-select
- ></el-form-item>
- <el-form-item
- :label="
- formData.bizType == 3
- ? '销售发货单'
- : formData.bizType == 4
- ? '领料单'
- : formData.bizType == 1
- ? '采购退货单'
- : '来源单据'
- "
- v-else
- prop="sourceBizNo"
- >
- <el-input
- @input="$forceUpdate()"
- placeholder="请输入"
- @change="handleDocumentSourceChange"
- v-model="formData.sourceBizNo"
- @click.native="
- formData.bizType == 4
- ? handlePickorder()
- : formData.bizType == 3
- ? handleEom()
- : null
- "
- >
- <el-button
- v-if="formData.bizType == 4 || formData.bizType == 3"
- slot="append"
- icon="el-icon-circle-close"
- @click.stop="onClear"
- ></el-button>
- </el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="出库物品类型" prop="extInfo.assetType">
- <selectTree
- ref="trees"
- class="form-ipt"
- :isBindPlan="
- !!(warehousingMaterialList && warehousingMaterialList.length)
- "
- size="medium"
- style="width: 100%"
- clearable
- :options="codeList"
- :props="{
- value: 'id',
- label: 'name',
- children: 'children'
- }"
- @getValue="codeListValue"
- :isAll="false"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="formData.bizType == 3">
- <el-form-item label="客户名称">
- <el-input
- placeholder="客户名称"
- disabled
- v-model="formData.clientName"
- clearable /></el-form-item
- ></el-col>
- <el-col :span="8" v-if="formData.bizType == 3">
- <el-form-item label="客户联系人">
- <el-input
- placeholder="客户联系人"
- disabled
- v-model="formData.clientUser"
- clearable /></el-form-item
- ></el-col>
- <el-col :span="8" v-if="formData.bizType == 3">
- <el-form-item label="客户电话">
- <el-input
- placeholder="客户电话"
- disabled
- v-model="formData.clientPhone"
- clearable /></el-form-item
- ></el-col>
- <el-col :span="8">
- <el-form-item label="权属部门" prop="deptName">
- <el-input
- placeholder="权属部门"
- disabled
- v-model="formData.extInfo.deptName"
- clearable
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="出库登记人">
- <el-input
- placeholder="登记人"
- disabled
- v-model="formData.extInfo.createUserName"
- clearable /></el-form-item
- ></el-col>
- <el-col :span="8">
- <el-form-item label="领料人部门" prop="verifyDeptName">
- <selectTree
- ref="tree"
- class="form-ipt"
- size="medium"
- style="width: 100%"
- clearable
- :options="treeList"
- :props="{
- value: 'code',
- label: 'name',
- children: 'children'
- }"
- @getValue="auditorDeptClick"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="领料人" prop="fromUser">
- <el-select
- v-model="formData.fromUser"
- filterable
- placeholder="请选择领料人"
- >
- <el-option
- v-for="item in llrLsit"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- @click.native="
- () => (formData.extInfo.fromUserPhone = item.phone)
- "
- >
- </el-option>
- </el-select> </el-form-item
- ></el-col>
- <el-col :span="8">
- <el-form-item label="领料人联系方式" prop="fromUserPhone">
- <el-input
- placeholder="请输入"
- disabled
- v-model="formData.extInfo.fromUserPhone"
- clearable /></el-form-item
- ></el-col>
- <el-col :span="24">
- <el-form-item label="备注" prop="remark">
- <el-input
- v-model="formData.remark"
- clearable
- type="textarea"
- placeholder="请详细说明"
- :rows="4"
- ></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div>
- <el-button
- style="margin-bottom: 20px; float: right; margin-right: 20px"
- type="primary"
- @click="addStock"
- >添加</el-button
- >
- </div>
- <div class="material">
- <div v-if="dimension != 4">
- <header-title title="物品清单"></header-title>
- <div class="mt10 form-table">
- <el-form
- ref="warehousingMaterialListRef"
- :model="{ warehousingMaterialList: warehousingMaterialList }"
- :show-message="false"
- >
- <el-table
- ref="warehousingMaterialListTable"
- :data="warehousingMaterialList"
- tooltip-effect="dark"
- style="width: 100%"
- :max-height="300"
- stripe
- :header-cell-style="{ background: '#EEEEEE', border: 'none' }"
- >
- <el-table-column label="序号" type="index" width="50">
- </el-table-column>
- <el-table-column
- label="编码"
- prop="assetCode"
- width="150"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- label="名称"
- width="200"
- prop="assetName"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- v-for="(item, index) in tableHeader"
- :key="index"
- align="center"
- :label="item.label"
- :width="item.width"
- :prop="item.prop"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="{ row }">
- <template v-if="item.formatter">{{
- item.formatter(row)
- }}</template>
- <template v-else>{{ row[item.prop] }}</template>
- </template>
- </el-table-column>
- <el-table-column
- label="批号"
- prop="manualBatchNo"
- ></el-table-column>
- <el-table-column
- v-if="clientEnvironmentId != 2"
- label="批次号"
- prop="batchNo"
- ></el-table-column>
- <el-table-column label="最小包装单元" width="120">
- <template slot-scope="{ row }">
- {{ row.minPackingCount }}{{ row.measuringUnit }}/{{
- row.minUnit
- }}
- </template>
- </el-table-column>
- <el-table-column label="包装数量" prop="availableCountBase">
- <template slot-scope="{ row }">
- {{ row.packingCountBase }}{{ row.minUnit }}
- </template>
- </el-table-column>
- <el-table-column
- label="计量数量"
- prop="availableCountBase"
- ></el-table-column>
- <el-table-column
- label="计量单位"
- prop="measuringUnit"
- ></el-table-column>
- <el-table-column label="重量" prop="weight"></el-table-column>
- <el-table-column
- label="重量单位"
- prop="weightUnit"
- ></el-table-column>
- <el-table-column
- v-if="clientEnvironmentId == 4"
- label="级别"
- prop="level"
- ></el-table-column>
- <el-table-column
- v-if="clientEnvironmentId == 4"
- label="用途"
- prop="purpose"
- width="200"
- >
- <template slot-scope="{ row }">
- <el-input placeholder="请输入" v-model="row.purpose" />
- </template>
- </el-table-column>
- <el-table-column
- label="仓库"
- width="300"
- prop="pathName"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column fixed="right" label="操作" width="200">
- <template slot-scope="{ row, $index }">
- <el-button type="text" @click="listDel(row, $index)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </el-form>
- </div>
- <header-title class="mt20" title="包装清单"></header-title>
- <div class="mt10 form-table">
- <BatchDetail
- :assetType="formData.extInfo.assetType"
- :data="batchDetailsVOList"
- />
- </div>
- </div>
- <div class="mt20">
- <header-title class="mt20" title="物料明细"></header-title>
- <el-tabs v-model="activeName" type="card">
- <el-tab-pane :label="`${title}明细`" name="a">
- <el-table
- ref="multipleTable"
- :data="materialCodeReqList"
- tooltip-effect="dark"
- style="width: 100%"
- :max-height="300"
- stripe
- :header-cell-style="rowClass"
- >
- <el-table-column label="序号" type="index" width="50">
- </el-table-column>
- <el-table-column
- :label="`编码`"
- min-width="100"
- prop="assetCode"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- label="名称"
- prop="name"
- width="200"
- :show-overflow-tooltip="true"
- >
- </el-table-column>
- <el-table-column label="批号" prop="manualBatchNo">
- </el-table-column>
- <el-table-column
- v-if="clientEnvironmentId != 2"
- label="批次号"
- prop="batchNo"
- >
- </el-table-column>
- <el-table-column
- v-if="dimension == 4"
- label="包装编码"
- min-width="100"
- prop="onlyCode"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- v-for="(item, index) in tableHeader"
- :key="index"
- align="center"
- :label="item.label"
- :width="item.width"
- :prop="item.prop"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="{ row }">
- <template v-if="item.formatter">{{
- item.formatter(row)
- }}</template>
- <template v-else>{{ row[item.prop] }}</template>
- </template>
- </el-table-column>
- <el-table-column
- label="物料编码"
- width="250"
- prop="no"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- label="发货条码"
- prop="barcodes"
- width="80"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <!-- <el-table-column label="生产日期" width="200">
- <template slot-scope="{ row }">
- <span v-if="row.dateType === 2">
- {{ row.produceTime }}
- </span>
- </template>
- </el-table-column>
- <el-table-column label="采购日期" width="200">
- <template slot-scope="{ row }">
- <span v-if="row.dateType === 1">
- {{ row.procureTime }}
- </span>
- </template>
- </el-table-column> -->
- <el-table-column label="计量数量" prop="">
- <template slot-scope="{ row }">1</template>
- </el-table-column>
- <el-table-column
- label="计量单位"
- prop="measuringUnit"
- ></el-table-column>
- <el-table-column
- label="物料代号"
- prop="materielCode"
- width="130"
- >
- </el-table-column>
- <el-table-column
- label="客户代号"
- prop="clientCode"
- ></el-table-column>
- <el-table-column label="刻码" prop="engrave"></el-table-column>
- <el-table-column label="重量" prop="weight"></el-table-column>
- <el-table-column
- label="重量单位"
- prop="weightUnit"
- ></el-table-column>
- <!-- <el-table-column
- label="货位"
- prop="pathName"
- show-overflow-tooltip
- >
- </el-table-column>
- <el-table-column label="转消耗" prop="">
- <template slot-scope="{ row }">
- <el-checkbox v-model="row.isTransferAsset"></el-checkbox>
- </template>
- </el-table-column> -->
- </el-table>
- </el-tab-pane>
- </el-tabs>
- </div>
- </div>
- <div class="center mt20">
- <el-button type="primary" @click="handleNewSave" :loading="saveLoading"
- >保存</el-button
- >
- <el-button @click="$router.go(-1)">返回</el-button>
- </div>
- </el-card>
- <AssetsDialog
- ref="assetsDialogRef"
- :title="title"
- :warehousingMaterialList="selectionList"
- :assetType="formData.extInfo.assetType"
- @detailData="detailData"
- />
- <!-- @selectTableData="onSelectTableData" -->
- <!-- 选桶号 -->
- <detailSelect
- ref="detailSelectRef"
- :title="title"
- :tableHeader="tableHeader"
- />
- <!-- 转资产 -->
- <!-- <TurnToAsset ref="turnToAssetRef" /> -->
- <!-- 选择仓库 -->
- <WareHouseDailog ref="wareHouseDailogRef"></WareHouseDailog>
- <!-- 选领料单 -->
- <pickOrder ref="pickOrderRef" @success="pickOrderRow" />
- <!-- 销售订单 -->
- <eom ref="eomRef" @success="eomSuccess" />
- </div>
- </template>
- <script>
- import outin from '@/api/warehouseManagement/outin';
- import warehouseDefinition from '@/api/warehouseManagement/warehouseDefinition';
- import {
- getTreeByPid,
- getTreeByGroup,
- getProductList
- } from '@/api/classifyManage';
- import selectUpload from '@/components/selectUpload';
- import upload from '@/components/uploadImg';
- import pickOrder from './components/pickOrder.vue';
- import {
- warehousingType,
- outputSceneState,
- emergencyState,
- materialType
- } from '@/utils/dict/index';
- import selectTree from '@/components/selectTree';
- import AssetsDialog from '../components/AssetsDialog.vue';
- import outputType from '../components/outputType.vue';
- // import TurnToAsset from '../components/TurnToAsset/index.vue'
- import WareHouseDailog from '../components/WareHouseDailog.vue';
- // import supplier from '@/api/main/supplier';
- // import org from '@/api/main/org';
- // import user from '@/api/main/user';
- import { tableHeader } from '../common';
- import detailSelect from './components/detailSelect';
- import eom from './components/eom.vue';
- import BatchDetail from './components/batchDetail.vue';
- import { watch } from 'ele-admin/lib/ele-pro-table';
- export default {
- components: {
- BatchDetail,
- pickOrder,
- selectUpload,
- selectTree,
- AssetsDialog,
- WareHouseDailog,
- upload,
- detailSelect,
- // TurnToAsset,
- outputType,
- eom
- },
- data() {
- return {
- dimension: '3',
- llList: [],
- codeList: [],
- materialType,
- warehousingType,
- outputSceneState,
- emergencyState,
- saveLoading: false,
- title: '',
- tableData2: [],
- uploadList: [],
- fromUserList: [], //人员数组
- warehousingMaterialList: [], // 物品列表
- activeName: 'a',
- treeList: [],
- staffList: [],
- formData: {
- extInfo: {
- assetType: '', //物品类型id
- assetTypeName: '', //物品类型名称
- deptCode: '', //部门code
- deptName: '', //部门名称
- verifyDeptCode: '', //审核部门编码
- verifyDeptName: '', //审核部门名称
- deliveryName: '', //送货人名称
- fromUserPhone: '', //送货人电话
- sourceBizNo: '', //销售订单
- urgent: '', //紧急状态
- supplierId: '', //供应商ID
- supplierName: '', //供应商名称
- createUserName: '', //创建人名字
- contentImage: [] //图片数组
- },
- fromUser: '', //送货人
- bizType: '', //物品类型
- verifyId: '', //审核人Id
- verifyName: '', //审核人名称
- createUserId: '',
- remark: ''
- },
- rules: {
- bizType: {
- required: true,
- message: '请选择出库场景',
- trigger: 'change'
- },
- fromUser: {
- required: true,
- message: '请选择领料人',
- trigger: 'change'
- }
- },
- llrLsit: [],
- options: [],
- loading: false,
- onSelectTableDataVal: [],
- batchDetailsVOList: [],
- materialCodeReqList: [],
- selectionList: [],
- // shouldTriggerPickorder: true,
- materialObj: {},
- wlParams: {}
- };
- },
- computed: {
- tableHeader() {
- return tableHeader(this.formData.extInfo.assetType);
- },
- clientEnvironmentId() {
- return this.$store.state.user.info.clientEnvironmentId;
- }
- // 条码信息
- // materialCodeReqList() {
- // return this.warehousingMaterialList
- // .map((i) => i.warehouseLedgerDetails || [])
- // .flat();
- // }
- },
- created() {
- this.initData();
- },
- methods: {
- // 接收表单数据动态数据
- formDataChange(val) {
- this.formData = val;
- },
- // 清空物品列表
- clearMaterialList() {
- this.warehousingMaterialList = [];
- },
- detailData(data, dimension) {
- this.dimension = dimension;
- console.log('总数居', data);
- this.onSelectTableDataVal = data.realTimeInventoryVOList;
- this.warehousingMaterialList = data.realTimeInventoryVOList.map(
- (next) => {
- delete next.updateTime;
- delete next.createTime;
- return {
- ...next,
- realInventoryAmount: 0,
- assetType: this.formData.extInfo.assetType,
- outInNum: '',
- assetCode: next.code,
- assetName: next.name,
- bizStatus: 2,
- contactCode: next.contactCode
- };
- }
- );
- // this.batchDetailsVOList = data.batchDetailsVOList;
- if (dimension == 4) {
- this.materialCodeReqList = data.wlList;
- this.selectionList = data.wlList;
- let params = {
- realTimeInventoryNewPOList: data.realTimeInventoryVOList
- };
- for (const item of params.realTimeInventoryNewPOList) {
- item.inventoryDetailsNewPOList = item.inventoryDetailsVOList;
- for (const detail of item.inventoryDetailsNewPOList) {
- detail.outInMaterialDetailsAddPOList = [];
- for (const wlItem of data.wlList) {
- if (detail.id === wlItem.recordId) {
- detail.outInMaterialDetailsAddPOList.push({
- ...wlItem
- });
- }
- }
- }
- }
- this.wlParams = params;
- this.materialObj = data;
- } else if (dimension == 3) {
- //包装维度出库
- const list = data.realTimeInventoryVOList;
- //获取包装维度
- let packArr = [];
- for (const item of list) {
- if (item.inventoryDetailsVOList.length != 0) {
- for (const iterator of item.inventoryDetailsVOList) {
- packArr.push({ ...iterator, batchNo: iterator.batchNum });
- }
- }
- }
- this.batchDetailsVOList = packArr.map((item) => {
- return {
- ...item,
- packingCountBase:
- dimension == 4 || dimension == 3 ? 1 : item.packingCountBase
- // weight: 0
- };
- });
- //物料维度数据
- let meteArr = [];
- for (const item of packArr) {
- if (item.materialDetailsVOList.length != 0) {
- for (const iterator of item.materialDetailsVOList) {
- meteArr.push({
- ...iterator
- });
- }
- }
- }
- this.materialCodeReqList = meteArr;
- //再次打开选择上
- this.selectionList = list;
- //send数据
- this.wlParams = { realTimeInventoryNewPOList: list };
- this.wlParams.realTimeInventoryNewPOList.forEach((item) => {
- item.inventoryDetailsNewPOList = item.inventoryDetailsVOList;
- item.inventoryDetailsNewPOList.forEach((ite) => {
- // ite.weight = 0;
- ite.outInMaterialDetailsAddPOList = ite.materialDetailsVOList;
- });
- });
- } else {
- // else if (dimension == 2) {
- // this.batchDetailsVOList = data.wlList;
- // this.selectionList = data.wlList;
- // }
- //物品维度出库
- console.log(data);
- const list = data.realTimeInventoryVOList;
- //获取包装维度
- let packArr = [];
- for (const item of list) {
- if (item.inventoryDetailsVOList.length != 0) {
- for (const iterator of item.inventoryDetailsVOList) {
- packArr.push({ ...iterator, batchNo: iterator.batchNum });
- }
- }
- }
- this.batchDetailsVOList = packArr.map((item) => {
- return {
- ...item,
- packingCountBase: dimension == 3 ? 1 : item.packingCountBase
- // weight: 0
- };
- });
- //物料维度数据
- let meteArr = [];
- for (const item of packArr) {
- if (item.materialDetailsVOList.length != 0) {
- for (const iterator of item.materialDetailsVOList) {
- meteArr.push({
- ...iterator
- });
- }
- }
- }
- this.materialCodeReqList = meteArr;
- //再次打开选择上
- this.selectionList = list;
- //send数据
- this.wlParams = { realTimeInventoryNewPOList: list };
- this.wlParams.realTimeInventoryNewPOList.forEach((item) => {
- item.inventoryDetailsNewPOList = item.inventoryDetailsVOList;
- item.inventoryDetailsNewPOList.forEach((ite) => {
- // ite.weight = 0;
- ite.outInMaterialDetailsAddPOList = ite.materialDetailsVOList;
- });
- });
- }
- },
- handleNewSave() {
- this.$refs.formName.validate(async (valid) => {
- if (valid) {
- if (!this.warehousingMaterialList?.length) {
- return this.$message.error('请添加出库明细!');
- }
- let obj = { ...this.formData, type: 2 };
- obj.extInfo.sourceBizNo = obj.sourceBizNo;
- // obj.fromId=
- obj.fromType = obj.type;
- this.saveLoading = true;
- let purposeList = {};
- this.warehousingMaterialList.map((item) => {
- purposeList[item.id] = item.purpose;
- });
- this.wlParams.realTimeInventoryNewPOList.forEach((item) => {
- item.purpose = purposeList[item.id];
- });
- obj = { ...obj, ...this.wlParams };
- if (this.dimension == 4) {
- obj.num = this.materialObj.wlList.length;
- } else {
- obj.num = this.materialCodeReqList.length;
- }
- console.log('2222', obj);
- try {
- const res = await outin.saveNew(obj);
- if (res.code == 0) {
- await await outin.outApprovesInside({ outInIds: res.data });
- this.$message.success('保存成功!');
- }
- this.$router.push('/warehouseManagement/outgoingManagement');
- if (res?.success) {
- this.$message.success('保存成功!');
- this.$router.go(-1);
- }
- this.saveLoading = false;
- } catch (error) {
- this.saveLoading = false;
- }
- }
- });
- },
- onClear() {
- this.formData.sourceBizNo = '';
- this.warehousingMaterialList = [];
- this.$refs.trees.valueTitle = '';
- this.formData.clientName = '';
- this.formData.clientUser = '';
- this.formData.clientPhone = '';
- this.title = '';
- this.$forceUpdate();
- },
- async eomSuccess(row) {
- console.log(row);
- this.formData.extInfo.assetType = 9;
- this.$refs.trees.valueTitle = '产品';
- this.title = '产品';
- this.formData.sourceBizNo = row.orderNo;
- this.formData.sid = row.id;
- this.formData.fromId = row.id;
- this.formData.clientName = row.contactName;
- this.formData.clientUser = row.linkName;
- this.formData.clientPhone = row.linkPhone;
- console.log('==sasa', row.tableData);
- this.onSelectTableData(await this.serachMainCode(row.tableData), 1);
- this.$forceUpdate();
- },
- async serachMainCode(arr) {
- let newArr = [];
- // 使用 Promise.all 来等待所有异步操作完成
- await Promise.all(
- arr.map(async (item) => {
- const data = await getProductList({
- pageNum: 1,
- size: 10,
- categoryLevelId: item.productCategoryId,
- code: item.code
- });
- newArr.push(data.list); // 将结果存储到 newArr 中
- })
- );
- let re = [];
- for (const item of newArr) {
- for (const it of item) {
- re.push(it);
- }
- }
- return re.map((item) => {
- return {
- ...item,
- minUnit: item.packingUnit,
- assetCode: item.code,
- assetName: item.name
- };
- });
- },
- async pickOrderRow(row) {
- this.formData.sid = row.id;
- row.tableData = [];
- this.formData.sourceBizNo = row.code;
- for (const key in row.orderInfoList) {
- if (row.orderInfoList[key].bomDetailDTOS.length != 0) {
- for (const i in row.orderInfoList[key].bomDetailDTOS) {
- row.tableData.push({
- ...row.orderInfoList[key].bomDetailDTOS[i],
- code: row.orderInfoList[key].bomDetailDTOS[i].categoryCode,
- name: row.orderInfoList[key].bomDetailDTOS[i].categoryName,
- modelType: row.orderInfoList[key].bomDetailDTOS[i].model,
- id: row.orderInfoList[key].bomDetailDTOS[i].categoryId
- });
- }
- }
- if (row.orderInfoList[key].instanceList.length != 0) {
- for (const j in row.orderInfoList[key].instanceList) {
- row.tableData.push({
- ...row.orderInfoList[key].instanceList[j],
- code: row.orderInfoList[key].instanceList[j].categoryCode,
- name: row.orderInfoList[key].instanceList[j].categoryName,
- modelType: row.orderInfoList[key].instanceList[j].model,
- id: row.orderInfoList[key].instanceList[j].instanceId
- });
- }
- }
- }
- const uniqueItems = [];
- const uniqueIds = new Set();
- row.tableData.forEach((item) => {
- if (!uniqueIds.has(item.code)) {
- uniqueIds.add(item.code);
- uniqueItems.push(item);
- }
- });
- row.tableData = uniqueItems;
- console.log(row);
- this.onSelectTableData(await this.serachMainCode(row.tableData), 1);
- this.selectTop(row);
- this.$forceUpdate();
- },
- async selectTop(row) {
- let list = row.tableData;
- let arr = [];
- for (const it of list) {
- arr.push({
- categoryLevelId: it.rootCategoryLevelId,
- code: it.code,
- count: it.demandQuantity
- });
- }
- const data = await outin.getDetailByCode(arr);
- console.log('===', data);
- },
- handleEom() {
- this.$refs.eomRef.open();
- },
- handlePickorder() {
- this.$refs.pickOrderRef.open();
- },
- async handleDocumentSourceChange() {
- // this.formData.sourceBizNo = '';
- if (!this.formData.sourceBizNo) {
- if (this.formData.bizType == 4) {
- this.warehousingMaterialList = [];
- }
- return;
- }
- if (
- !(this.formData.extInfo.assetType == 7 && this.formData.bizType == 4)
- ) {
- return;
- }
- const loading = this.$loading({ fullscreen: true });
- const res = await getSparePartsInfo({
- code: this.formData.sourceBizNo
- });
- if (res?.success && res.data.length) {
- const curMap = {
- assetId: 'classificationId',
- assetCode: 'informationCode', //编码
- assetName: 'informationName', //名称
- materialId: 'classificationId',
- materialName: 'informationName',
- manualBatchNo: '', // 批号
- batchNo: '', //批次号
- unit: 'measuringUnit', //单位
- minPackUnit: 'packingUnit' //最小包装单位
- };
- res.data.forEach((item) => {
- let obj = {};
- for (const key in curMap) {
- obj[key] = curMap[key] ? item[curMap[key]] : '';
- }
- obj.curId =
- obj.assetCode +
- (obj.measurementUnit || '') +
- (obj.minPackUnit || '') +
- (obj.unit || '');
- console.log(obj.curId);
- const index = this.warehousingMaterialList.findIndex(
- (i) => i.curId === obj.curId
- );
- if (index === -1) {
- Object.assign(obj, item);
- obj.sparePartsNum = item.num;
- this.warehousingMaterialList.push(obj);
- } else {
- this.warehousingMaterialList[index].sparePartsNum = item.num;
- }
- });
- }
- loading.close();
- },
- // 备品备件来源单号
- async remoteMethod(code) {
- // if (code !== '') {
- // this.loading = true
- const res = await getDocumentSource({ code });
- if (res?.success) {
- this.options = res.data;
- }
- // this.loading = false
- // } else {
- // this.options = []
- // }
- },
- rowClass({ row, column, rowIndex, columnIndex }) {
- if (rowIndex === 1) {
- return {
- display: 'none',
- background: '#EEEEEE',
- border: 'none'
- };
- }
- return { background: '#EEEEEE', border: 'none' };
- },
- // 部门点击事件
- async auditorDeptClick(data) {
- console.log(data);
- this.formData.extInfo.verifyDeptCode = data?.id;
- this.formData.extInfo.verifyDeptName = data?.name;
- this.formData.verifyId = '';
- this.formData.verifyName = '';
- this.$refs.formName.validateField('verifyDeptName');
- if (data) {
- this.getStaffList(data);
- }
- },
- async getStaffList(data) {
- let res = await warehouseDefinition.getUserPage({
- groupId: data.id,
- size: 9999,
- page: 1
- });
- this.llrLsit = res.list;
- },
- handleSetting(row) {
- row.bizTypes = this.formData.bizType;
- row.type = this.formData.bizType == 3 ? 1 : 0;
- this.$refs.detailSelectRef
- .open(row, row.warehouseLedgerDetails || [])
- .then((res) => {
- console.log(res);
- console.log(row);
- this.$set(
- row,
- 'warehouseLedgerDetails',
- (res || []).map((item) => {
- delete item.updateTime;
- delete item.createTime;
- this.$set(item, 'isTransferAsset', false);
- item.isUnpack = row.isUnpack;
- return item;
- })
- );
- this.$set(row, 'outInNum', res.length);
- this.$set(row, 'minPackUnit', res[0].minPackUnit);
- this.$set(
- row,
- 'selfSum',
- row.warehouseLedgerDetails.reduce((sum, pre) => {
- if (row.isUnpack) {
- return ++sum;
- }
- return sum + pre.measurementUnit;
- }, 0)
- );
- });
- },
- // 仓库编辑
- handleWareHouse(row) {
- this.$refs.wareHouseDailogRef.open(row);
- },
- // 出库操作
- listEdit(row) {
- this.$set(row, 'isSave', false);
- },
- //出库明细删除
- listDel(row, index) {
- this.warehousingMaterialList.splice(index, 1);
- console.log(this.warehousingMaterialList);
- if (this.warehousingMaterialList.length == 0) {
- this.formData.sourceBizNo = '';
- this.formData.extInfo.clientName = '';
- this.formData.extInfo.clientUser = '';
- this.formData.extInfo.clientUserPhone = '';
- }
- // 从 this.batchDetailsVOList 中删除满足条件的对象
- this.removeItemsFromArray(this.batchDetailsVOList, (item) => {
- return item.code.substr(0, 12) === row.code;
- });
- // 从 this.materialCodeReqList 中删除满足条件的对象
- this.removeItemsFromArray(
- this.materialCodeReqList,
- (item) => item.assetCode === row.code
- );
- },
- // 删除数组中满足条件的对象
- removeItemsFromArray(arr, condition) {
- for (let i = arr.length - 1; i >= 0; i--) {
- if (condition(arr[i])) {
- arr.splice(i, 1);
- }
- }
- },
- // 出库明细生成条码信息
- async createMaterialCode(row) {
- let arr = [];
- const res = await getAssetNum({
- assetCode: row.assetCode,
- num: row.outInNum || 1
- });
- if (res?.success) {
- delete row.createTime;
- arr = Array.from(new Array(res.data.length), (val, idx) => ({
- ...row,
- num: res.data[idx],
- bizStatus: 2,
- isTransferAsset: false
- }));
- }
- return arr;
- },
- handleSave() {
- this.$refs.formName.validate(async (valid) => {
- if (valid) {
- if (!this.warehousingMaterialList?.length) {
- return this.$message.error('请添加出库明细!');
- } else if (
- this.warehousingMaterialList.some(
- (item) => !item.warehouseLedgerDetails?.length
- )
- ) {
- return this.$message.error('请完善出库明细数据!');
- }
- console.log('qqqq===>', this.warehousingMaterialList);
- let arr = this.warehousingMaterialList.map((item) => {
- return {
- batchNo: item.batchNo,
- categoryId: item.id,
- count: item.outInNum,
- num: item.outInNum,
- minPackingCount: item.selfSum,
- packingCount: item.outInNum,
- outInDetailRecordAddPOList: item.warehouseLedgerDetails,
- ...item
- };
- });
- arr.forEach((item) => {
- item.warehouseId =
- item.warehouseLedgerDetails[0].pathIds.split(',')[0];
- delete item.id;
- delete item.warehouseLedgerDetails;
- if (item.outInDetailRecordAddPOList.length > 0) {
- let list = item.outInDetailRecordAddPOList.map((it) => {
- return {
- positionId: it.positionId,
- code: it.sourceBizNo,
- dateType: it.dateType,
- dateValue: it.dateValue,
- minUnit: it.minUnit,
- batchNo: it.sourceBatchNo,
- position: it.pathName,
- // minPositionId: it.cargoSpaceId,
- minPositionId: it.minPositionId,
- name: it.name,
- pathIds: it.pathIds,
- unit: it.unit,
- packageNo: it.packageNo,
- minPackingCount: it.minPackingCount,
- procureTime: it.procureTime,
- produceTime: it.produceTime
- // num: it.minPackingCount
- };
- });
- item.outInDetailRecordAddPOList = list;
- }
- });
- let obj = { ...this.formData, type: 2 };
- for (const key in arr) {
- arr[key].count = arr[key].outInNum;
- }
- obj.outInDetailAddPOList = arr;
- obj.extInfo.sourceBizNo = obj.sourceBizNo;
- obj.fromType = obj.type;
- this.saveLoading = true;
- console.log('2222', obj);
- const res = await outin.save(obj);
- if (res.code == 0) {
- this.$message.success('保存成功!');
- }
- this.saveLoading = false;
- this.$router.push('/warehouseManagement/outgoingManagement');
- if (res?.success) {
- this.$message.success('保存成功!');
- this.$router.go(-1);
- }
- }
- });
- },
- handelArr(arr, id) {
- for (const key in arr) {
- arr[key].inLedgerId = arr[key].id;
- arr[key].categoryLevelId = id;
- for (const k in arr[key].warehouseLedgerDetails) {
- arr[key].warehouseLedgerDetails[k].ledgerDetailId =
- arr[key].warehouseLedgerDetails[k].id;
- arr[key].warehouseLedgerDetails[k].inDetailId = arr[key].inLedgerId;
- arr[key].warehouseLedgerDetails[k].isTransferAsset = arr[key]
- .warehouseLedgerDetails[k].isTransferAsset
- ? 1
- : 0;
- arr[key].warehouseLedgerDetails[k].bizStatus = 2;
- }
- }
- return arr;
- },
- //添加明细
- onSelectTableData(val, e) {
- this.onSelectTableDataVal = val;
- this.warehousingMaterialList = val.map((next) => {
- delete next.updateTime;
- delete next.createTime;
- return {
- ...next,
- realInventoryAmount: 0,
- assetType: this.formData.extInfo.assetType,
- outInNum: '',
- assetCode: next.code,
- assetName: next.name,
- bizStatus: 2,
- contactCode: next.contactCode
- };
- });
- console.log('sasasasa===>>>', this.warehousingMaterialList);
- },
- codeListValue(val) {
- console.log(val);
- this.formData.extInfo.assetType = val.id;
- this.$forceUpdate();
- this.title = val?.name;
- this.selectEquiType = val?.id;
- console.log(this.title);
- },
- async initData() {
- const { data } = await getTreeByGroup({ type: 2 });
- this.codeList = data;
- const res = await warehouseDefinition.tree();
- this.treeList = this.$util.toTreeData({
- data: res,
- idField: 'id',
- parentIdField: 'parentId'
- });
- let res22 = await warehouseDefinition.getUserPage({
- size: -1,
- page: 1
- });
- this.fromUserList = res22.list;
- console.log('res=====', res);
- const info = JSON.parse(localStorage.getItem('info'));
- console.log('info=====', info);
- if (info && info.deptId?.length > 0) {
- let obj = res.find(
- (item) => item.id === info.deptId[info.deptId.length - 1]
- );
- console.log('obj=====', obj);
- this.formData.extInfo.deptName = obj?.name;
- this.formData.extInfo.deptCode = obj?.id;
- this.formData.extInfo.createUserName = info.name;
- this.formData.createUserId = info.userId;
- }
- },
- addStock() {
- // this.title = this.formData.extInfo.assetTypeName;
- if (!this.title) return this.$message.error('请选择出库产品类型');
- if (!this.formData.bizType && this.formData.bizType !== 0)
- return this.$message.error('请选择出库场景');
- this.$refs.assetsDialogRef.open();
- },
- handleChange(data) {
- this.title = data?.dictValue;
- if (this.formData.bizType == 4) {
- this.formData.sourceBizNo = '';
- }
- },
- handleChanges(code) {
- const data = this.codeList.find((item) => item.dictCode == code);
- this.title = data?.dictValue;
- this.selectEquiType = data?.dictCode;
- if (this.formData.bizType == 4) {
- this.formData.sourceBizNo = '';
- }
- },
- handleBizSceneChange() {
- if (this.formData.extInfo.assetType == 7) {
- this.formData.extInfo.sourceBizNo = '';
- }
- this.formData.sourceBizNo = '';
- },
- getSupplier() {
- return new Promise((resolve, reject) => {
- supplier.list({ page: 1, size: 999 }).then((res) => {
- if (res.success) {
- resolve(res);
- }
- });
- });
- },
- upload(data) {
- this.formData.contentImage = data;
- this.$refs.formName.validateField('contentImage');
- },
- deptClick(data) {
- this.formData.deptName = data?.name;
- this.formData.deptCode = data?.code;
- }
- },
- watch: {
- // 解决右侧悬浮操作栏不对称问题
- warehousingMaterialList: {
- handler() {
- this.$nextTick(() => {
- this.$refs.warehousingMaterialListTable.doLayout();
- });
- },
- deep: true
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- ::v-deep .el-row {
- display: flex;
- flex-wrap: wrap;
- }
- ::v-deep.form-table {
- .el-form-item {
- margin-bottom: 0;
- }
- .el-input__inner {
- padding: 0 10px;
- }
- }
- .p20 {
- padding: 20px;
- }
- .el-select,
- .el-date-editor {
- width: 100%;
- }
- .el-form-item {
- margin-bottom: 22px;
- }
- .material {
- margin-top: 20px;
- .flex {
- display: flex;
- justify-content: space-between;
- font-size: 14px;
- align-items: center;
- .red {
- color: #ff4949;
- }
- }
- }
- .mt10 {
- margin-top: 10px;
- }
- .mt20 {
- margin-top: 20px;
- }
- .center {
- text-align: center;
- }
- </style>
|