| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157 |
- <template>
- <ele-modal
- custom-class="ele-dialog-form long-dialog-form"
- :centered="true"
- v-if="visible"
- :visible.sync="visible"
- :title="title"
- :close-on-click-modal="false"
- width="70%"
- @close="cancel"
- :maxable="true"
- :resizable="true"
- :modal="modal"
- >
- <div class="switch">
- <div class="switch_left">
- <ul>
- <li
- v-for="item in tabOptions"
- :key="item.key"
- :class="{ active: activeComp == item.key }"
- @click="activeComp = item.key"
- >
- {{ item.name }}
- </li>
- </ul>
- </div>
- </div>
- <div v-if="activeComp == 'order'">
- <el-form
- ref="form"
- :model="form"
- :rules="rules"
- class="el-form-box"
- label-width="120px"
- >
- <headerTitle title="订单信息"> </headerTitle>
- <el-row>
- <el-col :span="8">
- <el-form-item label="订单编号:" prop="orderNo">
- <el-input v-model="form.orderNo" disabled></el-input>
- </el-form-item>
- <el-form-item label="来源类型" prop="relationType">
- <el-select
- v-model="form.relationType"
- filterable
- clearable
- disabled
- style="width: 100%"
- >
- <el-option :value="1" label="采购需求单"></el-option>
- <el-option :value="2" label="采购计划单"></el-option>
- <el-option :value="3" label="采购核价单"></el-option>
- <el-option :value="4" label="采购合同"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item
- v-if="form.relationType == 1"
- label="采购需求单"
- prop="purchasePlanName"
- >
- <el-input
- disabled
- v-model="form.relationName"
- placeholder="请选择"
- ></el-input>
- </el-form-item>
- <el-form-item
- v-if="form.relationType == 2"
- label="采购计划单"
- prop="purchasePlanName"
- >
- <!-- <el-input-->
- <!-- @click.native="handPurchasePlan"-->
- <!-- v-model="form.purchasePlanName"-->
- <!-- placeholder="请选择"-->
- <!-- ></el-input> -->
- <el-input
- disabled
- v-model="form.relationName"
- placeholder="请选择"
- ></el-input>
- </el-form-item>
- <el-form-item
- v-if="form.relationType == 3"
- label="采购核价单"
- prop="purchasePlanName"
- >
- <el-input
- disabled
- v-model="form.relationName"
- placeholder="请选择"
- ></el-input>
- </el-form-item>
- <el-form-item
- v-if="form.relationType == 4"
- label="选择合同"
- prop="contractName"
- >
- <el-input
- clearable
- v-model="form.contractName"
- disabled
- placeholder="请输入"
- />
- </el-form-item>
- <el-form-item label="需求部门:" prop="requireDeptName">
- <el-input v-model="form.requireDeptName" disabled></el-input>
- </el-form-item>
- <el-form-item label="订单类型:" prop="sourceTypeName">
- <el-input v-model="form.sourceTypeName" disabled></el-input>
- </el-form-item>
- <el-form-item prop="remark" label="备注:">
- <el-input
- type="textarea"
- v-model="form.remark"
- disabled
- ></el-input>
- </el-form-item>
- <el-form-item prop="orderFiles" label="附件:">
- <fileMain v-model="form.orderFiles" type="view"></fileMain>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="采购计划名称:" prop="purchasePlanName">
- <el-input v-model="form.purchasePlanName" disabled></el-input>
- </el-form-item>
- <el-form-item label="项目名称:" prop="projectName">
- <el-input v-model="form.projectName" disabled></el-input>
- </el-form-item>
- <el-form-item label="结算方式:" prop="settlementModeName">
- <el-input
- v-model="detailData.settlementModeName"
- disabled
- ></el-input>
- </el-form-item>
- <el-form-item
- prop="outsourceScene"
- label="委外场景"
- v-if="
- orderSourceType.includes(form.sourceType) && form.outsourceScene
- "
- >
- <el-select
- v-model="form.outsourceScene"
- disabled
- style="width: 100%"
- >
- <el-option
- :value="item.value"
- :label="item.label"
- v-for="item in outsourceSceneList"
- :key="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="需求人:" prop="requireUserName">
- <el-input v-model="form.requireUserName" disabled></el-input>
- </el-form-item>
- <el-form-item label="优惠后总金额:" prop="payAmount">
- <el-input v-model="form.payAmount" disabled>
- <template slot="append">元</template>
- </el-input>
- </el-form-item>
- <el-form-item label="订单总金额:" prop="totalAmount">
- <el-input v-model="form.totalAmount" disabled>
- <template slot="append">元</template>
- </el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="订单总金额" prop="orderTotalPrice">
- <el-input v-model="form.orderTotalPrice" disabled />
- </el-form-item>
- <el-form-item label="发货总金额" prop="sendTotalPrice">
- <el-input v-model="form.sendTotalPrice" disabled />
- </el-form-item>
- <el-form-item label="发货总数量" prop="sendTotalCount">
- <el-input v-model="form.sendTotalCount" disabled />
- </el-form-item>
- <el-form-item label="收货总金额" prop="receiveTotalPrice">
- <el-input v-model="form.receiveTotalPrice" disabled />
- </el-form-item>
- <el-form-item label="收货总数量" prop="receiveTotalCount">
- <el-input v-model="form.receiveTotalCount" disabled />
- </el-form-item>
- <el-form-item label="退货总金额" prop="returnTotalPrice">
- <el-input v-model="form.returnTotalPrice" disabled />
- </el-form-item>
- <el-form-item label="退货总数量" prop="returnTotalCount">
- <el-input v-model="form.returnTotalCount" disabled />
- </el-form-item>
- </el-col>
- </el-row>
- <headerTitle title="基本信息"></headerTitle>
- <el-row>
- <el-col :span="12">
- <el-form-item label="采购方名称:" prop="partaName">
- <el-input v-model="form.partaName" disabled> </el-input>
- </el-form-item>
- <el-form-item
- label="采购方统一社会信用代码:"
- prop="partaUnifiedSocialCreditCode"
- class="form_item_label"
- >
- <el-input v-model="form.partaUnifiedSocialCreditCode" disabled>
- </el-input>
- </el-form-item>
- <el-form-item label="采购方联系人:" prop="partaLinkName">
- <el-input v-model="form.partaLinkName" disabled> </el-input>
- </el-form-item>
- <el-form-item label="采购方电话:" prop="partaTel">
- <el-input v-model="form.partaTel" disabled> </el-input>
- </el-form-item>
- <el-form-item label="采购方传真:" prop="partaFax">
- <el-input v-model="form.partaFax" disabled></el-input>
- </el-form-item>
- <el-form-item label=" 采购方Email:" prop="partaEmail">
- <el-input v-model="form.partaEmail" disabled></el-input>
- </el-form-item>
- <el-form-item label="采购方地址:" prop="partaAddress">
- <el-input v-model="form.partaAddress" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="供应商名称:" prop="partbName">
- <el-input v-model="form.partbName" disabled></el-input>
- </el-form-item>
- <el-form-item
- label="供应商统一社会信用代码:"
- prop="partbUnifiedSocialCreditCode"
- class="form_item_label"
- >
- <el-input
- v-model="form.partbUnifiedSocialCreditCode"
- disabled
- ></el-input>
- </el-form-item>
- <el-form-item label="供应商联系人:" prop="partbLinkName">
- <el-input v-model="form.partbLinkName" disabled></el-input>
- </el-form-item>
- <el-form-item
- prop="partbTel"
- label="供应商联系电话:"
- class="form_item_label"
- >
- <el-input v-model="form.partbTel" disabled></el-input>
- </el-form-item>
- <el-form-item prop="partbFax" label="供应商传真:">
- <el-input v-model="form.partbFax" disabled></el-input>
- </el-form-item>
- <el-form-item label="供应商Email:" prop="partbEmail">
- <el-input v-model="form.partbEmail" disabled></el-input>
- </el-form-item>
- <el-form-item label="供应商地址:" prop="partbAddress">
- <el-input v-model="form.partbAddress" disabled></el-input>
- </el-form-item>
- <!-- <el-form-item
- label="售出方税号"
- prop="contactAddress"
- >
- <el-input
- clearable
- v-model="form.contactAddress"
- placeholder="请输入"
- />
- </el-form-item> -->
- </el-col>
- </el-row>
- </el-form>
- <el-tabs v-model="activeName" style="margin-top: 15px" type="border-card">
- <el-tab-pane label="物品清单" name="1">
- <ele-pro-table
- ref="table"
- :needPage="false"
- :columns="competAnalysisListcolumns"
- @columns-change="handleColumnChange"
- :cache-key="cacheKeyUrl"
- :datasource="detailData.productList"
- row-key="id"
- max-height="500px"
- >
- <template v-slot:toolbar>
- <div class="headbox">
- <span class="amount">总计:{{ detailData.totalAmount }}元</span>
- <span class="amount"
- >应付金额:{{ detailData.payAmount }}元</span
- >
- </div>
- </template>
- <template v-slot:technicalDrawings="{ row }">
- <fileMain v-model="row.technicalDrawings" type="view"></fileMain>
- </template>
- <template v-slot:requirementTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 1)">{{
- row.requirementTotalCount
- }}</el-button>
- </template>
- <template v-slot:planTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 2)">{{
- row.planTotalCount
- }}</el-button>
- </template>
- <template v-slot:inquiryTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 3)">{{
- row.inquiryTotalCount
- }}</el-button>
- </template>
- <template v-slot:contractTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 4)">{{
- row.contractTotalCount
- }}</el-button>
- </template>
- <template v-slot:doneTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 5)">{{
- row.doneTotalCount
- }}</el-button>
- </template>
- <template v-slot:waitTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 6)">{{
- row.waitTotalCount
- }}</el-button>
- </template>
- </ele-pro-table>
- </el-tab-pane>
- <el-tab-pane
- label="带料清单"
- name="2"
- v-if="orderSourceType.includes(form.sourceType)"
- >
- <ele-pro-table
- ref="table"
- :needPage="false"
- :columns="competAnalysisListcolumns1"
- :toolkit="[]"
- :datasource="detailData.rawList"
- row-key="id"
- >
- <template v-slot:technicalDrawings="{ row }">
- <fileMain v-model="row.technicalDrawings" type="view"></fileMain>
- </template>
- </ele-pro-table>
- </el-tab-pane>
- <el-tab-pane
- label="产出清单"
- name="3"
- v-if="orderSourceType.includes(form.sourceType)"
- >
- <ele-pro-table
- ref="table"
- :needPage="false"
- :columns="competAnalysisListcolumns1"
- :toolkit="[]"
- :datasource="detailData.outputList"
- row-key="id"
- >
- <template v-slot:technicalDrawings="{ row }">
- <fileMain v-model="row.technicalDrawings" type="view"></fileMain>
- </template>
- </ele-pro-table>
- </el-tab-pane>
- </el-tabs>
- </div>
- <bpmDetail
- v-if="activeComp === 'bpm' && form.processInstanceId"
- :id="form.processInstanceId"
- ></bpmDetail>
- <div v-if="activeComp == 'invoice'">
- <invoiceList :orderId="detailId"></invoiceList>
- </div>
- <div v-if="activeComp == 'returnorder'">
- <returnGoodsList :orderId="detailId"></returnGoodsList>
- </div>
- <div v-if="activeComp == 'accountstatement'">
- <accountstatementList :orderId="detailId"></accountstatementList>
- </div>
- <div slot="footer" class="footer">
- <el-button @click="cancel">返回</el-button>
- </div>
- <bill-detail-dialog
- :bill-detail-dialog-flag.sync="billDetailDialogFlag"
- v-if="billDetailDialogFlag"
- ref="billDetailDialogRef"
- ></bill-detail-dialog>
- </ele-modal>
- </template>
- <script>
- import {
- // getpurchaseorderDetail,
- getpurchaseorderDetail
- } from '@/api/purchasingManage/purchaseOrder';
- import invoiceList from '@/views/purchasingManage/purchaseOrder/orderAssociation/invoiceList.vue';
- import returnGoodsList from '@/views/purchasingManage/purchaseOrder/orderAssociation/returnGoodsList.vue';
- import accountstatementList from '@/views/purchasingManage/purchaseOrder/orderAssociation/accountstatementList.vue';
- import { getFile } from '@/api/system/file';
- import dictMixins from '@/mixins/dictMixins';
- import { copyObj } from '@/utils/util';
- import bpmDetail from '@/views/bpm/processInstance/detail.vue';
- // import fileMain from '@/components/addDoc/index.vue';
- import billDetailDialog from '@/views/purchasingManage/purchaseOrder/components/billDetailDialog.vue';
- import { orderSourceType, outsourceSceneList, lbjtList } from '@/enum/dict';
- import tabMixins from '@/mixins/tableColumnsMixin';
- import { levelList } from '@/enum/dict.js';
- export default {
- mixins: [dictMixins, tabMixins],
- components: {
- billDetailDialog,
- // fileMain,
- invoiceList,
- returnGoodsList,
- accountstatementList,
- bpmDetail
- },
- props: {
- modal: {
- type: Boolean,
- default: true
- }
- },
- data() {
- return {
- orderSourceType,
- outsourceSceneList,
- cacheKeyUrl: 'eos-purchasingManage-purchaseOrder-inventoryTableDetail',
- processList: [
- {
- label: '是',
- value: 1
- },
- {
- label: '否',
- value: 0
- }
- ],
- activeComp: 'order',
- billDetailDialogFlag: false,
- fullscreen: false,
- tabOptions: [
- { key: 'order', name: '订单详情' },
- { key: 'bpm', name: '流程详情' },
- { key: 'invoice', name: '收货列表' },
- { key: 'returnorder', name: '退货列表' },
- { key: 'accountstatement', name: '对账列表' }
- ],
- visible: false,
- detailId: '',
- title: '详情',
- row: {},
- activeName: '1',
- form: {
- orderFiles: [{ name: '222' }]
- },
- rules: {},
- detailData: {},
- receiptPaymentListcolumns: [
- {
- width: 45,
- type: 'index',
- columnKey: 'index',
- align: 'center',
- fixed: 'left'
- },
- {
- width: 200,
- prop: 'moneyName',
- label: '款项名称',
- slot: 'moneyName',
- align: 'center'
- },
- {
- width: 100,
- prop: 'price',
- label: '金额',
- slot: 'price',
- formatter: (_row, _column, cellValue) => {
- return _row.price + '元';
- },
- align: 'center'
- },
- {
- width: 100,
- prop: 'ratio',
- label: '比例',
- slot: 'ratio',
- formatter: (_row, _column, cellValue) => {
- return _row.ratio + '%';
- },
- align: 'center'
- },
- {
- width: 160,
- prop: 'deadLine',
- label: '截止日期',
- slot: 'deadLine',
- align: 'center'
- },
- {
- prop: 'remark',
- label: ' 说明',
- slot: 'remark',
- align: 'center'
- }
- ],
- competAnalysisListcolumns: [
- {
- width: 45,
- type: 'index',
- columnKey: 'index',
- align: 'center',
- fixed: 'left'
- },
- {
- width: 200,
- prop: 'productName',
- label: '名称',
- slot: 'productName',
- align: 'center'
- },
- {
- width: 120,
- prop: 'productCode',
- label: '编码',
- slot: 'productCode',
- align: 'center'
- },
- {
- width: 200,
- prop: 'productCategoryName',
- label: '类型',
- slot: 'productCategoryName',
- align: 'center'
- },
- {
- width: 160,
- prop: 'productBrand',
- label: '牌号',
- slot: 'productBrand',
- align: 'center'
- },
- {
- width: 120,
- prop: 'modelType',
- label: '型号',
- slot: 'modelType',
- align: 'center'
- },
- {
- width: 120,
- prop: 'supplierMark',
- label: '供应商代号',
- slot: 'supplierMark',
- align: 'center'
- },
- {
- width: 120,
- prop: 'specification',
- label: '规格',
- slot: 'specification',
- align: 'center'
- },
- {
- minWidth: 200,
- prop: 'taskName',
- label: '工序',
- slot: 'taskName',
- align: 'center'
- },
- {
- width: 120,
- prop: 'requirementTotalCount',
- label: '采购需求数量',
- slot: 'requirementTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'planTotalCount',
- label: '采购计划数量',
- slot: 'planTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'inquiryTotalCount',
- label: '采购核价数量',
- slot: 'inquiryTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'contractTotalCount',
- label: '采购合同数量',
- slot: 'contractTotalCount',
- align: 'center'
- },
- {
- width: 80,
- prop: 'doneTotalCount',
- label: '已采数量',
- slot: 'doneTotalCount',
- align: 'center'
- },
- {
- width: 80,
- prop: 'waitTotalCount',
- label: '待采数量',
- // slot: 'waitTotalCount',
- align: 'center'
- },
- {
- width: 80,
- prop: 'doneReceiveCount',
- label: '已收货数量',
- align: 'center'
- },
- {
- width: 80,
- prop: 'waitReceiveCount',
- label: '未收货数量',
- align: 'center'
- },
- {
- width: 120,
- prop: 'totalCount',
- label: '数量',
- slot: 'totalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'produceType',
- align: 'center',
- label: '属性类型',
- showOverflowTooltip: true,
- formatter: (row, column) => {
- if (row.produceType) {
- return row.produceType
- .map((item) => {
- return lbjtList[item];
- })
- .toString();
- }
- }
- },
- {
- width: 120,
- prop: 'packingSpecification',
- align: 'center',
- label: '包装规格',
- showOverflowTooltip: true
- },
- {
- width: 120,
- prop: 'measuringUnit',
- label: '计量单位',
- slot: 'measuringUnit',
- align: 'center'
- },
- {
- width: 120,
- prop: 'singleWeight',
- label: '单重',
- slot: 'singleWeight',
- align: 'center'
- },
- {
- width: 120,
- prop: 'totalWeight',
- label: '总重',
- slot: 'totalWeight',
- align: 'center'
- },
- {
- width: 120,
- prop: 'weightUnit',
- label: '重量单位',
- slot: 'weightUnit',
- align: 'center'
- },
- {
- width: 160,
- prop: 'pricingWay',
- label: '计价方式',
- slot: 'pricingWay',
- align: 'center',
- formatter: (row, column) => {
- return row.pricingWay == 1
- ? '按数量计费'
- : row.pricingWay == 2
- ? '按重量计费'
- : '';
- }
- },
- {
- minWidth: 120,
- prop: 'goodsLevel',
- label: '物品级别',
- formatter: (_row, _column, cellValue) => {
- return levelList.find((item) => item.value == _row.goodsLevel)
- ?.label;
- },
- align: 'center'
- },
- {
- width: 160,
- prop: 'singlePrice',
- label: '单价',
- slot: 'singlePrice',
- align: 'center'
- },
- {
- width: 120,
- prop: 'taxRate',
- label: '税率',
- formatter: (row, column) => {
- return row.taxRate && row.taxRate + '%';
- },
- align: 'center'
- },
- {
- width: 150,
- prop: 'notaxSinglePrice',
- label: '不含税单价',
- align: 'center'
- },
- {
- width: 160,
- prop: 'discountSinglePrice',
- label: '折后单价',
- slot: 'discountSinglePrice',
- align: 'center'
- },
- {
- width: 120,
- prop: 'totalPrice',
- label: '合计',
- slot: 'totalPrice',
- formatter: (_row, _column, cellValue) => {
- return _row.totalPrice + '元';
- },
- align: 'center'
- },
- {
- width: 120,
- prop: 'discountTotalPrice',
- label: '折后合计',
- slot: 'discountTotalPrice',
- formatter: (_row, _column, cellValue) => {
- return _row.discountTotalPrice + '元';
- },
- align: 'center'
- },
- {
- width: 110,
- prop: 'batchNo',
- label: '批次号',
- slot: 'batchNo',
- align: 'center'
- },
- {
- prop: 'provenance',
- label: '产地',
- slot: 'provenance',
- align: 'center',
- minWidth: 200,
- showOverflowTooltip: true,
- formatter: (row, column) => {
- return row.provenance && row.provenance.length
- ? row.provenance
- .map((item) => this.getDictValue('产地', item))
- .join(',')
- : '';
- }
- },
- // {
- // width: 120,
- // prop: 'deliveryDays',
- // label: '交期(天)',
- // slot: 'deliveryDays'
- // },
- {
- width: 160,
- prop: 'deliveryDeadline',
- label: '交期截止日期',
- slot: 'deliveryDeadline',
- align: 'center'
- },
- {
- width: 200,
- prop: 'guaranteePeriod',
- label: '有效期',
- slot: 'guaranteePeriod',
- formatter: (_row, _column, cellValue) => {
- return (
- (_row.guaranteePeriod || '') + _row.guaranteePeriodUnitName
- );
- },
- align: 'center'
- },
- {
- width: 160,
- prop: 'guaranteePeriodDeadline',
- label: '有效期截止日期',
- slot: 'guaranteePeriodDeadline',
- align: 'center'
- },
- {
- width: 120,
- prop: 'technicalAnswerName',
- label: '技术答疑人',
- slot: 'technicalAnswerName',
- align: 'center'
- },
- {
- width: 220,
- prop: 'technicalParams',
- label: '技术参数',
- slot: 'technicalParams',
- align: 'center'
- },
- {
- width: 240,
- prop: 'technicalDrawings',
- label: '技术图纸',
- slot: 'technicalDrawings',
- formatter: (_row, _column, cellValue) => {
- return (
- (_row.guaranteePeriod || '') + _row.guaranteePeriodUnitName
- );
- },
- align: 'center'
- },
- {
- width: 220,
- prop: 'remark',
- label: '备注',
- slot: 'remark',
- align: 'center'
- }
- ],
- competAnalysisListcolumns1: [
- {
- width: 45,
- type: 'index',
- columnKey: 'index',
- align: 'center',
- fixed: 'left'
- },
- {
- width: 200,
- prop: 'productName',
- label: '名称',
- slot: 'productName',
- align: 'center'
- },
- {
- width: 120,
- prop: 'productCode',
- label: '编码',
- slot: 'productCode',
- align: 'center'
- },
- {
- width: 200,
- prop: 'productCategoryName',
- label: '类型',
- slot: 'productCategoryName',
- align: 'center'
- },
- {
- width: 160,
- prop: 'productBrand',
- label: '牌号',
- slot: 'productBrand',
- align: 'center'
- },
- {
- width: 120,
- prop: 'modelType',
- label: '型号',
- slot: 'modelType',
- align: 'center'
- },
- {
- width: 120,
- prop: 'supplierMark',
- label: '供应商代号',
- slot: 'supplierMark',
- align: 'center'
- },
- {
- width: 120,
- prop: 'specification',
- label: '规格',
- slot: 'specification',
- align: 'center'
- },
- {
- minWidth: 200,
- prop: 'taskName',
- label: '工序',
- slot: 'taskName',
- align: 'center'
- },
- {
- width: 120,
- prop: 'requirementTotalCount',
- label: '采购需求数量',
- slot: 'requirementTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'planTotalCount',
- label: '采购计划数量',
- slot: 'planTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'inquiryTotalCount',
- label: '采购核价数量',
- slot: 'inquiryTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'contractTotalCount',
- label: '采购合同数量',
- slot: 'contractTotalCount',
- align: 'center'
- },
- {
- width: 80,
- prop: 'doneTotalCount',
- label: '已采数量',
- slot: 'doneTotalCount',
- align: 'center'
- },
- {
- width: 80,
- prop: 'waitTotalCount',
- label: '待采数量',
- // slot: 'waitTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'totalCount',
- label: '数量',
- slot: 'totalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'measuringUnit',
- label: '计量单位',
- slot: 'measuringUnit',
- align: 'center'
- },
- {
- width: 120,
- prop: 'singleWeight',
- label: '单重',
- slot: 'singleWeight',
- align: 'center'
- },
- {
- width: 120,
- prop: 'totalWeight',
- label: '总重',
- slot: 'totalWeight',
- align: 'center'
- },
- {
- width: 120,
- prop: 'weightUnit',
- label: '重量单位',
- slot: 'weightUnit',
- align: 'center'
- },
- {
- width: 110,
- prop: 'batchNo',
- label: '批次号',
- slot: 'batchNo',
- align: 'center'
- },
- {
- prop: 'provenance',
- label: '产地',
- slot: 'provenance',
- align: 'center',
- minWidth: 200,
- showOverflowTooltip: true,
- formatter: (row, column) => {
- return row.provenance && row.provenance.length
- ? row.provenance
- .map((item) => this.getDictValue('产地', item))
- .join(',')
- : '';
- }
- },
- // {
- // width: 120,
- // prop: 'deliveryDays',
- // label: '交期(天)',
- // slot: 'deliveryDays'
- // },
- {
- width: 160,
- prop: 'deliveryDeadline',
- label: '交期截止日期',
- slot: 'deliveryDeadline',
- align: 'center'
- },
- {
- width: 200,
- prop: 'guaranteePeriod',
- label: '有效期',
- slot: 'guaranteePeriod',
- formatter: (_row, _column, cellValue) => {
- return (
- (_row.guaranteePeriod || '') + _row.guaranteePeriodUnitName
- );
- },
- align: 'center'
- },
- {
- width: 160,
- prop: 'guaranteePeriodDeadline',
- label: '有效期截止日期',
- slot: 'guaranteePeriodDeadline',
- align: 'center'
- },
- {
- width: 120,
- prop: 'technicalAnswerName',
- label: '技术答疑人',
- slot: 'technicalAnswerName',
- align: 'center'
- },
- {
- width: 220,
- prop: 'technicalParams',
- label: '技术参数',
- slot: 'technicalParams',
- align: 'center'
- },
- {
- width: 240,
- prop: 'technicalDrawings',
- label: '技术图纸',
- slot: 'technicalDrawings',
- formatter: (_row, _column, cellValue) => {
- return (
- (_row.guaranteePeriod || '') + _row.guaranteePeriodUnitName
- );
- },
- align: 'center'
- },
- {
- width: 220,
- prop: 'remark',
- label: '备注',
- slot: 'remark',
- align: 'center'
- }
- ]
- };
- },
- created() {
- this.requestDict('产地');
- },
- methods: {
- async open(row) {
- this.activeName = '1';
- this.form = row;
- this.visible = true;
- await this.getDetailData(row.id);
- this.detailId = row.id;
- },
- handleGetBillDetail(row, type) {
- this.billDetailDialogFlag = true;
- this.$nextTick(() => {
- this.$refs.billDetailDialogRef.open(row, type);
- });
- },
- cancel() {
- this.$nextTick(() => {
- // 关闭后,销毁所有的表单数据
- (this.form = copyObj(this.formDef)),
- (this.otherForm = copyObj(this.otherFormDef)),
- (this.tableBankData = []);
- this.tableLinkData = [];
- this.visible = false;
- });
- },
- downloadFile(file) {
- getFile({ objectName: file.storePath }, file.name);
- },
- async getDetailData(id) {
- this.loading = true;
- const data = await getpurchaseorderDetail(id);
- this.loading = false;
- if (data) {
- this.form = data;
- this.detailData = data;
- }
- }
- }
- };
- </script>
- <style scoped lang="scss">
- .ele-dialog-form {
- .el-form-item {
- margin-bottom: 10px;
- }
- }
- .headbox {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .amount {
- font-size: 14px;
- font-weight: bold;
- margin-right: 20px;
- }
- }
- .switch_left ul .active {
- border-top: 4px solid var(--color-primary);
- color: var(--color-primary-5);
- }
- .switch {
- padding-bottom: 20px;
- }
- :deep .divider .content {
- justify-content: flex-start;
- }
- </style>
|