1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360 |
- <template>
- <div style="width: 100%; padding: 0px 15px">
- <byForm
- :formConfig="formConfig"
- :formOption="formOption"
- v-model="formData.data"
- :rules="rules"
- ref="submit"
- >
- <template #seller>
- <div style="width: 100%">
- <el-form-item prop="sellCorporationId">
- <el-select
- v-model="formData.data.sellCorporationId"
- style="width: 100%"
- disabled
- >
- <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="sellCountryName">
- <el-input
- v-model="formData.data.sellCountryName"
- placeholder="请输入国家"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label=" " prop="sellProvinceName">
- <el-input
- v-model="formData.data.sellProvinceName"
- placeholder="请输入省/州"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label=" " prop="sellCityName">
- <el-input
- v-model="formData.data.sellCityName"
- 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">
- </el-input>
- </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>
- </template>
- <template #buyer>
- <div style="width: 100%">
- <div style="width: 100%">
- <el-form-item prop="buyCorporationId">
- <el-select
- v-model="formData.data.buyCorporationId"
- filterable
- style="width: 100%"
- @change="changeCustomer"
- >
- <el-option
- v-for="item in customerList"
- :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) => getCityData(val, '20', true)"
- >
- <el-option
- v-for="item in countryData"
- :label="item.name"
- :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) => getCityData(val, '30', true)"
- 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"
- >
- </selectCity>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label=" " prop="buyPostalCode">
- <el-input
- v-model="formData.data.buyPostalCode"
- placeholder="请输入邮编"
- />
- </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">
- </el-input>
- </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-autocomplete
- v-model="formData.data.buyContactName"
- :fetch-suggestions="querySearchPerson"
- clearable
- class="inline-input w-50"
- placeholder="请输入联系人"
- @select="handlePerson"
- >
- </el-autocomplete>
- </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>
- </div>
- </template>
- <template #commodity>
- <div style="width: 100%">
- <el-button @click="openProduct = true">添加商品</el-button>
- <el-table
- :data="formData.data.quotationProductList"
- style="width: 100%; margin-top: 16px"
- >
- <el-table-column label="商品图片" width="80">
- <template #default="{ row }">
- <div v-if="row.fileUrl">
- <img
- :src="row.fileUrl"
- class="pic"
- @click="onPicture(row.fileUrl)"
- />
- </div>
- <div v-else></div>
- </template>
- </el-table-column>
- <el-table-column prop="code" label="商品编码" width="120" />
- <el-table-column prop="name" label="商品中文名" width="160" />
- <el-table-column label="商品英文名" min-width="200">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'quotationProductList.' + $index + '.productName'"
- :rules="rules.productName"
- :inline-message="true"
- >
- <el-input
- v-model="row.productName"
- placeholder="请输入商品英文名"
- />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="规格型号" width="180">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'quotationProductList.' + $index + '.productModel'"
- :inline-message="true"
- >
- <el-input
- v-model="row.productModel"
- placeholder="请输入规格型号"
- />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- prop="unit"
- label="单位"
- width="100"
- :formatter="(row) => dictValueLabel(row.unit, productUnit)"
- />
- <el-table-column label="数量" width="150">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'quotationProductList.' + $index + '.quantity'"
- :rules="rules.quantity"
- :inline-message="true"
- >
- <el-input-number
- onmousewheel="return false;"
- v-model="row.quantity"
- placeholder="请输入数量"
- style="width: 100%"
- :controls="false"
- :min="0"
- @change="
- () => {
- return calculationAmount(
- 'quotationProductList',
- $index,
- 'quantity'
- );
- }
- "
- />
- </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="'quotationProductList.' + $index + '.price'"
- :rules="rules.price"
- :inline-message="true"
- >
- <el-input-number
- onmousewheel="return false;"
- v-model="row.price"
- placeholder="请输入单价"
- style="width: 100%"
- :controls="false"
- :min="0"
- @change="
- () => {
- return calculationAmount(
- 'quotationProductList',
- $index,
- 'price'
- );
- }
- "
- />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="amount" label="金额" width="100" />
- <el-table-column
- align="center"
- label="操作"
- width="80"
- fixed="right"
- >
- <template #default="{ $index }">
- <el-button type="primary" link @click="handleRemove($index)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- <template #otherCharge>
- <div style="width: 100%">
- <el-button type="primary" @click="clickAdd()">添加行</el-button>
- <el-table
- :data="formData.data.quotationPayList"
- style="width: 100%; margin-top: 16px"
- >
- <el-table-column label="收费项目" width="220">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'quotationPayList.' + $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="金额" width="180">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'quotationPayList.' + $index + '.amount'"
- :rules="rules.amount"
- :inline-message="true"
- >
- <el-input-number
- onmousewheel="return false;"
- v-model="row.amount"
- placeholder="请输入金额"
- style="width: 100%"
- :controls="false"
- :min="0"
- @change="
- () => {
- return totalAmount(
- 'quotationPayList',
- $index,
- 'amount'
- );
- }
- "
- />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="备注">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'quotationPayList.' + $index + '.remark'"
- >
- <el-input v-model="row.remark" placeholder="请输入备注" />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="80" fixed="right">
- <template #default="{ row, $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%">
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="4">
- <el-form-item label="币种" prop="currency">
- <el-select
- v-model="formData.data.currency"
- placeholder="请选择币种"
- style="width: 100%"
- >
- <el-option
- v-for="item in accountCurrency"
- :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="amount">
- <el-input
- v-model="formData.data.amount"
- placeholder="合同总金额"
- disabled
- />
- </el-form-item>
- </el-col>
- <el-col :span="4">
- <el-form-item label="报价有效期 (天)" prop="effective">
- <el-input-number
- onmousewheel="return false;"
- v-model="formData.data.effective"
- placeholder="请输入有效期"
- style="width: 100%"
- :precision="0"
- :controls="false"
- :min="0"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="7">
- <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="7">
- <el-form-item label="预付比例 (%)" prop="advanceRatio">
- <el-input-number
- onmousewheel="return false;"
- v-model="formData.data.advanceRatio"
- placeholder="请输入预付比例"
- style="width: 100%"
- :precision="2"
- :controls="false"
- :min="0"
- :max="100"
- />
- </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="7">
- <el-form-item label="贸易方式" prop="tradeMethods">
- <el-select
- v-model="formData.data.tradeMethods"
- placeholder="请选择贸易方式"
- style="width: 100%"
- >
- <el-option
- v-for="item in tradeMethods"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="7">
- <el-form-item label="运输方式" prop="transportMethod">
- <el-select
- v-model="formData.data.transportMethod"
- placeholder="请选择运输方式"
- style="width: 100%"
- >
- <el-option
- v-for="item in shippingMethod"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="7">
- <el-form-item label="运输说明" prop="transportRemark">
- <el-input
- v-model="formData.data.transportRemark"
- placeholder="请输入运输说明"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="14">
- <el-form-item label="付款条件" prop="remark">
- <el-input
- v-model="formData.data.remark"
- :rows="2"
- type="textarea"
- placeholder="请输入付款条件"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="7">
- <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>
- </byForm>
- <el-dialog
- v-if="openProduct"
- v-model="openProduct"
- title="选择商品"
- width="70%"
- append-to-body
- >
- <SelectGoods
- :selectList="acquireSelectList()"
- @cancel="openProduct = false"
- @pushGoods="pushGoods"
- ></SelectGoods>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import byForm from "@/components/byForm/index";
- import SelectGoods from "@/components/product/SelectGoods";
- import { ElMessage } from "element-plus";
- import selectCity from "@/components/selectCity/index.vue";
- import { useRoute } from "vue-router";
- const route = useRoute();
- const { proxy } = getCurrentInstance();
- const accountCurrency = ref([]);
- const fundsPaymentMethod = ref([]);
- const tradeMethods = ref([]);
- const shippingMethod = ref([]);
- const productUnit = ref([]);
- const templateList = ref([]);
- const corporationList = ref([]);
- const customerList = ref([]);
- const countryData = ref([]);
- const provinceData = ref([]);
- const cityData = ref([]);
- const customerUserList = ref([]);
- const openProduct = ref(false);
- const formData = reactive({
- data: {
- amount: undefined,
- quotationProductList: [],
- quotationPayList: [],
- },
- });
- const submit = ref(null);
- const judgeStatus = () => {
- if (route.query.processType == 20 || route.query.processType == 10) {
- return true;
- }
- 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: "title",
- title: "合同模板",
- label: "",
- },
- {
- type: "select",
- label: "选择合同模板",
- prop: "contractTemplateId",
- data: templateList.value,
- fn: (val) => {
- changeTemplate(val);
- },
- },
- {
- type: "slot",
- slotName: "seller",
- label: "卖方信息",
- itemWidth: 50,
- },
- {
- type: "slot",
- slotName: "buyer",
- label: "买方信息",
- itemWidth: 50,
- },
- {
- type: "slot",
- slotName: "commodity",
- label: "商品信息",
- },
- {
- type: "slot",
- slotName: "otherCharge",
- label: "其他收费项目",
- },
- {
- type: "slot",
- slotName: "offerMoney",
- label: "报价金额",
- },
- {
- type: "slot",
- slotName: "delivery",
- label: "交付信息",
- },
- ];
- });
- const rules = ref({
- contractTemplateId: [
- { required: true, message: "请选择合同模板", trigger: "change" },
- ],
- buyCorporationId: [
- { required: true, message: "请选择公司", trigger: "change" },
- ],
- countryId: [{ required: true, message: "请选择国家", trigger: "change" }],
- sellAddress: [{ required: true, message: "请输入详细地址", trigger: "blur" }],
- buyAddress: [{ required: true, message: "请输入详细地址", trigger: "blur" }],
- buyContactName: [
- { required: true, message: "请输入联系人", trigger: ["change", "blur"] },
- ],
- buyContactNumber: [
- { required: true, message: "请输入联系电话", trigger: "blur" },
- ],
- productName: [
- { required: true, message: "请输入商品英文名", trigger: "blur" },
- ],
- productModel: [
- { 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"] },
- ],
- currency: [{ required: true, message: "请选择币种", trigger: "change" }],
- effective: [{ required: true, message: "请输入报价有效期", trigger: "blur" }],
- paymentMethod: [
- { required: true, message: "请选择付款方式", trigger: "change" },
- ],
- advanceRatio: [
- { required: true, message: "请输入预付比例", trigger: "blur" },
- ],
- tradeMethods: [
- { required: true, message: "请选择贸易方式", trigger: "change" },
- ],
- transportMethod: [
- { required: true, message: "请选择运输方式", trigger: "change" },
- ],
- transportRemark: [
- { required: true, message: "请输入运输说明", trigger: "blur" },
- ],
- remark: [{ required: true, message: "请输入付款条件", trigger: "blur" }],
- });
- const getDict = () => {
- proxy
- .getDictOne([
- "account_currency",
- "funds_payment_method",
- "trade_mode",
- "shipping_method",
- "unit",
- ])
- .then((res) => {
- accountCurrency.value = res["account_currency"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- fundsPaymentMethod.value = res["funds_payment_method"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- tradeMethods.value = res["trade_mode"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- shippingMethod.value = res["shipping_method"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- productUnit.value = res["unit"].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,
- };
- });
- });
- };
- getDict();
- const changeTemplate = (val) => {
- formData.data.sellCorporationId = "";
- formData.data.sellContactName = "";
- formData.data.sellContactNumber = "";
- formData.data.sellCountryName = "";
- formData.data.sellProvinceName = "";
- formData.data.sellCityName = "";
- formData.data.sellAddress = "";
- if (val) {
- proxy.post("/contractTemplate/detail", { id: val }).then((res) => {
- formData.data.sellCorporationId = res.corporationId;
- if (res.corporationId) {
- proxy
- .post("/corporation/detail", { id: res.corporationId })
- .then((detailCorporation) => {
- if (detailCorporation.countryEnStr) {
- formData.data.sellCountryName = detailCorporation.countryEnStr;
- }
- if (detailCorporation.provinceEnStr) {
- formData.data.sellProvinceName = detailCorporation.provinceEnStr;
- }
- if (detailCorporation.cityEnStr) {
- formData.data.sellCityName = detailCorporation.cityEnStr;
- }
- if (detailCorporation.addressEn) {
- formData.data.sellAddress = detailCorporation.addressEn;
- }
- // proxy.post("/customizeArea/list", { parentId: "0" }).then((resCountry) => {
- // let sellCountryData = resCountry.filter((item) => item.id === detailCorporation.countryId);
- // if (sellCountryData && sellCountryData.length > 0) {
- // formData.data.sellCountryName = sellCountryData[0].chineseName;
- // } else {
- // formData.data.sellCountryName = "";
- // }
- // });
- // if (detailCorporation.countryId) {
- // proxy.post("/customizeArea/list", { parentId: detailCorporation.countryId }).then((resProvince) => {
- // let sellProvinceData = resProvince.filter((item) => item.id === detailCorporation.provinceId);
- // if (sellProvinceData && sellProvinceData.length > 0) {
- // formData.data.sellProvinceName = sellProvinceData[0].name;
- // } else {
- // formData.data.sellProvinceName = "";
- // }
- // });
- // } else {
- // formData.data.sellProvinceName = "";
- // }
- // if (detailCorporation.provinceId) {
- // proxy.post("/customizeArea/list", { parentId: detailCorporation.provinceId }).then((resCity) => {
- // let sellCityData = resCity.filter((item) => item.id === detailCorporation.cityId);
- // if (sellCityData && sellCityData.length > 0) {
- // formData.data.sellCityName = sellCityData[0].name;
- // } else {
- // formData.data.sellCityName = "";
- // }
- // });
- // } else {
- // formData.data.sellCityName = "";
- // }
- // formData.data.sellAddress = detailCorporation.address;
- });
- }
- formData.data.sellContactName = res.contactName;
- formData.data.sellContactNumber = res.contactNumber;
- });
- }
- };
- const getCityData = (id, type, isChange) => {
- 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 changeCustomer = (val) => {
- formData.data.buyContactName = "";
- formData.data.buyContactNumber = "";
- if (val) {
- proxy.post("/customer/detail", { id: val }).then(
- (res) => {
- if (res.customerUserList && res.customerUserList.length > 0) {
- formData.data.buyContactName = res.customerUserList[0].name;
- if (res.customerUserList[0].contactJson) {
- let contactJson = JSON.parse(res.customerUserList[0].contactJson);
- if (contactJson && contactJson.length > 0) {
- formData.data.buyContactNumber = contactJson[0].contactNo;
- }
- }
- customerUserList.value = res.customerUserList.map((item) => {
- return {
- ...item,
- value: item.name,
- };
- });
- }
- formData.data.countryId = res.countryId;
- formData.data.provinceId = res.provinceId;
- formData.data.cityId = res.cityId;
- formData.data.buyPostalCode = res.zipCode;
- formData.data.buyAddress = res.address;
- getCityData(formData.data.countryId, "20");
- if (formData.data.provinceId) {
- getCityData(formData.data.provinceId, "30");
- }
- },
- (err) => {
- console.log(err);
- formData.data.countryId = "";
- formData.data.provinceId = "";
- formData.data.cityId = "";
- formData.data.buyPostalCode = "";
- formData.data.buyAddress = "";
- }
- );
- } else {
- formData.data.countryId = "";
- formData.data.provinceId = "";
- formData.data.cityId = "";
- formData.data.buyPostalCode = "";
- formData.data.buyAddress = "";
- }
- };
- const createFilter = (queryString) => {
- return (restaurant) => {
- return (
- restaurant.value.toLowerCase().indexOf(queryString.toLowerCase()) === 0
- );
- };
- };
- const querySearchPerson = (queryString, callback) => {
- const results = queryString
- ? customerUserList.value.filter(createFilter(queryString))
- : customerUserList.value;
- callback(results);
- };
- const handlePerson = (item) => {
- formData.data.buyContactNumber = item.phone;
- };
- const pushGoods = (goods) => {
- if (goods && goods.length > 0) {
- let afterFiltering = [];
- if (
- formData.data.quotationProductList &&
- formData.data.quotationProductList.length > 0
- ) {
- afterFiltering = goods.filter((item) => {
- let data = formData.data.quotationProductList.filter(
- (itemProduct) => itemProduct.productId === item.id
- );
- if (data && data.length > 0) {
- return false;
- }
- return true;
- });
- } else {
- afterFiltering = goods;
- }
- formData.data.quotationProductList =
- formData.data.quotationProductList.concat(
- afterFiltering.map((item) => {
- let fileUrl = "";
- if (item.fileList && item.fileList.length > 0) {
- fileUrl = item.fileList[0].fileUrl;
- }
- let name = item.name;
- if (item.standardJson) {
- let standardJson = JSON.parse(item.standardJson);
- if (standardJson && standardJson.englishName) {
- name = standardJson.englishName;
- }
- }
- return {
- fileUrl: fileUrl,
- code: item.code,
- productId: item.id,
- name: item.name,
- productName: name,
- productModel: item.spec,
- unit: item.unit,
- quantity: undefined,
- price: undefined,
- amount: "",
- remark: item.remark,
- };
- })
- );
- ElMessage({
- message: "添加成功!",
- type: "success",
- });
- openProduct.value = false;
- } else {
- ElMessage("请选择至少一件商品");
- }
- };
- const onPicture = (path) => {
- window.open(path, "_blank");
- };
- const handleRemove = async (index) => {
- await formData.data.quotationProductList.splice(index, 1);
- totalAmount();
- };
- const calculationAmount = (listLabel, index, label) => {
- if (formData.data[listLabel][index][label]) {
- formData.data[listLabel][index][label] = Number(
- Math.round(Number(formData.data[listLabel][index][label]) * 10000) / 10000
- );
- }
- nextTick(() => {
- if (
- formData.data.quotationProductList &&
- formData.data.quotationProductList.length > 0
- ) {
- for (let i = 0; i < formData.data.quotationProductList.length; i++) {
- let money = 0;
- if (
- formData.data.quotationProductList[i].quantity &&
- formData.data.quotationProductList[i].price
- ) {
- money = Number(
- Math.round(
- Number(formData.data.quotationProductList[i].quantity) *
- Number(formData.data.quotationProductList[i].price) *
- 10000
- ) / 10000
- );
- }
- formData.data.quotationProductList[i].amount = money;
- }
- }
- nextTick(() => {
- totalAmount();
- });
- });
- };
- const totalAmount = (listLabel, index, label) => {
- if (listLabel && formData.data[listLabel][index][label]) {
- formData.data[listLabel][index][label] = Number(
- Math.round(Number(formData.data[listLabel][index][label]) * 10000) / 10000
- );
- }
- let money = 0;
- if (
- formData.data.quotationProductList &&
- formData.data.quotationProductList.length > 0
- ) {
- for (let i = 0; i < formData.data.quotationProductList.length; i++) {
- if (formData.data.quotationProductList[i].amount) {
- money = Number(
- Math.round(
- (Number(money) +
- Number(formData.data.quotationProductList[i].amount)) *
- 10000
- ) / 10000
- );
- }
- }
- }
- if (
- formData.data.quotationPayList &&
- formData.data.quotationPayList.length > 0
- ) {
- for (let i = 0; i < formData.data.quotationPayList.length; i++) {
- if (formData.data.quotationPayList[i].amount) {
- money = Number(
- Math.round(
- (Number(money) + Number(formData.data.quotationPayList[i].amount)) *
- 10000
- ) / 10000
- );
- }
- }
- }
- formData.data.amount = money;
- };
- const clickAdd = () => {
- if (
- formData.data.quotationPayList &&
- formData.data.quotationPayList.length > 0
- ) {
- formData.data.quotationPayList.push({
- payName: "",
- amount: undefined,
- remark: "",
- });
- } else {
- formData.data.quotationPayList = [
- { payName: "", amount: undefined, remark: "" },
- ];
- }
- };
- const handleDelete = async (index) => {
- await formData.data.quotationPayList.splice(index, 1);
- totalAmount();
- };
- 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 (flag) => {
- if (flag) {
- return true;
- } else {
- let status = await submit.value.handleSubmit(() => {});
- if (status) {
- if (
- !(
- formData.data.quotationProductList &&
- formData.data.quotationProductList.length > 0
- )
- ) {
- 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 &&
- ["10", "20", "30"].includes(route.query.processType)
- ) {
- for (var text in props.queryData) {
- formData.data[text] = props.queryData[text];
- }
- if (
- formData.data.quotationProductList &&
- formData.data.quotationProductList.length > 0
- ) {
- for (let i = 0; i < formData.data.quotationProductList.length; i++) {
- delete formData.data.quotationProductList[i].id;
- proxy
- .post("/productInfo/detail", {
- id: formData.data.quotationProductList[i].productId,
- })
- .then((resProduct) => {
- formData.data.quotationProductList[i].name = resProduct.name;
- formData.data.quotationProductList[i].code = resProduct.code;
- formData.data.quotationProductList[i].unit = resProduct.unit;
- });
- }
- let fileIds = formData.data.quotationProductList.map(
- (item) => item.productId
- );
- proxy
- .post("/fileInfo/getList", { businessIdList: fileIds })
- .then((resFile) => {
- for (
- let i = 0;
- i < formData.data.quotationProductList.length;
- i++
- ) {
- if (
- resFile[formData.data.quotationProductList[i].productId] &&
- resFile[formData.data.quotationProductList[i].productId]
- .length > 0
- ) {
- formData.data.quotationProductList[i].fileUrl =
- resFile[
- formData.data.quotationProductList[i].productId
- ][0].fileUrl;
- }
- }
- });
- }
- if (formData.data.countryId) {
- getCityData(formData.data.countryId, "20");
- }
- if (formData.data.provinceId) {
- getCityData(formData.data.provinceId, "30");
- }
- }
- },
- {
- deep: true,
- }
- );
- onMounted(() => {
- if (!route.query.processType || route.query.processType == 30) {
- proxy
- .post("/customer/privateSeaPage", { pageNum: 1, pageSize: 999 })
- .then((res) => {
- customerList.value = res.rows.map((item) => {
- return {
- ...item,
- label: item.name,
- value: item.id,
- };
- });
- });
- } else {
- proxy.post("/customer/page", { pageNum: 1, pageSize: 999 }).then((res) => {
- customerList.value = res.rows.map((item) => {
- return {
- ...item,
- label: item.name,
- value: item.id,
- };
- });
- });
- }
- // 生成合同、复制报价单
- if (props.queryData.priceSheetId) {
- proxy
- .post("/saleQuotation/detail", { id: props.queryData.priceSheetId })
- .then((res) => {
- res.countryId = res.buyCountryId;
- res.provinceId = res.buyProvinceId;
- res.cityId = res.buyCityId;
- for (var text in res) {
- formData.data[text] = res[text];
- }
- if (
- formData.data.quotationProductList &&
- formData.data.quotationProductList.length > 0
- ) {
- for (let i = 0; i < formData.data.quotationProductList.length; i++) {
- delete formData.data.quotationProductList[i].id;
- proxy
- .post("/productInfo/detail", {
- id: formData.data.quotationProductList[i].productId,
- })
- .then((resProduct) => {
- formData.data.quotationProductList[i].name = resProduct.name;
- formData.data.quotationProductList[i].code = resProduct.code;
- formData.data.quotationProductList[i].unit = resProduct.unit;
- });
- }
- let fileIds = formData.data.quotationProductList.map(
- (item) => item.productId
- );
- proxy
- .post("/fileInfo/getList", { businessIdList: fileIds })
- .then((resFile) => {
- for (
- let i = 0;
- i < formData.data.quotationProductList.length;
- i++
- ) {
- if (
- resFile[formData.data.quotationProductList[i].productId] &&
- resFile[formData.data.quotationProductList[i].productId]
- .length > 0
- ) {
- formData.data.quotationProductList[i].fileUrl =
- resFile[
- formData.data.quotationProductList[i].productId
- ][0].fileUrl;
- }
- }
- });
- }
- delete formData.data.id;
- delete formData.data.code;
- getCityData(formData.data.countryId, "20");
- if (formData.data.provinceId) {
- getCityData(formData.data.provinceId, "30");
- }
- if (
- formData.data.quotationPayList &&
- formData.data.quotationPayList.length > 0
- ) {
- formData.data.quotationPayList = formData.data.quotationPayList.map(
- (item) => {
- delete item.id;
- return {
- ...item,
- };
- }
- );
- }
- });
- }
- if (!route.query.processType && route.query.priceSheetIdOne) {
- proxy
- .post("/saleQuotation/detail", { id: props.queryData.priceSheetIdOne })
- .then((res) => {
- if (res && res.dataJson) {
- res = { ...res, ...JSON.parse(res.dataJson) };
- }
- res.countryId = res.buyCountryId;
- res.provinceId = res.buyProvinceId;
- res.cityId = res.buyCityId;
- for (var text in res) {
- formData.data[text] = res[text];
- }
- if (
- formData.data.quotationProductList &&
- formData.data.quotationProductList.length > 0
- ) {
- let fileIds = formData.data.quotationProductList.map(
- (item) => item.productId
- );
- proxy
- .post("/fileInfo/getList", { businessIdList: fileIds })
- .then((resFile) => {
- for (
- let i = 0;
- i < formData.data.quotationProductList.length;
- i++
- ) {
- if (
- resFile[formData.data.quotationProductList[i].productId] &&
- resFile[formData.data.quotationProductList[i].productId]
- .length > 0
- ) {
- formData.data.quotationProductList[i].fileUrl =
- resFile[
- formData.data.quotationProductList[i].productId
- ][0].fileUrl;
- }
- }
- });
- }
- getCityData(formData.data.countryId, "20");
- if (formData.data.provinceId) {
- getCityData(formData.data.provinceId, "30");
- }
- });
- }
- });
- const getFormData = () => {
- return proxy.deepClone(formData.data);
- };
- // 向父组件暴露
- defineExpose({
- getFormData,
- handleSubmit,
- });
- const acquireSelectList = () => {
- let data = [];
- if (
- formData.data.quotationProductList &&
- formData.data.quotationProductList.length > 0
- ) {
- data = formData.data.quotationProductList.map((item) => {
- return {
- id: item.productId,
- name: item.name,
- };
- });
- }
- return data;
- };
- </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;
- }
- </style>
|