12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241 |
- <template>
- <div style="width: 100%; padding: 0px 15px">
- <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="submit">
- <template #buyer>
- <div style="width: 100%">
- <el-form-item prop="buyCorporationId">
- <el-select v-model="formData.data.buyCorporationId" style="width: 100%" @change="changeBuyCorporation">
- <el-option v-for="item in corporationList" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- </el-form-item>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="8">
- <el-form-item label="地址" prop="buyCountryName">
- <el-input v-model="formData.data.buyCountryName" placeholder="请输入国家" @change="changeAddress" />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label=" " prop="buyProvinceName">
- <el-input v-model="formData.data.buyProvinceName" placeholder="请输入省/州" @change="changeAddress" />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label=" " prop="buyCityName">
- <el-input v-model="formData.data.buyCityName" placeholder="请输入城市" @change="changeAddress" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="24">
- <el-form-item prop="buyAddress">
- <el-input v-model="formData.data.buyAddress" type="textarea" @change="changeAddress" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="8">
- <el-form-item label="联系人" prop="buyContactName">
- <el-input v-model="formData.data.buyContactName" placeholder="请输入联系人" />
- </el-form-item>
- </el-col>
- <el-col :span="16">
- <el-form-item label=" " prop="buyContactNumber">
- <el-input v-model="formData.data.buyContactNumber" placeholder="请输入联系人电话" />
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </template>
- <template #seller>
- <div style="width: 100%">
- <div style="width: 100%">
- <el-form-item prop="sellCorporationId">
- <el-select v-model="formData.data.sellCorporationId" style="width: 100%" @change="changeSupplier">
- <el-option v-for="item in supplierList" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- </el-form-item>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="6">
- <el-form-item label="地址" prop="countryId">
- <el-select v-model="formData.data.countryId" placeholder="国家" filterable @change="(val) => changeSellAddress(val, '20')">
- <el-option v-for="item in countryData" :label="item.chineseName" :value="item.id"> </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label=" " prop="provinceName">
- <selectCity
- placeholder="省/洲"
- @change="(val) => changeSellAddress(val, '30')"
- addressId="provinceId"
- addressName="provinceName"
- v-model="formData.data"
- :data="provinceData">
- </selectCity>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label=" " prop="cityName">
- <selectCity placeholder="城市" addressId="cityId" addressName="cityName" v-model="formData.data" :data="cityData" @change="changeAddress">
- </selectCity>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label=" " prop="sellPostalCode">
- <el-input v-model="formData.data.sellPostalCode" placeholder="请输入邮编" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="24">
- <el-form-item prop="sellAddress">
- <el-input v-model="formData.data.sellAddress" type="textarea" @change="changeAddress" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="8">
- <el-form-item label="联系人" prop="sellContactName">
- <el-input v-model="formData.data.sellContactName" placeholder="请输入联系人" />
- </el-form-item>
- </el-col>
- <el-col :span="16">
- <el-form-item label=" " prop="sellContactNumber">
- <el-input v-model="formData.data.sellContactNumber" placeholder="请输入联系人电话" />
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </div>
- </template>
- <template #payment>
- <div style="width: 100%">
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="6">
- <el-form-item label="付款方式" prop="paymentMethod">
- <el-select v-model="formData.data.paymentMethod" placeholder="请选择付款方式" style="width: 100%">
- <el-option v-for="item in fundsPaymentMethod" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="发票类型" prop="invoiceType">
- <el-select v-model="formData.data.invoiceType" placeholder="请选择发票类型" style="width: 100%">
- <el-option v-for="item in invoiceType" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </template>
- <template #delivery>
- <div style="width: 100%">
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="12">
- <el-form-item label="交货类型" prop="deliveryType">
- <el-radio-group v-model="formData.data.deliveryType" @change="changeAddress">
- <el-radio v-for="(item, index) in deliveryType" :key="index" :label="item.value" border>{{ item.label }}</el-radio>
- </el-radio-group>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="12">
- <el-form-item label="详细地址" prop="address">
- <el-input v-model="formData.data.address" :rows="2" type="textarea" placeholder="请输入详细地址" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="6">
- <el-form-item label="交付日期" prop="deliveryTime">
- <el-date-picker v-model="formData.data.deliveryTime" type="date" placeholder="请选择交付日期" value-format="YYYY-MM-DD" />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="质保期 (天)" prop="warranty">
- <el-input-number
- onmousewheel="return false;"
- v-model="formData.data.warranty"
- placeholder="请输入质保期"
- style="width: 100%"
- :precision="0"
- :controls="false"
- :min="0" />
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </template>
- <template #commodity>
- <div style="width: 100%" v-if="formData.data.purchaseProductList && formData.data.purchaseProductList.length > 0">
- <div
- :style="index !== formData.data.purchaseProductList.length - 1 ? 'margin-bottom: 20px' : ''"
- v-for="(item, index) in formData.data.purchaseProductList"
- :key="item.dataResourceId">
- <div style="border: 1px solid #ccc; padding: 20px 10px 0 10px; width: 100%">
- <el-row style="width: 100%" :gutter="5" type="flex" align="middle">
- <el-col :span="2" style="text-align: center">
- <img v-if="item.fileUrl" :src="item.fileUrl" class="pic" @click="onPicture(item.fileUrl)" />
- </el-col>
- <el-col :span="5">
- <span>产品名称: {{ item.productName }}</span>
- </el-col>
- <el-col :span="4">
- <span>尺寸: {{ item.productModel }}</span>
- </el-col>
- <el-col :span="3">
- <span>数量: {{ item.quantity }}</span>
- </el-col>
- <el-col :span="3">
- <span>单价: {{ item.price }}</span>
- </el-col>
- <el-col :span="2">
- <el-button type="primary" text @click="handleHandover(item, index)">编辑备注</el-button>
- </el-col>
- <el-col :span="2">
- <el-button type="primary" text @click="handleMaterial(index)">添加配件</el-button>
- </el-col>
- <el-col :span="3">
- <span>金额小计: {{ item.amount }}</span>
- </el-col>
- </el-row>
- <el-collapse v-model="item.activeName" class="hideCollapse" accordion>
- <el-collapse-item title="" :name="true">
- <div style="padding: 0 40px">
- <el-table :data="item.purchaseProductMountingsList" style="width: 100%">
- <el-table-column label="图片" align="center" width="80">
- <template #default="{ row }">
- <img v-if="row.fileUrl" :src="row.fileUrl" class="pic" @click="onPicture(row.fileUrl)" />
- </template>
- </el-table-column>
- <el-table-column label="类型" align="center" width="80">
- <template #default="{ row }">
- <div>{{ dictValueLabel(row.productType, productType) }}</div>
- </template>
- </el-table-column>
- <el-table-column label="产品名称" prop="productName" min-width="180" />
- <el-table-column label="尺寸" prop="productModel" min-width="140" />
- <el-table-column label="单价" width="140">
- <template #default="{ row, $index }">
- <div style="width: 100%" class="removePadding">
- <el-form-item
- :prop="'purchaseProductList.' + index + '.purchaseProductMountingsList.' + $index + '.price'"
- :rules="rules.price"
- :inline-message="true"
- @change="
- () => {
- return changeProductMaterial(index, $index);
- }
- ">
- <el-input-number
- onmousewheel="return false;"
- v-model="row.price"
- placeholder="请输入单价"
- :precision="2"
- :controls="false"
- :min="0" />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="数量" width="140">
- <template #default="{ row, $index }">
- <div style="width: 100%" class="removePadding">
- <el-form-item
- :prop="'purchaseProductList.' + index + '.purchaseProductMountingsList.' + $index + '.quantity'"
- :rules="rules.quantity"
- :inline-message="true"
- @change="
- () => {
- return changeProductMaterial(index, $index);
- }
- ">
- <el-input-number
- onmousewheel="return false;"
- v-model="row.quantity"
- placeholder="请输入数量"
- :precision="0"
- :controls="false"
- :min="0" />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="金额" prop="amount" width="100" />
- <el-table-column label="操作" align="center" width="80" fixed="right">
- <template #default="{ $index }">
- <el-button type="primary" v-if="$index !== 0" link @click="handleRemove(index, $index)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </el-collapse-item>
- </el-collapse>
- <div style="text-align: center; margin-top: -18px">
- <el-button type="primary" @click="item.activeName = !item.activeName" style="margin-bottom: -28px" text>
- <span v-if="item.activeName">
- <span style="vertical-align: middle">收起明细</span>
- <el-icon style="margin-left: 8px; transform: rotate(-90deg); vertical-align: middle"><DArrowRight /></el-icon>
- </span>
- <span v-else>
- <span style="vertical-align: middle">查看明细</span>
- <el-icon style="margin-left: 8px; transform: rotate(90deg); vertical-align: middle"><DArrowRight /></el-icon>
- </span>
- </el-button>
- </div>
- </div>
- </div>
- </div>
- </template>
- <template #otherCharge>
- <div style="width: 100%">
- <el-button type="primary" @click="clickAdd()">添加行</el-button>
- <el-table :data="formData.data.purchaseProjectList" style="width: 100%; margin-top: 16px">
- <el-table-column label="收费项目" width="220">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item :prop="'purchaseProjectList.' + $index + '.payName'" :rules="rules.payName" :inline-message="true">
- <el-autocomplete v-model="row.payName" :fetch-suggestions="querySearch" clearable class="inline-input w-50" placeholder="请输入收费项目" />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="备注">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item :prop="'purchaseProjectList.' + $index + '.remark'">
- <el-input v-model="row.remark" placeholder="请输入备注" />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="金额" width="130">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'purchaseProjectList.' + $index + '.amount'"
- :rules="rules.amount"
- :inline-message="true"
- class="shrinkPadding"
- @change="changeProject">
- <el-input-number
- onmousewheel="return false;"
- v-model="row.amount"
- placeholder="请输入金额"
- style="width: 100%"
- :precision="2"
- :controls="false"
- :min="0" />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="60" align="center" fixed="right">
- <template #default="{ $index }">
- <el-button type="primary" link @click="handleDelete($index)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- <template #offerMoney>
- <div style="width: 100%; display: flex">
- <div style="width: calc(100% - 190px)"></div>
- <div style="width: 130px; padding: 0 12px">
- <el-form-item label="合同总金额" prop="amount" class="shrinkPadding">
- <el-input v-model="formData.data.amount" placeholder="合同总金额" disabled />
- </el-form-item>
- </div>
- </div>
- </template>
- <template #contractClause>
- <div style="width: 100%">
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="8">
- <el-form-item label="合同模板" prop="contractTemplateId">
- <el-select v-model="formData.data.contractTemplateId" style="width: 100%" @change="changeContractTemplate">
- <el-option v-for="item in templateList" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <div style="margin-top: 20px; width: 100%">
- <el-form-item label="条款内容" prop="remark">
- <div v-if="judgeStatus()">
- <div v-html="getStyle(formData.data.remark)"></div>
- </div>
- <Editor v-else style="width: 100%" :value="formData.data.remark" @updateValue="updateContent" ref="remarkEditor" />
- </el-form-item>
- </div>
- </div>
- </template>
- <template #shipment>
- <div style="width: 100%">
- <el-table :data="formData.data.purchaseArrivalList" style="width: 100%; margin-top: 16px">
- <el-table-column prop="code" label="商品编码" width="120" />
- <el-table-column prop="productName" label="商品名称" />
- <el-table-column label="到货日期" width="220">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item :prop="'purchaseArrivalList.' + $index + '.arrivalTime'" :rules="rules.arrivalTime" :inline-message="true">
- <el-date-picker v-model="row.arrivalTime" type="date" placeholder="请选择到货日期" value-format="YYYY-MM-DD" />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="到货数量" width="160">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item :prop="'purchaseArrivalList.' + $index + '.quantity'" :inline-message="true">
- <el-input-number
- onmousewheel="return false;"
- v-model="row.quantity"
- placeholder="请输入到货数量"
- style="width: 100%"
- :precision="0"
- :controls="false"
- :min="0" />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="操作" width="120" fixed="right">
- <template #default="{ row, $index }">
- <el-button type="primary" link @click="clickSplit(row)">拆分</el-button>
- <el-button type="primary" link @click="clickDelete($index)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- </byForm>
- <el-dialog v-if="openMaterialCompany" v-model="openMaterialCompany" title="公司产品库" width="90%" append-to-body>
- <ProductMaterial :selectStatus="true" @selectMaterial="selectMaterial"></ProductMaterial>
- </el-dialog>
- <el-dialog title="备注" v-if="openHandover" v-model="openHandover" width="800">
- <byForm :formConfig="formHandoverConfig" :formOption="formOption" v-model="productRow.data">
- <template #file>
- <div style="width: 100%">
- <el-upload
- v-model:fileList="fileList"
- action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
- :data="uploadData"
- multiple
- :before-upload="uploadFile"
- :on-success="handleSuccess"
- :on-preview="onPreviewFile">
- <el-button>选择</el-button>
- </el-upload>
- </div>
- </template>
- <template #remark>
- <div style="width: 100%">
- <Editor :value="productRow.data.remark" @updateValue="updateHandover" />
- </div>
- </template>
- </byForm>
- <template #footer>
- <el-button @click="openHandover = false" size="large">取 消</el-button>
- <el-button type="primary" @click="submitHandoverForm()" size="large">确 定</el-button>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import byForm from "@/components/byForm/index";
- import ProductMaterial from "@/views/product/material/index";
- import { ElMessage } from "element-plus";
- import selectCity from "@/components/selectCity/index.vue";
- import Editor from "@/components/Editor/index.vue";
- import { useRoute } from "vue-router";
- const route = useRoute();
- const { proxy } = getCurrentInstance();
- const invoiceType = ref([]);
- const fundsPaymentMethod = ref([]);
- const templateList = ref([]);
- const corporationList = ref([]);
- const supplierList = ref([]);
- const countryData = ref([]);
- const provinceData = ref([]);
- const cityData = ref([]);
- const openMaterialCompany = ref(false);
- const formData = reactive({
- data: {
- deliveryType: 1,
- remark: "",
- amount: undefined,
- purchaseArrivalList: [],
- purchaseProductList: [],
- purchaseProjectList: [],
- },
- });
- const submit = ref(null);
- const deliveryType = ref([
- {
- label: "买方地址",
- value: 1,
- },
- {
- label: "工厂交付",
- value: 2,
- },
- {
- label: "其他",
- value: 3,
- },
- ]);
- const productType = ref([
- {
- label: "产品",
- value: 1,
- },
- {
- label: "物料",
- value: 2,
- },
- ]);
- const judgeStatus = () => {
- if (props.queryData.recordList && props.queryData.recordList.length > 0) {
- let data = props.queryData.recordList.filter((item) => item.status === 2 && item.nodeType !== 1);
- if (data && data.length > 0) {
- return true;
- }
- }
- return false;
- };
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- disabled: false,
- });
- const formConfig = computed(() => {
- return [
- {
- type: "slot",
- slotName: "buyer",
- label: "买方信息",
- itemWidth: 50,
- },
- {
- type: "slot",
- slotName: "seller",
- label: "卖方信息",
- itemWidth: 50,
- },
- {
- type: "slot",
- slotName: "payment",
- label: "付款信息",
- },
- {
- type: "slot",
- slotName: "delivery",
- label: "交付信息",
- },
- {
- type: "slot",
- slotName: "commodity",
- label: "采购明细",
- },
- {
- type: "slot",
- slotName: "otherCharge",
- label: "其他收费项目",
- },
- {
- type: "slot",
- slotName: "offerMoney",
- },
- {
- type: "slot",
- slotName: "contractClause",
- label: "合同条款",
- },
- {
- type: "slot",
- slotName: "shipment",
- label: "到货要求",
- },
- ];
- });
- const rules = ref({
- buyCorporationId: [{ required: true, message: "请选择买方公司", trigger: "change" }],
- sellCorporationId: [{ required: true, message: "请选择卖方公司", trigger: "change" }],
- countryId: [{ required: true, message: "请选择国家", trigger: "change" }],
- sellAddress: [{ required: true, message: "请输入详细地址", trigger: "blur" }],
- buyAddress: [{ required: true, message: "请输入详细地址", trigger: "blur" }],
- sellContactName: [{ required: true, message: "请输入联系人", trigger: "blur" }],
- sellContactNumber: [{ required: true, message: "请输入联系电话", trigger: "blur" }],
- quantity: [{ required: true, message: "请输入数量", trigger: "blur" }],
- price: [{ required: true, message: "请输入单价", trigger: "blur" }],
- amount: [{ required: true, message: "请输入金额", trigger: "blur" }],
- payName: [{ required: true, message: "请输入收费项目", trigger: ["change", "blur"] }],
- warranty: [{ required: true, message: "请输入质保期", trigger: "blur" }],
- deliveryType: [{ required: true, message: "请选择交货类型", trigger: "change" }],
- address: [{ required: true, message: "请输入详细地址", trigger: "blur" }],
- deliveryTime: [{ required: true, message: "请选择交付日期", trigger: "change" }],
- paymentMethod: [{ required: true, message: "请选择付款方式", trigger: "change" }],
- invoiceType: [{ required: true, message: "请选择付款方式", trigger: "change" }],
- contractTemplateId: [{ required: true, message: "请选择合同模板", trigger: "change" }],
- remark: [{ required: true, message: "请输入条款内容", trigger: "change" }],
- });
- const getDict = () => {
- proxy.getDictOne(["invoice_type", "funds_payment_method"]).then((res) => {
- invoiceType.value = res["invoice_type"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- fundsPaymentMethod.value = res["funds_payment_method"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- });
- proxy.post("/contractTemplate/page", { pageNum: 1, pageSize: 999 }).then((res) => {
- templateList.value = res.rows.map((item) => {
- return {
- ...item,
- label: item.templateName,
- value: item.id,
- };
- });
- });
- proxy.post("/corporation/page", { pageNum: 1, pageSize: 999 }).then((res) => {
- corporationList.value = res.rows.map((item) => {
- return {
- ...item,
- label: item.name,
- value: item.id,
- };
- });
- });
- proxy.post("/supplierInfo/page", { pageNum: 1, pageSize: 999 }).then((res) => {
- supplierList.value = res.rows.map((item) => {
- return {
- ...item,
- label: item.name,
- value: item.id,
- };
- });
- });
- };
- getDict();
- const getCityData = (id, type, isChange) => {
- return proxy.post("/customizeArea/list", { parentId: id }).then((res) => {
- if (type === "20") {
- provinceData.value = res;
- if (isChange) {
- formData.data.provinceId = "";
- formData.data.provinceName = "";
- formData.data.cityId = "";
- formData.data.cityName = "";
- }
- } else if (type === "30") {
- cityData.value = res;
- if (isChange) {
- formData.data.cityId = "";
- formData.data.cityName = "";
- }
- } else {
- countryData.value = res;
- }
- });
- };
- getCityData("0");
- const changeBuyCorporation = (val) => {
- formData.data.buyCountryName = "";
- formData.data.buyProvinceName = "";
- formData.data.buyCityName = "";
- formData.data.buyAddress = "";
- if (val) {
- proxy.post("/corporation/detail", { id: val }).then((res) => {
- formData.data.buyAddress = res.address;
- Promise.all([getBuyCountryName(res.countryId), getBuyProvinceName(res.provinceId, res.countryId), getBuyCityName(res.cityId, res.provinceId)]).then(
- () => {
- changeAddress();
- }
- );
- });
- }
- };
- const changeAddress = () => {
- if (formData.data.deliveryType === 1) {
- let buyCountryName = "";
- if (formData.data.buyCountryName) {
- buyCountryName = formData.data.buyCountryName;
- }
- let buyProvinceName = "";
- if (formData.data.buyProvinceName) {
- buyProvinceName = formData.data.buyProvinceName;
- }
- let buyCityName = "";
- if (formData.data.buyCityName) {
- buyCityName = formData.data.buyCityName;
- }
- let buyAddress = "";
- if (formData.data.buyAddress) {
- buyAddress = formData.data.buyAddress;
- }
- formData.data.address = buyCountryName + ", " + buyProvinceName + ", " + buyCityName + "," + buyAddress;
- } else if (formData.data.deliveryType === 2) {
- let countryName = "";
- if (formData.data.countryId) {
- let data = countryData.value.filter((item) => item.id === formData.data.countryId);
- if (data && data.length > 0) countryName = data[0].chineseName;
- }
- let provinceName = "";
- if (formData.data.provinceId) {
- let data = provinceData.value.filter((item) => item.id === formData.data.provinceId);
- if (data && data.length > 0) provinceName = data[0].name;
- } else {
- if (formData.data.provinceName) {
- provinceName = formData.data.provinceName;
- }
- }
- let cityName = "";
- if (formData.data.cityId) {
- let data = cityData.value.filter((item) => item.id === formData.data.cityId);
- if (data && data.length > 0) cityName = data[0].name;
- } else {
- if (formData.data.cityName) {
- cityName = formData.data.cityName;
- }
- }
- let sellAddress = "";
- if (formData.data.sellAddress) {
- sellAddress = formData.data.sellAddress;
- }
- formData.data.address = countryName + ", " + provinceName + ", " + cityName + "," + sellAddress;
- }
- };
- const changeSellAddress = (val, index) => {
- Promise.all([getCityData(val, index, true)]).then(() => {
- changeAddress();
- });
- };
- const getBuyCountryName = (val) => {
- return proxy.post("/customizeArea/list", { parentId: "0" }).then((resCountry) => {
- let buyCountryData = resCountry.filter((item) => item.id === val);
- if (buyCountryData && buyCountryData.length > 0) {
- formData.data.buyCountryName = buyCountryData[0].chineseName;
- } else {
- formData.data.buyCountryName = "";
- }
- });
- };
- const getBuyProvinceName = (val, countryId) => {
- if (val) {
- return proxy.post("/customizeArea/list", { parentId: countryId }).then((resProvince) => {
- let buyProvinceData = resProvince.filter((item) => item.id === val);
- if (buyProvinceData && buyProvinceData.length > 0) {
- formData.data.buyProvinceName = buyProvinceData[0].name;
- } else {
- formData.data.buyProvinceName = "";
- }
- });
- } else {
- formData.data.buyProvinceName = "";
- return;
- }
- };
- const getBuyCityName = (val, provinceId) => {
- if (val) {
- return proxy.post("/customizeArea/list", { parentId: provinceId }).then((resCity) => {
- let buyCityData = resCity.filter((item) => item.id === val);
- if (buyCityData && buyCityData.length > 0) {
- formData.data.buyCityName = buyCityData[0].name;
- } else {
- formData.data.buyCityName = "";
- }
- });
- } else {
- formData.data.buyCityName = "";
- return;
- }
- };
- const changeSupplier = (val) => {
- formData.data.countryId = "";
- formData.data.provinceId = "";
- formData.data.cityId = "";
- formData.data.sellPostalCode = "";
- formData.data.sellAddress = "";
- formData.data.sellContactName = "";
- formData.data.sellContactNumber = "";
- if (val) {
- let data = supplierList.value.filter((item) => item.id === val);
- if (data && data.length > 0) {
- formData.data.countryId = data[0].countryId;
- formData.data.provinceId = data[0].provinceId;
- formData.data.cityId = data[0].cityId;
- formData.data.sellAddress = data[0].areaDetail;
- formData.data.sellContactName = data[0].contactPerson;
- formData.data.sellContactNumber = data[0].contactNumber;
- if (formData.data.provinceId) {
- Promise.all([getCityData(formData.data.countryId, "20"), getCityData(formData.data.provinceId, "30")]).then(() => {
- changeAddress();
- });
- } else {
- Promise.all([getCityData(formData.data.countryId, "20")]).then(() => {
- changeAddress();
- });
- }
- }
- }
- };
- const onPicture = (path) => {
- window.open(path, "_blank");
- };
- const changeProject = () => {
- nextTick(() => {
- calculationAllAmount();
- });
- };
- const calculationAllAmount = () => {
- let amount = 0;
- if (formData.data.purchaseProductList && formData.data.purchaseProductList.length > 0) {
- for (let i = 0; i < formData.data.purchaseProductList.length; i++) {
- if (formData.data.purchaseProductList[i].amount) {
- amount = Number(parseFloat(Number(amount) + Number(formData.data.purchaseProductList[i].amount)).toFixed(2));
- }
- }
- }
- if (formData.data.purchaseProjectList && formData.data.purchaseProjectList.length > 0) {
- for (let i = 0; i < formData.data.purchaseProjectList.length; i++) {
- if (formData.data.purchaseProjectList[i].amount) {
- amount = Number(parseFloat(Number(amount) + Number(formData.data.purchaseProjectList[i].amount)).toFixed(2));
- }
- }
- }
- formData.data.amount = amount;
- };
- const calculationProductAmount = (index) => {
- if (
- formData.data.purchaseProductList &&
- formData.data.purchaseProductList.length > 0 &&
- formData.data.purchaseProductList[index].purchaseProductMountingsList &&
- formData.data.purchaseProductList[index].purchaseProductMountingsList.length > 0
- ) {
- let amount = 0;
- for (let i = 0; i < formData.data.purchaseProductList[index].purchaseProductMountingsList.length; i++) {
- if (formData.data.purchaseProductList[index].purchaseProductMountingsList[i].amount) {
- amount = Number(parseFloat(Number(amount) + Number(formData.data.purchaseProductList[index].purchaseProductMountingsList[i].amount)).toFixed(2));
- }
- }
- formData.data.purchaseProductList[index].amount = amount;
- let price = 0;
- if (formData.data.purchaseProductList[index].quantity && amount) {
- price = Number(parseFloat(Number(amount) / Number(formData.data.purchaseProductList[index].quantity)).toFixed(4));
- }
- formData.data.purchaseProductList[index].price = price;
- }
- nextTick(() => {
- calculationAllAmount();
- });
- };
- const changeProductMaterial = (index, indexTwo) => {
- nextTick(() => {
- if (
- formData.data.purchaseProductList &&
- formData.data.purchaseProductList.length > 0 &&
- formData.data.purchaseProductList[index].purchaseProductMountingsList &&
- formData.data.purchaseProductList[index].purchaseProductMountingsList.length > 0
- ) {
- if (indexTwo === 0 && formData.data.purchaseProductList[index].purchaseProductMountingsList[indexTwo].quantity) {
- formData.data.purchaseProductList[index].quantity = formData.data.purchaseProductList[index].purchaseProductMountingsList[indexTwo].quantity;
- }
- if (
- formData.data.purchaseProductList[index].purchaseProductMountingsList[indexTwo].quantity &&
- formData.data.purchaseProductList[index].purchaseProductMountingsList[indexTwo].price
- ) {
- formData.data.purchaseProductList[index].purchaseProductMountingsList[indexTwo].amount = Number(
- parseFloat(
- Number(formData.data.purchaseProductList[index].purchaseProductMountingsList[indexTwo].quantity) *
- Number(formData.data.purchaseProductList[index].purchaseProductMountingsList[indexTwo].price)
- ).toFixed(2)
- );
- } else {
- formData.data.purchaseProductList[index].purchaseProductMountingsList[indexTwo].amount = 0;
- }
- }
- nextTick(() => {
- calculationProductAmount(index);
- });
- });
- };
- const handleRemove = async (index, indexTwo) => {
- await formData.data.purchaseProductList[index].purchaseProductMountingsList.splice(indexTwo, 1);
- nextTick(() => {
- calculationProductAmount(index);
- });
- };
- const clickAdd = () => {
- if (formData.data.purchaseProjectList && formData.data.purchaseProjectList.length > 0) {
- formData.data.purchaseProjectList.push({
- payName: "",
- amount: undefined,
- remark: "",
- });
- } else {
- formData.data.purchaseProjectList = [{ payName: "", amount: undefined, remark: "" }];
- }
- };
- const handleDelete = async (index) => {
- await formData.data.purchaseProjectList.splice(index, 1);
- nextTick(() => {
- calculationAllAmount();
- });
- };
- const querySearch = (queryString, callback) => {
- proxy.post("/quotationPay/page", { payName: queryString }).then((res) => {
- if (res.rows && res.rows.length > 0) {
- res.rows = res.rows.map((item) => {
- return {
- ...item,
- value: item.payName,
- };
- });
- callback(res.rows);
- } else {
- callback([]);
- }
- });
- };
- const handleSubmit = async () => {
- let status = await submit.value.handleSubmit(() => {});
- if (status) {
- if (formData.data.purchaseArrivalList && formData.data.purchaseArrivalList.length > 0) {
- for (let i = 0; i < formData.data.purchaseProductList.length; i++) {
- let data = formData.data.purchaseArrivalList.filter((item) => item.productId === formData.data.purchaseProductList[i].productId);
- if (data && data.length > 0) {
- let quantity = 0;
- for (let j = 0; j < data.length; j++) {
- quantity = parseFloat(Number(quantity) + Number(data[j].quantity));
- }
- if (quantity > formData.data.purchaseProductList[i].quantity) {
- ElMessage("到货数量不能大于采购数量");
- return false;
- }
- }
- }
- }
- return true;
- } else {
- setTimeout(() => {
- const errorDiv = document.getElementsByClassName("is-error");
- errorDiv[0].scrollIntoView();
- }, 0);
- }
- return status;
- };
- // 接收父组件的传值
- const props = defineProps({
- queryData: Object,
- });
- watch(
- props.queryData,
- () => {
- formOption.disabled = judgeStatus();
- if (props.queryData && (route.query.processType == 10 || route.query.processType == 20)) {
- for (var text in props.queryData) {
- formData.data[text] = props.queryData[text];
- }
- if (formData.data.countryId) {
- getCityData(formData.data.countryId, "20");
- }
- if (formData.data.provinceId) {
- getCityData(formData.data.provinceId, "30");
- }
- }
- },
- {
- deep: true,
- }
- );
- const getFormData = () => {
- return formData.data;
- };
- // 向父组件暴露
- defineExpose({
- getFormData,
- handleSubmit,
- });
- onMounted(() => {
- if (props.queryData.ids) {
- proxy.post("/delivery/page", { ids: props.queryData.ids }).then((res) => {
- if (res.rows && res.rows.length > 0) {
- formData.data.purchaseProductList = res.rows.map((item) => {
- return {
- productId: item.productId,
- contractId: item.contractId,
- productName: item.productName,
- productModel: item.productModel,
- quantity: item.expendQuantity,
- price: "",
- amount: "",
- remark: "",
- json: "",
- fileUrl: "",
- dataResource: props.queryData.type,
- dataResourceId: item.id,
- purchaseProductMountingsList: [
- {
- productId: item.productId,
- productType: 1,
- productName: item.productName,
- productModel: item.productModel,
- quantity: item.expendQuantity,
- price: undefined,
- amount: "",
- remark: "",
- json: "",
- fileUrl: "",
- activeName: false,
- },
- ],
- fileList: [],
- };
- });
- formData.data.purchaseArrivalList = res.rows.map((item) => {
- return {
- code: item.productCode,
- productId: item.productId,
- productName: item.productName,
- arrivalTime: "",
- quantity: undefined,
- };
- });
- let fileIds = formData.data.purchaseProductList.map((item) => item.productId);
- proxy.post("/fileInfo/getList", { businessIdList: fileIds }).then((resFile) => {
- for (let i = 0; i < formData.data.purchaseProductList.length; i++) {
- if (resFile[formData.data.purchaseProductList[i].productId] && resFile[formData.data.purchaseProductList[i].productId].length > 0) {
- formData.data.purchaseProductList[i].fileUrl = resFile[formData.data.purchaseProductList[i].productId][0].fileUrl;
- formData.data.purchaseProductList[i].purchaseProductMountingsList[0].fileUrl = resFile[formData.data.purchaseProductList[i].productId][0].fileUrl;
- }
- }
- });
- } else {
- formData.data.purchaseProductList = [];
- }
- });
- }
- });
- const clickSplit = (item) => {
- formData.data.purchaseArrivalList.push({
- code: item.code,
- productId: item.productId,
- productName: item.productName,
- arrivalTime: "",
- remark: "",
- quantity: undefined,
- });
- };
- const clickDelete = (index) => {
- formData.data.purchaseArrivalList.splice(index, 1);
- };
- const updateContent = (val) => {
- formData.data.remark = val;
- };
- const remarkEditor = ref(null);
- const changeContractTemplate = (val) => {
- if (val) {
- proxy.post("/contractTemplate/detail", { id: val }).then((res) => {
- remarkEditor.value.changeHtml(res.templateContent);
- });
- }
- };
- const productRow = reactive({
- data: {
- productName: "",
- remark: "",
- },
- });
- const productIndex = ref(0);
- const openHandover = ref(false);
- const fileList = ref([]);
- const uploadData = ref({});
- const formHandoverConfig = computed(() => {
- return [
- {
- type: "title",
- title: "产品信息",
- label: "",
- },
- {
- type: "input",
- prop: "productName",
- label: "产品名称",
- itemType: "text",
- disabled: true,
- },
- {
- type: "input",
- prop: "productModel",
- label: "规格型号",
- itemType: "text",
- disabled: true,
- },
- {
- type: "slot",
- prop: "file",
- slotName: "file",
- label: "上传附件",
- },
- {
- type: "slot",
- slotName: "remark",
- label: "备注",
- },
- ];
- });
- const handleHandover = (row, index) => {
- productRow.data = {
- productName: row.productName,
- remark: row.remark,
- };
- if (row.fileList && row.fileList.length > 0) {
- fileList.value = row.fileList.map((item) => {
- return {
- raw: item,
- name: item.fileName,
- url: item.fileUrl,
- };
- });
- } else {
- fileList.value = [];
- }
- productIndex.value = index;
- openHandover.value = true;
- };
- const handleMaterial = (index) => {
- productIndex.value = index;
- openMaterialCompany.value = true;
- };
- const uploadFile = async (file) => {
- const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
- uploadData.value = res.uploadBody;
- file.id = res.id;
- file.fileName = res.fileName;
- file.fileUrl = res.fileUrl;
- file.uploadState = true;
- return true;
- };
- const handleSuccess = (any, UploadFile) => {
- UploadFile.raw.uploadState = false;
- };
- const onPreviewFile = (file) => {
- window.open(file.raw.fileUrl, "_blank");
- };
- const updateHandover = (val) => {
- productRow.data.remark = val;
- };
- const submitHandoverForm = () => {
- if (fileList.value && fileList.value.length > 0) {
- for (let i = 0; i < fileList.value.length; i++) {
- if (fileList.value[i].raw.uploadState) {
- ElMessage("文件上传中,请稍后提交");
- return;
- }
- }
- formData.data.purchaseProductList[productIndex.value].fileList = fileList.value.map((item) => {
- return {
- id: item.raw.id,
- fileName: item.raw.fileName,
- fileUrl: item.raw.fileUrl,
- uploadState: item.raw.uploadState,
- };
- });
- } else {
- formData.data.purchaseProductList[productIndex.value].fileList = [];
- }
- formData.data.purchaseProductList[productIndex.value].remark = productRow.data.remark;
- openHandover.value = false;
- };
- const selectMaterial = (goods) => {
- if (goods && goods.id) {
- let data = formData.data.purchaseProductList[productIndex.value].purchaseProductMountingsList.filter((item) => item.productId === goods.id);
- if (data && data.length > 0) {
- return ElMessage("该物料已添加");
- }
- let fileUrl = "";
- if (goods.fileList && goods.fileList.length > 0) {
- fileUrl = goods.fileList[0].fileUrl;
- }
- formData.data.purchaseProductList[productIndex.value].purchaseProductMountingsList.push({
- productId: goods.id,
- productType: 2,
- productName: goods.name,
- productModel: goods.spec,
- quantity: undefined,
- price: undefined,
- amount: "",
- remark: "",
- json: "",
- fileUrl: fileUrl,
- activeName: false,
- });
- ElMessage({
- message: "添加成功!",
- type: "success",
- });
- } else {
- return ElMessage("选择错误");
- }
- };
- const getStyle = (text) => {
- if (text) {
- return text.replace(/\n|\r\n/g, "<br>");
- } else {
- return "";
- }
- };
- </script>
- <style lang="scss" scoped>
- ::v-deep(.el-input-number .el-input__inner) {
- text-align: left;
- }
- .pic {
- object-fit: contain;
- width: 50px;
- height: 50px;
- cursor: pointer;
- vertical-align: middle;
- }
- .shrinkPadding {
- padding-right: 0 !important;
- }
- .hideCollapse {
- margin-top: -28px;
- border: 0 !important;
- }
- ::v-deep(.el-collapse-item__arrow) {
- display: none !important;
- }
- ::v-deep(.el-collapse-item__wrap) {
- border: 0 !important;
- }
- ::v-deep(.el-collapse-item__header) {
- border: 0 !important;
- }
- ::v-deep(.el-collapse-item__content) {
- padding-bottom: 8px !important;
- }
- .pic {
- object-fit: contain;
- width: 50px;
- height: 50px;
- cursor: pointer;
- vertical-align: middle;
- }
- ::v-deep(.removePadding) {
- .el-form-item {
- padding-right: 0 !important;
- }
- }
- </style>
|