| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445 |
- <template>
- <div class="borderless" v-loading="pageLoading">
- <div class="customer-head">
- <div class="customer-back">
- <el-button
- type="danger"
- style="border: none;background: none;color: red"
- icon="el-icon-arrow-left"
- @click="backToList"
- >返回列表
- </el-button>
- </div>
- <div class="add-customer-btn" v-if="showBut">
- <el-button type="info" @click="saveSell" size="small"
- >生成销售单</el-button
- >
- <el-button type="success" disabled size="small">
- 复制新单
- </el-button>
- <el-button
- type="primary"
- :disabled="disabled"
- @click="editCustomer"
- :loading="subLoading"
- v-if="detailData.status != 1"
- size="small"
- >{{ form.id ? "确认修改" : "确认新增" }}
- </el-button>
- </div>
- </div>
- <div class="customer-main">
- <containerTitle title="基础信息"></containerTitle>
- <basic-container>
- <avue-form
- ref="form"
- class="trading-form"
- v-model="form"
- :option="option"
- >
- <template slot="portOfLoad">
- <port-info
- v-model="form.portOfLoad"
- :disabled="detailData.status == 1"
- />
- </template>
- <template slot="portOfDestination">
- <port-info
- v-model="form.portOfDestination"
- :disabled="detailData.status == 1"
- />
- </template>
- <template slot="corpId">
- <select-component
- v-model="form.corpId"
- :configuration="configuration"
- :disabled="detailData.status == 1"
- @getRow="rowCorpdata"
- ></select-component>
- </template>
- <template slot="priceTerms">
- <el-select
- size="small"
- v-model="form.priceTerms"
- placeholder="请选择"
- @change="priceTermsChange"
- clearable
- >
- <el-option
- v-for="item in priceTermsList"
- :key="item.id"
- :label="item.dictValue"
- :value="item.dictValue"
- >
- </el-option>
- </el-select>
- </template>
- <template slot="paymentType">
- <el-select
- size="small"
- v-model="form.paymentType"
- placeholder="请选择"
- @change="paymentTypeChange"
- clearable
- >
- <el-option
- v-for="item in paymentTermList"
- :key="item.id"
- :label="item.dictValue"
- :value="item.dictValue"
- >
- </el-option>
- </el-select>
- </template>
- <template slot="boxNumber">
- <el-input
- size="mini"
- v-model="form.boxNumber"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/,
- "$1.$2")'
- placeholder="请输入 起订量"
- :disabled="detailData.status == 1"
- />
- </template>
- <template slot="minOrder">
- <el-input
- size="mini"
- v-model="form.minOrder"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/,
- "$1.$2")'
- placeholder="请输入 起订量"
- :disabled="detailData.status == 1"
- />
- </template>
- <template slot="predictOceanFreight">
- <el-input
- size="mini"
- v-model="form.predictOceanFreight"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/,
- "$1.$2")'
- placeholder="请输入 预计海运费"
- :disabled="detailData.status == 1"
- />
- </template>
- <template slot="referenceOceanFreight">
- <el-input
- size="mini"
- v-model="form.referenceOceanFreight"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/,
- "$1.$2")'
- placeholder="请输入 参考海运费"
- :disabled="detailData.status == 1"
- />
- </template>
- <template slot="oceanFreight">
- <el-input
- size="mini"
- v-model="form.oceanFreight"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/,
- "$1.$2")'
- placeholder="请输入 实际海运费"
- :disabled="detailData.status == 1"
- />
- </template>
- </avue-form>
- </basic-container>
- <containerTitle title="商品信息"></containerTitle>
- <basic-container>
- <avue-crud
- ref="crud"
- :data="data"
- :option="tableOption"
- @row-del="rowDel"
- :summary-method="summaryMethod"
- @saveColumn="saveColumn"
- :cell-style="cellStyle"
- >
- <template slot="menuLeft">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="small"
- @click.stop="newDetails"
- :disabled="detailData.status == 1"
- >新增明细</el-button
- >
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="small"
- @click.stop="addLibrary"
- :disabled="detailData.status == 1"
- >出口价格库</el-button
- >
- <el-button
- type="info"
- icon="el-icon-printer"
- size="small"
- @click.stop="openReport()"
- >报 表</el-button
- >
- <el-button
- type="info"
- size="small"
- @click.stop="savePurchase"
- :disabled="detailData.status == 1"
- >采购询价</el-button
- >
- <el-button
- type="info"
- size="small"
- @click.stop="saveShipping"
- :disabled="detailData.status == 1"
- >船务询价</el-button
- >
- </template>
- <template slot="menu" slot-scope="{ row, index }">
- <el-button
- size="small"
- icon="el-icon-edit"
- type="text"
- @click="rowCell(row, index)"
- :disabled="disabled"
- >{{ row.$cellEdit ? "保存" : "修改" }}</el-button
- >
- <el-button
- size="small"
- icon="el-icon-edit"
- type="text"
- @click="rowDel(row, index)"
- :disabled="detailData.status == 1"
- >删 除</el-button
- >
- </template>
- <template slot="itemType" slot-scope="{ row }">
- <el-select
- v-if="row.$cellEdit"
- v-model="row.itemType"
- filterable
- allow-create
- default-first-option
- placeholder="请输入"
- size="small"
- @focus="itemTypeFocus(row)"
- >
- <el-option
- v-for="(item, index) in itemtypeList"
- :key="index"
- :label="item.value"
- :value="item.value"
- >
- </el-option>
- </el-select>
- <span v-else>{{ row.itemType }}</span>
- </template>
- <template slot="cname" slot-scope="{ row, index }">
- <!-- <el-button
- size="small"
- type="text"
- @click="rePick(row, index)"
- :disabled="disabled"
- style="padding:4px 10px;float:left"
- >选择</el-button
- > -->
- <span v-if="row.$cellEdit" style="display:flex">
- <el-select
- v-model="row.cname"
- placeholder="请选择"
- size="small"
- style="width:60%"
- @change="cnameChange(row, index)"
- >
- <el-option
- v-for="item in goodsoptions"
- :key="item.id"
- :label="item.cname"
- :value="item.cname"
- >
- </el-option>
- </el-select>
- <el-button
- icon="el-icon-search"
- size="small"
- @click="rePick(row, index)"
- ></el-button>
- </span>
- <span v-else> {{ row.cname }}</span>
- </template>
- <template slot="partsList" slot-scope="{ row, index }">
- <el-button
- size="small"
- type="text"
- @click="partrePick(row, index)"
- :disabled="disabled"
- >操作</el-button
- >
- </template>
- <template slot="priorityReferrer" slot-scope="{ row }">
- <el-checkbox
- :disabled="!row.$cellEdit"
- v-model="row.priorityReferrer"
- :true-label="1"
- :false-label="0"
- />
- </template>
- <template slot="corpId" slot-scope="{ row, index }">
- <customer-dialog
- v-if="row.$cellEdit"
- v-model="row.corpName"
- :cropIndex="index"
- @getcorpId="getcorpId"
- ></customer-dialog>
- <span v-else>{{ row.corpName }}</span>
- </template>
- <template slot="purchaseAmount" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.purchaseAmount"
- size="small"
- placeholder="请输入"
- @change="priceChange(row)"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- ></el-input>
- <span v-else>{{ row.purchaseAmount | micrometerFormat }}</span>
- </template>
- <template slot="price" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.price"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- @change="priceChange(row)"
- ></el-input>
- <span v-else>{{ row.price | micrometerFormat }}</span>
- </template>
- <template slot="amount" slot-scope="{ row }">
- <span>{{ row.amount | micrometerFormat }}</span>
- </template>
- <template slot="orderQuantity" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.orderQuantity"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- @change="priceChange(row)"
- ></el-input>
- <span v-else>{{ row.orderQuantity }}</span>
- </template>
- <template slot="discount" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.discount"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- @change="discountChange(row)"
- ></el-input>
- <span v-else>{{ row.discount | isDiscount }}</span>
- </template>
- <template slot="insurance" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.insurance"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- @change="priceChange(row)"
- ></el-input>
- <span v-else>{{ row.insurance | micrometerFormat }}</span>
- </template>
- <template slot="freight" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.freight"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- @change="priceChange(row)"
- ></el-input>
- <span v-else>{{ row.freight | micrometerFormat }}</span>
- </template>
- <template slot="taxRate" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.taxRate"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- @change="taxRateChange(row)"
- ></el-input>
- <span v-else>{{ row.taxRate | isPercentage }}</span>
- </template>
- </avue-crud>
- </basic-container>
- <fee-info
- ref="feeInfo"
- :orderFeesList="orderFeesList"
- :disabled="detailData.status == 1"
- feeUrl="/blade-purchase-sales/orderfees/update"
- />
- </div>
- <el-dialog
- title="导入商品"
- append-to-body
- class="el-dialogDeep"
- :visible.sync="dialogVisible"
- width="60%"
- :close-on-click-modal="false"
- :destroy-on-close="true"
- :close-on-press-escape="false"
- @close="closeGoods"
- top="10vh"
- v-dialog-drag
- >
- <span>
- <el-row>
- <el-col :span="5">
- <div>
- <el-scrollbar>
- <basic-container style="margin-top:45px">
- <avue-tree :option="treeOption" @node-click="nodeClick" />
- </basic-container>
- </el-scrollbar>
- </div>
- </el-col>
- <el-col :span="19">
- <avue-crud
- :option="goodsOption"
- :table-loading="loading"
- :data="goodsList"
- ref="goodsCrud"
- @refresh-change="refreshChange"
- @selection-change="selectionChange"
- @row-click="rowClick"
- :page.sync="page"
- @on-load="onLoad"
- @saveColumn="saveGoodsColumn"
- :cell-style="cellStyle"
- ></avue-crud>
- </el-col>
- </el-row>
- </span>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button
- type="primary"
- @click="importGoods"
- :disabled="selectionList.length == 0"
- >导入</el-button
- >
- </span>
- </el-dialog>
- <report-dialog
- :switchDialog="switchDialog"
- :reportId="form.id"
- reportName="报价单明细(E)"
- @onClose="onClose()"
- ></report-dialog>
- <part-dialog
- ref="part"
- @partOpen="partOpen()"
- :partList="partList"
- @importPart="importPart"
- @partClosed="partClosed"
- @partReData="partReData"
- />
- <price-library ref="library" @importLibray="importLibray" />
- </div>
- </template>
- <script>
- import tableOption from "./config/customerContact.json";
- import goodsOption from "./config/commodity.json";
- import feeInfo from "@/components/fee-info/main";
- import customerDialog from "@/components/customer-dialog/main";
- import partDialog from "@/components/part-dialog/main";
- import {
- detail,
- submit,
- delItem,
- getDeptLazyTree,
- getGoods,
- savePurchase,
- saveShipping,
- getPorts,
- getSpecification,
- saveSell
- } from "@/api/basicData/customerInquiry";
- import reportDialog from "@/components/report-dialog/main";
- import priceLibrary from "@/components/price-Library/main";
- import { isDiscount, isPercentage, micrometerFormat } from "@/util/validate";
- import { contrastObj, contrastList } from "@/util/contrastData";
- import { dateFormat } from "@/util/date";
- import _ from "lodash";
- export default {
- name: "detailsPageEdit",
- data() {
- return {
- itemtypeList: [],
- configuration: {
- multipleChoices: false,
- multiple: false,
- collapseTags: false,
- placeholder: "请点击右边按钮选择",
- dicData: []
- },
- switchDialog: false,
- form: {
- orderStatus: "录入",
- businesDate: dateFormat(new Date(), "yyyy-MM-dd") + " 00:00:00"
- },
- disabled: false,
- dialogVisible: false,
- tableOption: {},
- option: {
- menuBtn: false,
- labelWidth: 100,
- column: [
- {
- label: "客户名称",
- prop: "corpId",
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ],
- span: 16,
- slot: true
- },
- {
- label: "系统号",
- prop: "sysNo",
- span: 8,
- disabled: true
- },
- {
- label: "联系人",
- prop: "corpAttn",
- span: 8
- },
- {
- label: "电话",
- prop: "corpTel",
- span: 8
- },
- {
- label: "订单状态",
- prop: "orderStatus",
- span: 8,
- type: "select",
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=order_status",
- props: {
- label: "dictValue",
- value: "dictValue"
- }
- },
- {
- label: "起运港",
- prop: "portOfLoad",
- span: 8,
- type: "select",
- filterable: true,
- dicData: [],
- props: {
- label: "name",
- value: "name"
- }
- },
- {
- label: "目的港",
- prop: "portOfDestination",
- span: 8,
- type: "select",
- filterable: true,
- dicData: [],
- props: {
- label: "name",
- value: "name"
- }
- },
- {
- label: "运输方式",
- prop: "transport",
- span: 8,
- type: "select",
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=mode_transport",
- props: {
- label: "dictValue",
- value: "dictValue"
- }
- },
- {
- label: "价格条款",
- prop: "priceTerms",
- span: 8
- // type: "select",
- // dicData:[],
- // props: {
- // label: "dictValue",
- // value: "dictValue"
- // }
- },
- {
- label: "条款说明",
- prop: "priceTermsDescription",
- span: 16
- },
- {
- label: "收款方式",
- prop: "paymentType",
- span: 8
- // type: "select",
- // dicUrl: "/api/blade-system/dict-biz/dictionary?code=payment_term",
- // props: {
- // label: "dictValue",
- // value: "dictValue"
- // }
- },
- {
- label: "收款说明",
- prop: "paymentTypeDescription",
- span: 16
- },
- {
- label: "订单日期",
- prop: "businesDate",
- span: 8,
- type: "date",
- format: "yyyy-MM-dd",
- valueFormat: "yyyy-MM-dd 00:00:00",
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- },
- {
- label: "有效日期",
- prop: "dateValidity",
- span: 8,
- type: "date",
- format: "yyyy-MM-dd",
- valueFormat: "yyyy-MM-dd 00:00:00"
- },
- {
- label: "订单号",
- prop: "orderNo",
- span: 8
- },
- {
- label: "币别",
- prop: "currency",
- span: 8,
- type: "select",
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=currency",
- props: {
- label: "dictValue",
- value: "dictValue"
- },
- change: ({ value }) => {
- if (value == "CNY") {
- this.form.exchangeRate = 1;
- }
- if (value == "USD") {
- this.form.exchangeRate = 6.3843;
- }
- }
- },
- {
- label: "汇率",
- prop: "exchangeRate",
- span: 8,
- slot: true,
- row: true,
- disabled: true
- },
- {
- label: "箱型",
- prop: "boxPile",
- type: "select",
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=boxType",
- props: {
- label: "dictValue",
- value: "dictValue"
- },
- span: 8
- },
- {
- label: "箱量",
- prop: "boxNumber",
- span: 8
- },
- {
- label: "起订量",
- prop: "minOrder",
- span: 8
- },
- {
- label: "预计海运费",
- prop: "predictOceanFreight",
- span: 8
- },
- {
- label: "参考海运费",
- prop: "referenceOceanFreight",
- span: 8
- },
- {
- label: "实际海运费",
- prop: "oceanFreight",
- span: 8
- },
- {
- label: "毛利额",
- prop: "grossProfit",
- span: 8,
- disabled: true
- },
- {
- label: "毛利率",
- prop: "grossProfitRate",
- span: 8,
- row: true,
- append: "%",
- disabled: true
- },
- {
- label: "备注",
- prop: "orderRemark",
- type: "textarea",
- minRows: 2,
- span: 8
- },
- {
- label: "采购备注",
- prop: "purchaseRemark",
- type: "textarea",
- minRows: 2,
- span: 8
- },
- {
- label: "船务备注",
- prop: "shippingRemark",
- type: "textarea",
- minRows: 2,
- span: 8
- }
- ]
- },
- treeOption: {
- nodeKey: "id",
- lazy: true,
- treeLoad: function(node, resolve) {
- const parentId = node.level === 0 ? 0 : node.data.id;
- getDeptLazyTree(parentId).then(res => {
- resolve(
- res.data.data.map(item => {
- return {
- ...item,
- leaf: !item.hasChildren
- };
- })
- );
- });
- },
- addBtn: false,
- menu: false,
- size: "small",
- props: {
- label: "title",
- value: "value",
- children: "children"
- }
- },
- page: {
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- goodsOption: {},
- data: [],
- goodsList: [],
- selectionList: [],
- treeDeptId: null,
- orderFeesList: [],
- oldform: {
- orderStatus: "录入",
- businesDate: dateFormat(new Date(), "yyyy-MM-dd") + " 00:00:00"
- },
- olddata: [],
- oldorderFeesList: [],
- reData: null,
- loading: false,
- subLoading: false,
- pageLoading: false,
- showBut: true,
- partreData: null,
- partType: false,
- partList: [],
- goodsoptions: [],
- priceTermsList: [],
- paymentTermList: []
- };
- },
- props: {
- detailData: {
- type: Object
- }
- },
- components: {
- reportDialog,
- feeInfo,
- customerDialog,
- partDialog,
- priceLibrary
- },
- async created() {
- if (this.detailData.id) {
- this.getDetail(this.detailData.id);
- }
- this.tableOption = await this.getColumnData(
- this.getColumnName(1),
- tableOption
- );
- this.goodsOption = await this.getColumnData(
- this.getColumnName(26),
- goodsOption
- );
- if (this.detailData.status == 1) {
- this.option.disabled = true;
- }
- this.getWorkDicts("product_properties").then(res => {
- this.findObject(this.tableOption.column, "itemProp").dicData =
- res.data.data;
- });
- this.getWorkDicts("unit").then(res => {
- this.findObject(this.tableOption.column, "unit").dicData = res.data.data;
- });
- this.getWorkDicts("pricing_terms").then(res => {
- this.priceTermsList = res.data.data;
- });
- this.getWorkDicts("payment_term").then(res => {
- this.paymentTermList = res.data.data;
- });
- getPorts().then(res => {
- this.findObject(this.option.column, "portOfLoad").dicData = res.data;
- this.findObject(this.option.column, "portOfDestination").dicData =
- res.data;
- });
- getGoods(1, 500).then(res => {
- this.goodsoptions = res.data.data.records;
- });
- },
- filters: {
- isDiscount(val) {
- return isDiscount(val);
- },
- isPercentage(val) {
- return isPercentage(val);
- },
- micrometerFormat(val) {
- return micrometerFormat(val);
- }
- },
- methods: {
- cellStyle() {
- return "padding:0;height:40px;";
- },
- priceTermsChange(row) {
- this.priceTermsList.forEach(e => {
- if (row == e.dictValue) {
- this.form.priceTermsDescription = e.remark;
- }
- });
- },
- paymentTypeChange(row) {
- this.paymentTermList.forEach(e => {
- if (row == e.dictValue) {
- this.form.paymentTypeDescription = e.remark;
- }
- });
- },
- addLibrary() {
- if (!this.form.corpId) {
- return this.$message.error("请选择客户名称");
- }
- this.$refs.library.init(this.partType, this.partreData != null);
- },
- rowCorpdata(row) {
- this.form.coefficient = row.coefficient;
- },
- cnameChange(row) {
- this.goodsoptions.forEach(e => {
- if (e.cname == row.cname) {
- row.itemId = e.id;
- row.code = e.code;
- row.priceCategory = e.goodsTypeName;
- row.itemUrl = e.url;
- row.itemDescription = e.cnameDescription;
- row.unit = e.unit;
- }
- });
- },
- partReData(row) {
- this.partreData = row;
- this.partOpen();
- },
- saveSell() {
- if (!this.form.id) {
- return this.$message.error("此单据没有提交记录,请先提交");
- }
- this.$confirm("是否生成销售单?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- saveSell(this.form.id).then(res => {
- if (res.data.code == 200) {
- this.$message.success("生成成功");
- this.getDetail(this.form.id);
- }
- });
- });
- },
- partOpen() {
- this.partType = true;
- this.addLibrary();
- },
- rePick(row, index) {
- this.reData = {
- ...row,
- index: index
- };
- this.newDetails();
- },
- partrePick(row, index) {
- this.partList = row.partsList;
- this.$refs.part.init(index);
- },
- importPart(rows, sum, index) {
- this.data[index].partsList = rows;
- this.data[index].partsPrice = sum;
- const names = [];
- const namePrices = [];
- rows.map(e => {
- names.push(e.goodName);
- namePrices.push(e.goodName + ":" + e.price);
- });
- this.data[index].partsDescribe = names.join(",");
- this.data[index].partsPriceDescribe = namePrices.join(";");
- this.priceChange(this.data[index]);
- },
- partClosed() {
- this.partList = [];
- this.partreData = null;
- if (this.partType) {
- this.partType = false;
- }
- },
- getcorpId(row) {
- this.data[row.index].corpId = row.id;
- },
- rowCell(row, index) {
- if (row.$cellEdit == true) {
- this.$set(row, "$cellEdit", false);
- } else {
- this.$set(row, "$cellEdit", true);
- }
- },
- itemTypeFocus(row) {
- this.itemtypeList = [];
- getSpecification({ goodId: row.itemId }).then(res => {
- const data = res.data.data;
- this.itemtypeList = data.map(item => ({ value: item }));
- });
- },
- priceChange(row) {
- const sum = _.multiply(
- _.add(
- _.add(
- Number(
- _.multiply(
- row.price ? row.price : 0,
- row.orderQuantity ? row.orderQuantity : 0
- )
- ),
- Number(
- _.add(
- Number(row.insurance ? row.insurance : 0),
- Number(row.freight ? row.freight : 0)
- )
- )
- ),
- Number(row.partsPrice ? row.partsPrice : 0)
- ),
- _.divide(row.discount ? row.discount : 10, 10)
- );
- row.amount = Number(sum ? sum : 0).toFixed(2);
- // let amountSum = 0;
- // let purchaseAmountSum = 0;
- // let grossProfitRate = 0;
- // let grossProfit = 0;
- // this.data.forEach(e => {
- // amountSum = _.add(amountSum, Number(e.amount));
- // purchaseAmountSum = _.add(
- // purchaseAmountSum,
- // Number(
- // _.multiply(
- // Number(e.purchaseAmount ? e.purchaseAmount : 0),
- // Number(e.orderQuantity)
- // )
- // )
- // );
- // grossProfit = _.subtract(amountSum, purchaseAmountSum);
- // grossProfitRate =
- // amountSum != 0
- // ? _.multiply(
- // _.divide(_.subtract(amountSum, purchaseAmountSum), amountSum),
- // 100
- // )
- // : 0;
- // this.form.grossProfit = Number(grossProfit ? grossProfit : 0).toFixed(
- // 2
- // );
- // this.form.grossProfitRate = Number(
- // grossProfitRate ? grossProfitRate : 0
- // ).toFixed(2);
- // });
- },
- discountChange(row) {
- if (row.discount >= 10) {
- row.discount = null;
- this.$message.error("请正确输入折扣");
- }
- this.priceChange(row);
- },
- taxRateChange(row) {
- if (row.taxRate > 100) {
- row.taxRate = 0;
- this.$message.error("请正确输入税率");
- }
- },
- grossProfitRateChange(row) {
- if (row >= 100) {
- this.form.grossProfitRate = 0;
- this.$message.error("毛利率不能超过100%");
- }
- },
- saveShipping() {
- if (!this.form.id) {
- return this.$message.error("此单据没有提交记录,请先提交");
- }
- this.$confirm("是否生成船务询价单?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- saveShipping(this.form.id).then(res => {
- if (res.data.code == 200) {
- this.$message.success("生成成功");
- }
- });
- });
- },
- savePurchase() {
- if (!this.form.id) {
- return this.$message.error("此单据没有提交记录,请先提交");
- }
- this.$confirm("是否生成采购询价单?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- savePurchase(this.form.id).then(res => {
- if (res.data.code == 200) {
- this.$message.success("生成成功");
- }
- });
- });
- },
- rowSave(row) {
- this.$set(row, "$cellEdit", false);
- },
- rowDel(row, index) {
- this.$confirm("确定删除数据?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- if (row.id) {
- delItem(row.id).then(res => {
- this.$message({
- type: "success",
- message: "删除成功!"
- });
- this.data.splice(index, 1);
- });
- } else {
- this.$message({
- type: "success",
- message: "删除成功!"
- });
- this.data.splice(index, 1);
- }
- });
- },
- importGoods() {
- if (this.reData) {
- if (this.selectionList.length != 1) {
- return this.$message.error("重新选择的时候只能选择一条数据");
- } else {
- this.selectionList.forEach(e => {
- this.data.forEach((item, index) => {
- if (index == this.reData.index) {
- item.itemId = e.id;
- item.code = e.code;
- item.cname = e.cname;
- item.priceCategory = e.goodsTypeName;
- item.itemUrl = e.url;
- item.itemProp = this.reData.itemProp;
- item.partsList = this.reData.partsList;
- item.partsPrice = this.reData.ppartsPrice;
- item.itemDescription = e.cnameDescription;
- item.itemType = this.reData.itemType;
- item.tradeTerms = this.reData.tradeTerms;
- item.price = this.reData.price;
- item.orderQuantity = this.reData.orderQuantity;
- item.insurance = this.reData.insurance;
- item.freight = this.reData.freight;
- item.discount = this.reData.discount;
- item.amount = this.reData.amount;
- item.taxRate = this.reData.taxRate;
- item.unit = e.unit;
- item.remarks = this.reData.remarks;
- item.$cellEdit = true;
- }
- });
- });
- }
- } else {
- this.selectionList.forEach(e => {
- this.data.push({
- itemId: e.id,
- code: e.code,
- cname: e.cname,
- priceCategory: e.goodsTypeName,
- itemUrl: e.url,
- itemProp: null,
- itemDescription: e.cnameDescription,
- partsList: [],
- partsPrice: 0,
- itemType: null,
- tradeTerms: null,
- price: 0,
- orderQuantity: 0,
- insurance: 0,
- freight: 0,
- discount: null,
- amount: 0,
- taxRate: 0,
- unit: e.unit,
- remarks: null,
- $cellEdit: true
- });
- });
- }
- this.dialogVisible = false;
- },
- closeGoods() {
- this.selectionList = [];
- this.treeDeptId = "";
- this.reData = null;
- },
- selectionChange(list) {
- this.selectionList = list;
- },
- rowClick(row) {
- this.$refs.goodsCrud.toggleSelection([this.goodsList[row.$index]]);
- },
- nodeClick(data) {
- this.treeDeptId = data.id;
- this.page.currentPage = 1;
- this.onLoad(this.page);
- },
- //费用查询
- onLoad(page, params = {}) {
- this.loading = true;
- getGoods(page.currentPage, page.pageSize, this.treeDeptId)
- .then(res => {
- const data = res.data.data;
- this.page.total = data.total;
- this.goodsList = data.records;
- if (this.page.total) {
- this.goodsOption.height = window.innerHeight - 550;
- } else {
- this.goodsOption.height = window.innerHeight - 475;
- }
- })
- .finally(() => {
- this.loading = false;
- });
- },
- importLibray(rows, status) {
- if (status) {
- if (this.partreData) {
- rows.forEach(e => {
- this.partList.forEach((item, index) => {
- if (index == this.partreData.index) {
- item.goodId = e.itemId;
- item.goodTypeId = e.goodTypeId;
- item.goodTypeName = e.goodsTypeName;
- item.goodName = e.cname;
- item.price = e.purchaseAmount;
- item.goodNumber = this.partreData.goodNumber;
- item.amout = _.multiply(
- Number(
- this.partreData.goodNumber ? this.partreData.goodNumber : 0
- ),
- Number(e.purchaseAmount ? e.purchaseAmount : 0)
- );
- this.partreData.amout;
- item.$cellEdit = true;
- }
- });
- });
- } else {
- rows.forEach(e => {
- this.partList.push({
- goodId: e.itemId,
- goodTypeId: e.goodTypeId,
- goodTypeName: e.goodsTypeName,
- goodName: e.cname,
- price: e.purchaseAmount,
- goodNumber: 0,
- amout: 0,
- $cellEdit: true
- });
- });
- }
- } else {
- rows.forEach(e => {
- this.data.push({
- itemId: e.itemId,
- code: e.code,
- cname: e.cname,
- priceCategory: e.goodsTypeName,
- purchaseAmount: e.purchaseAmount,
- itemProp: e.goodNature,
- corpId: e.corpId,
- corpName: e.corpName,
- itemDescription:e.cnameDescription,
- partsList: [],
- partsPrice: 0,
- itemType: e.specs,
- tradeTerms: null,
- price: Number(
- _.multiply(
- Number(e.purchaseAmount),
- Number(_.add(1, _.divide(Number(this.form.coefficient), 100)))
- )
- ).toFixed(2),
- orderQuantity: 0,
- insurance: 0,
- freight: 0,
- discount: null,
- amount: 0,
- taxRate: 0,
- unit: e.unit,
- remarks: null,
- $cellEdit: true
- });
- });
- }
- },
- //商品明细导入
- newDetails() {
- if (!this.form.corpId) {
- return this.$message.error("请选择客户名称");
- }
- this.dialogVisible = !this.dialogVisible;
- },
- getDetail(id) {
- this.loading = true;
- this.showBut = false;
- this.pageLoading = true;
- detail(id)
- .then(res => {
- this.form = res.data.data;
- this.data = res.data.data.orderItemsList;
- this.orderFeesList = res.data.data.orderFeesList;
- this.oldform = res.data.data;
- this.olddata = this.deepClone(res.data.data.orderItemsList);
- this.oldorderFeesList = this.deepClone(res.data.data.orderFeesList);
- })
- .finally(() => {
- this.loading = false;
- this.showBut = true;
- this.pageLoading = false;
- });
- },
- //修改提交触发
- editCustomer(status) {
- this.$refs["form"].validate((valid, done) => {
- done();
- if (valid) {
- let orderFeesList = this.$refs.feeInfo.submitData();
- if (this.data.length > 0) {
- for (let i = 0; i < this.data.length; i++) {
- if (this.data[i].corpId == null) {
- return this.$message.error(`请输入第${i + 1}行的供应商`);
- }
- }
- }
- for (let i = 0; i < orderFeesList.length; i++) {
- if (orderFeesList[i].corpId == null) {
- return this.$message.error(`请输入第${i + 1}行的结算中心`);
- }
- if (orderFeesList[i].price == 0) {
- return this.$message.error(`请正确输入第${i + 1}行的销售价`);
- }
- if (orderFeesList[i].orderQuantity == 0) {
- return this.$message.error(`请正确输入第${i + 1}行的数量`);
- }
- }
- this.subLoading = true;
- submit({
- ...this.form,
- orderItemsList: this.data,
- orderFeesList: orderFeesList
- })
- .then(res => {
- if (res.data.code == 200) {
- this.$message.success(this.form.id ? "修改成功" : "提交成功");
- this.form = res.data.data;
- this.data = res.data.data.orderItemsList;
- this.orderFeesList = res.data.data.orderFeesList;
- this.oldform = res.data.data;
- this.olddata = this.deepClone(res.data.data.orderItemsList);
- this.oldorderFeesList = this.deepClone(
- res.data.data.orderFeesList
- );
- if (status == "goBack") {
- this.$emit("goBack");
- }
- }
- })
- .finally(() => {
- this.subLoading = false;
- });
- } else {
- return false;
- }
- });
- },
- //返回列表
- backToList() {
- let orderFeesList = this.$refs.feeInfo.submitData();
- if (
- contrastObj(this.form, this.oldform) ||
- contrastList(this.data, this.olddata) ||
- contrastList(orderFeesList, this.oldorderFeesList)
- ) {
- this.$confirm("数据发生变化未有提交记录, 是否提交?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- this.editCustomer("goBack");
- })
- .catch(() => {
- this.$emit("goBack");
- });
- } else {
- this.$emit("goBack");
- }
- },
- openReport() {
- this.switchDialog = !this.switchDialog;
- },
- onClose(val) {
- this.switchDialog = val;
- },
- summaryMethod({ columns, data }) {
- const sums = [];
- if (columns.length > 0) {
- columns.forEach((item, index) => {
- sums[0] = "合计";
- if (
- item.property == "orderQuantity" ||
- item.property == "amount" ||
- item.property == "insurance" ||
- item.property == "freight"
- ) {
- let qtySum = 0;
- let amountSum = 0;
- let insuranceSum = 0;
- let freightSum = 0;
- data.forEach(e => {
- qtySum = _.add(qtySum, Number(e.orderQuantity));
- amountSum = _.add(amountSum, Number(e.amount));
- insuranceSum = _.add(insuranceSum, Number(e.insurance));
- freightSum = _.add(freightSum, Number(e.freight));
- });
- //数量总计
- if (item.property == "orderQuantity") {
- sums[index] = qtySum ? qtySum.toFixed(2) : "0.00";
- }
- //金额总计
- if (item.property == "amount") {
- sums[index] = micrometerFormat(amountSum);
- }
- //保险总计
- if (item.property == "insurance") {
- sums[index] = micrometerFormat(insuranceSum);
- }
- //运费总计
- if (item.property == "freight") {
- sums[index] = micrometerFormat(freightSum);
- }
- }
- });
- }
- return sums;
- },
- async saveColumn() {
- const inSave = await this.saveColumnData(
- this.getColumnName(1),
- this.tableOption
- );
- if (inSave) {
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs.crud.$refs.dialogColumn.columnBox = false;
- }
- },
- async saveGoodsColumn() {
- const inSave = await this.saveColumnData(
- this.getColumnName(26),
- this.goodsOption
- );
- if (inSave) {
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs.goodsCrud.$refs.dialogColumn.columnBox = false;
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .trading-form ::v-deep .el-form-item {
- margin-bottom: 8px !important;
- }
- ::v-deep .el-form-item__error {
- display: none !important;
- }
- ::v-deep .select-component {
- display: flex !important;
- }
- </style>
|