123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358 |
- <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="primary"
- size="small"
- v-if="detailData.status == 1"
- class="el-button--small-yh "
- @click.stop="openEdit"
- >编辑
- </el-button>
- <el-dropdown style="margin-right: 8px;margin-left: 8px;">
- <el-button type="primary" size="small">
- 审核处理<i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item
- :disabled="form.status > 0"
- @click.native="pleaseCheck"
- >请核数据</el-dropdown-item
- >
- <el-dropdown-item disabled>审核进度</el-dropdown-item>
- <el-dropdown-item disabled>撤销请核</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- <el-dropdown style="margin-right: 8px;">
- <el-button type="warning" size="small">
- 账单处理<i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item @click.native="generateBill" :disabled="!form.id"
- >生成账单
- </el-dropdown-item>
- <el-dropdown-item @click.native="viewBill" :disabled="!form.id"
- >查看账单</el-dropdown-item
- >
- </el-dropdown-menu>
- </el-dropdown>
- <el-dropdown style="margin-right: 8px;">
- <el-button type="success" size="small">
- 业务处理<i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item @click.native="saveSell"
- >生成采购
- </el-dropdown-item>
- <el-dropdown-item :disabled="!form.id" @click.native="copyDoc"
- >复制单据</el-dropdown-item
- >
- </el-dropdown-menu>
- </el-dropdown>
- <el-button
- type="primary"
- :disabled="disabled"
- @click="editCustomer"
- :loading="subLoading"
- v-if="detailData.status != 1"
- size="small"
- >保存数据
- </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">
- <crop-select
- v-model="form.corpId"
- @getCorpData="getCorpData"
- corpType="KH"
- :disabled="detailData.status == 1"
- ></crop-select>
- </template>
- <template slot="belongToCorpId">
- <crop-select
- v-model="form.belongToCorpId"
- corpType="GS"
- :disabled="detailData.status == 1"
- ></crop-select>
- </template>
- <template slot="corpAttn">
- <el-select
- size="small"
- v-model="form.corpAttn"
- placeholder="请选择"
- @change="corpAttnChange"
- clearable
- :disabled="detailData.status == 1"
- >
- <el-option
- v-for="item in corpsattns"
- :key="item.id"
- :label="item.cname"
- :value="item.cname"
- >
- </el-option>
- </el-select>
- </template>
- <template slot="priceTerms">
- <el-select
- size="small"
- v-model="form.priceTerms"
- placeholder="请选择"
- @change="priceTermsChange"
- clearable
- :disabled="detailData.status == 1"
- >
- <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
- :disabled="detailData.status == 1"
- >
- <el-option
- v-for="item in paymentTermList"
- :key="item.id"
- :label="item.dictValue"
- :value="item.dictValue"
- >
- </el-option>
- </el-select>
- </template>
- <template slot="currency">
- <el-select
- size="small"
- v-model="form.currency"
- placeholder="请选择"
- @change="currencyChange"
- :disabled="detailData.status == 1"
- >
- <el-option
- v-for="item in currencyList"
- :key="item.id"
- :label="item.dictValue"
- :value="item.dictValue"
- >
- </el-option>
- </el-select>
- </template>
- <template slot="exchangeRate">
- <el-input
- size="small"
- v-model="form.exchangeRate"
- oninput="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- placeholder="请输入 汇率"
- :disabled="detailData.status == 1"
- @change="exchangeRateChange"
- />
- </template>
- <template slot="boxPile">
- <el-select
- size="small"
- v-model="form.boxPile"
- placeholder="请选择"
- clearable
- filterable
- :disabled="detailData.status == 1"
- >
- <el-option
- v-for="item in allBoxs"
- :key="item.id"
- :label="item.name"
- :value="item.name"
- >
- </el-option>
- </el-select>
- </template>
- <template slot="boxNumber">
- <el-input
- size="mini"
- v-model="form.boxNumber"
- oninput="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- placeholder="请输入 箱量"
- :disabled="detailData.status == 1"
- />
- </template>
- <template slot="minOrder">
- <el-input
- size="mini"
- v-model="form.minOrder"
- oninput="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- placeholder="请输入 起订量"
- :disabled="detailData.status == 1"
- />
- </template>
- <template slot="predictOceanFreight">
- <el-input
- size="mini"
- v-model="form.predictOceanFreight"
- oninput="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- placeholder="请输入 预计海运费"
- :disabled="detailData.status == 1"
- />
- </template>
- <template slot="referenceOceanFreight">
- <el-input
- size="mini"
- v-model="form.referenceOceanFreight"
- oninput="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- placeholder="请输入 参考海运费"
- :disabled="detailData.status == 1"
- />
- </template>
- <template slot="oceanFreight">
- <el-input
- size="mini"
- v-model="form.oceanFreight"
- oninput="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- placeholder="请输入 实际海运费"
- :disabled="detailData.status == 1"
- />
- </template>
- <template slot="orderNo">
- <el-input
- size="mini"
- v-model="form.orderNo"
- oninput="this.value=this.value.toUpperCase()"
- placeholder="请输入 "
- :disabled="detailData.status == 1"
- />
- </template>
- </avue-form>
- </basic-container>
- <div>
- <containerTitle title="商品信息"></containerTitle>
- <basic-container>
- <avue-crud
- ref="crud"
- :data="data"
- :option="tableOption"
- @row-del="rowDel"
- @selection-change="goodsSelectionChange"
- @saveColumn="saveColumn"
- @resetColumn="resetColumn"
- :summary-method="summaryMethod"
- :cell-style="cellStyle"
- >
- <template slot="headerSerial">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click.stop="addRow"
- :disabled="detailData.status == 1"
- circle
- ></el-button>
- </template>
- <template slot="cname" slot-scope="{ row, index }">
- <span v-if="row.$cellEdit" style="display:flex">
- <el-select
- v-model="row.itemId"
- 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.id"
- >
- </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="partsDescribe" slot-scope="{ row, index }">
- <span v-if="row.$cellEdit" style="display:flex">
- <el-input
- v-model="row.partsDescribe"
- size="small"
- placeholder="请点击右边按钮"
- ></el-input>
- <el-button
- icon="el-icon-edit"
- size="mini"
- @click="partrePick(row, index)"
- ></el-button>
- </span>
- <span v-else>{{ row.partsDescribe }}</span>
- </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="itemProp" slot-scope="{ row, index }">
- <span v-if="row.$cellEdit" style="display:flex">
- <el-input
- v-model="row.itemProp"
- size="small"
- placeholder="请点击右边按钮"
- ></el-input>
- <el-button
- icon="el-icon-edit"
- size="mini"
- @click="openProperty(row, index)"
- ></el-button>
- </span>
- <span v-else>{{ row.itemProp }}</span>
- </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 }">
- <span>{{ row.corpName }}</span>
- </template>
- <template slot="purchaseCost" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.purchaseCost"
- size="small"
- placeholder="请输入"
- oninput="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- ></el-input>
- <span v-else>{{ row.purchaseCost | micrometerFormat }}</span>
- </template>
- <template slot="purchaseAmount" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.purchaseAmount"
- size="small"
- placeholder="请输入"
- @change="purchaseAmountChange(row)"
- oninput="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- ></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="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- @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,"")'
- @change="priceChange(row)"
- ></el-input>
- <span v-else>{{ row.orderQuantity | IntegerFormat }}</span>
- </template>
- <template slot="actualQuantity" slot-scope="{ row }">
- <span>{{ row.actualQuantity | IntegerFormat }}</span>
- </template>
- <template slot="discount" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.discount"
- size="small"
- oninput="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- @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="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- @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="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- @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="value=value.replace(/[^0-9.]/g,'').replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"
- @change="taxRateChange(row)"
- ></el-input>
- <span v-else>{{ row.taxRate | isPercentage }}</span>
- </template>
- <template slot="itemMargin" slot-scope="{ row }">
- <span>{{ row.itemMargin | isPercentage }}</span>
- </template>
- <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="warning"
- icon="el-icon-plus"
- size="small"
- :disabled="detailData.status == 1 || orderItemIds.length == 0"
- @click="getInvoice"
- >生成发货单
- </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 || detailData.status == 1"
- >{{ row.$cellEdit ? "保存" : "修改" }}</el-button
- >
- <el-button
- size="small"
- icon="el-icon-delete"
- type="text"
- @click="rowDel(row)"
- :disabled="detailData.status == 1"
- >删除</el-button
- >
- </template>
- </avue-crud>
- </basic-container>
- </div>
- <fee-info
- ref="feeInfo"
- :orderFeesList="orderFeesList"
- :disabled="detailData.status == 1"
- feeUrl="/blade-purchase-sales/orderfees/update"
- optionType="CK"
- itemType="销售"
- @beforeFinance="beforeFinance"
- :corpId="form.corpId"
- />
- <containerTitle title="合同附件"></containerTitle>
- <c-upload
- typeUpload="CK"
- :data="orderFilesList"
- :disabled="detailData.status == 1"
- :enumerationValue="76"
- deleteUrl="/blade-purchase-sales/orderfiles/update"
- />
- <div>
- <containerTitle title="银行信息"></containerTitle>
- <basic-container>
- <avue-form
- class="trading-form"
- ref="form"
- v-model="form"
- :option="bankOption"
- />
- </basic-container>
- </div>
- <div>
- <containerTitle title="保险信息"></containerTitle>
- <basic-container>
- <avue-form
- class="trading-form"
- ref="form"
- v-model="form"
- :option="insuranceOption"
- />
- </basic-container>
- </div>
- <div>
- <containerTitle title="唛头"></containerTitle>
- <basic-container>
- <avue-form
- class="trading-form"
- ref="form"
- v-model="form"
- :option="markOption"
- />
- </basic-container>
- </div>
- </div>
- <el-dialog
- title="账单"
- append-to-body
- class="el-dialogDeep"
- :visible.sync="financialAccountDialog"
- width="60%"
- :close-on-click-modal="false"
- :destroy-on-close="true"
- :close-on-press-escape="false"
- v-dialog-drag
- >
- <financial-account
- billType="收费"
- :billData="billData"
- itemType="销售"
- @choceFun="choceFun"
- >
- </financial-account>
- </el-dialog>
- <el-dialog
- title="申请记录"
- append-to-body
- class="el-dialogDeep"
- :visible.sync="applicationDialog"
- width="60%"
- :close-on-click-modal="false"
- :destroy-on-close="true"
- :close-on-press-escape="false"
- v-dialog-drag
- >
- <bill-application :billId="form.id" @choceApplication="choceApplication">
- </bill-application>
- </el-dialog>
- <el-dialog
- title="导入商品"
- append-to-body
- class="el-dialogDeep"
- :visible.sync="dialogVisible"
- width="80%"
- :close-on-click-modal="false"
- :destroy-on-close="true"
- :close-on-press-escape="false"
- @close="closeGoods"
- top="5vh"
- v-dialog-drag
- >
- <span>
- <el-row>
- <el-col :span="4">
- <div>
- <el-scrollbar>
- <basic-container>
- <avue-tree
- :option="treeOption"
- @node-click="nodeClick"
- :style="treeStyle"
- />
- </basic-container>
- </el-scrollbar>
- </div>
- </el-col>
- <el-col :span="20">
- <avue-crud
- :option="goodsOption"
- :table-loading="loading"
- :data="goodsList"
- ref="goodsCrud"
- :search.sync="search"
- @search-change="searchChange"
- @refresh-change="refreshChange"
- @selection-change="selectionChange"
- @row-click="rowClick"
- :page.sync="page"
- @on-load="onLoad"
- @saveColumn="saveGoodsColumn"
- @resetColumn="resetGoodsColumn"
- :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"
- :partList="partList"
- @importPart="importPart"
- @partClosed="partClosed"
- />
- <price-library ref="library" @importLibray="importLibray" />
- <property-dialog ref="property" @importProperty="importProperty" />
- </div>
- </template>
- <script>
- import tableOption from "./config/customerContact.json";
- import goodsOption from "./config/commodity.json";
- import feeInfo from "@/components/fee-info/main";
- import uploadFile from "@/components/upload-file/main";
- import {
- detail,
- submit,
- delItem,
- getDeptLazyTree,
- getGoods,
- deliverGoods,
- getPorts,
- getSpecification,
- saveSell,
- getPricedetail,
- pleaseCheck
- } from "@/api/basicData/salesContract";
- import { getAllBoxs } from "@/api/basicData/portinformation";
- import _ from "lodash";
- import reportDialog from "@/components/report-dialog/main";
- import partDialog from "@/components/part-dialog/main";
- import {
- isDiscount,
- isPercentage,
- micrometerFormat,
- IntegerFormat
- } from "@/util/validate";
- import { contrastObj, contrastList } from "@/util/contrastData";
- import customerDialog from "@/components/customer-dialog/main";
- import priceLibrary from "@/components/price-Library/main";
- import propertyDialog from "@/components/property-dialog/main";
- import { dateFormat } from "@/util/date";
- import financialAccount from "@/components/finance/financialAccount";
- import billApplication from "@/components/bill/billApplication";
- import {
- productCal,
- sellingCal,
- amountCal,
- transformCal,
- grossProfitCal,
- STGPCal,
- numCal,
- costsCal,
- costCal
- } from "@/util/calculate";
- import { getCorpsattn } from "@/api/basicData/customerInformation";
- export default {
- name: "detailsPageEdit",
- data() {
- return {
- billData: {}, //账单需要数据
- corpsattns: [],
- financialAccountDialog: false,
- applicationDialog: false,
- oldExchange: null,
- treeStyle: "height:" + (window.innerHeight - 315) + "px",
- configuration: {
- multipleChoices: false,
- multiple: false,
- collapseTags: false,
- placeholder: "请点击右边按钮选择",
- dicData: []
- },
- switchDialog: false,
- form: {
- orderStatus: "录入",
- businesDate: dateFormat(new Date(), "yyyy-MM-dd") + " 00:00:00",
- currency: "USD"
- },
- 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: "belongToCorpId",
- span: 16,
- row: true
- },
- {
- label: "起运港",
- prop: "portOfLoad",
- span: 8,
- type: "select",
- filterable: true,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ],
- dicData: [],
- props: {
- label: "name",
- value: "name"
- }
- },
- {
- label: "目的港",
- prop: "portOfDestination",
- span: 8,
- type: "select",
- filterable: true,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ],
- 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",
- // dicUrl: "/api/blade-system/dict-biz/dictionary?code=pricing_terms",
- // 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: "plannedDeliveryDate",
- 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,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- },
- {
- label: "汇率",
- prop: "exchangeRate",
- span: 8,
- row: true,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- },
- {
- 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,
- append: "%",
- disabled: true
- },
- {
- label: "单票毛利",
- prop: "singleTicketMargin",
- span: 8,
- 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"
- }
- },
- bankOption: {
- menuBtn: false,
- labelWidth: 100,
- column: [
- {
- label: "外币银行",
- prop: "banks",
- span: 8
- },
- {
- label: "银行信息",
- prop: "banksAccountName",
- span: 16,
- type: "textarea",
- minRows: 2
- }
- ]
- },
- insuranceOption: {
- menuBtn: false,
- labelWidth: 100,
- column: [
- {
- label: "保险描述",
- prop: "insuranceRemarks",
- span: 24,
- type: "textarea",
- minRows: 2
- }
- ]
- },
- markOption: {
- menuBtn: false,
- labelWidth: 100,
- column: [
- {
- label: "唛头描述",
- prop: "marks",
- span: 24,
- type: "textarea",
- minRows: 2
- }
- ]
- },
- page: {
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- loading: false,
- goodsOption: {},
- data: [],
- goodsList: [],
- selectionList: [],
- treeDeptId: null,
- orderFeesList: [],
- orderFilesList: [],
- orderItemIds: [],
- itemtypeList: [],
- reData: null,
- oldform: {
- orderStatus: "录入",
- businesDate: dateFormat(new Date(), "yyyy-MM-dd") + " 00:00:00",
- currency: "USD"
- },
- olddata: [],
- oldorderFeesList: [],
- oldorderFilesList: [],
- subLoading: false,
- pageLoading: false,
- showBut: true,
- partType: false,
- partList: [],
- goodsoptions: [],
- priceTermsList: [],
- paymentTermList: [],
- currencyList: [],
- allBoxs: [],
- search: {}
- };
- },
- props: {
- detailData: {
- type: Object
- }
- },
- components: {
- reportDialog,
- feeInfo,
- uploadFile,
- customerDialog,
- partDialog,
- priceLibrary,
- propertyDialog,
- financialAccount,
- billApplication
- },
- async created() {
- if (this.detailData.id) {
- this.getDetail(this.detailData.id);
- }
- this.tableOption = await this.getColumnData(
- this.getColumnName(5),
- tableOption
- );
- this.goodsOption = await this.getColumnData(
- this.getColumnName(28),
- goodsOption
- );
- if (this.detailData.status == 1) {
- this.option.disabled = true;
- this.bankOption.disabled = true;
- this.insuranceOption.disabled = true;
- this.markOption.disabled = true;
- }
- getPorts().then(res => {
- this.findObject(this.option.column, "portOfLoad").dicData = res.data;
- this.findObject(this.option.column, "portOfDestination").dicData =
- res.data;
- });
- 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;
- });
- this.getWorkDicts("currency").then(res => {
- this.currencyList = res.data.data;
- if (!this.detailData.id) {
- this.currencyList.forEach(e => {
- if (e.dictValue == "USD") {
- this.form.exchangeRate = e.remark;
- this.oldform.exchangeRate = e.remark;
- this.oldExchange = e.remark;
- }
- });
- }
- });
- getGoods(1, 10).then(res => {
- if (res.data.data.total > 0) {
- this.goodsoptions = res.data.data.records;
- if (Math.ceil(res.data.data.total / 10) > 1) {
- for (let i = 2; i <= Math.ceil(res.data.data.total / 10); i++) {
- getGoods(i, 10).then(e => {
- this.goodsoptions = this.goodsoptions.concat(e.data.data.records);
- });
- }
- }
- }
- });
- getAllBoxs().then(res => {
- this.allBoxs = res.data.data;
- });
- },
- filters: {
- isDiscount(val) {
- return isDiscount(val);
- },
- isPercentage(val) {
- return isPercentage(val);
- },
- micrometerFormat(val) {
- return micrometerFormat(val);
- },
- IntegerFormat(num) {
- return IntegerFormat(num);
- }
- },
- methods: {
- cellStyle() {
- return "padding:0;height:40px;";
- },
- copyDoc() {
- this.$emit("copyOrder", this.form.id);
- },
- rowCorpData(row) {
- this.data[row.index].corpName = row.code;
- },
- priceTermsChange(row) {
- if (!this.form.priceTermsDescription) {
- if (row == "FOB" || row == "EXW") {
- this.form.priceTermsDescription = this.form.portOfLoad;
- } else {
- this.form.priceTermsDescription = this.form.portOfDestination;
- }
- }
- },
- corpAttnChange() {
- this.corpsattns.forEach(e => {
- if (this.form.corpId == e.pid) {
- this.form.corpTel = e.tel;
- }
- });
- },
- paymentTypeChange(row) {
- this.paymentTermList.forEach(e => {
- if (row == e.dictValue) {
- this.form.paymentTypeDescription = e.remark;
- }
- });
- },
- getCorpData(row) {
- this.form.coefficient = row.coefficient;
- if (this.data.length > 0) {
- this.data.forEach(e => {
- e.productPrice = productCal(
- e.purchaseAmount,
- e.partsPrice,
- this.form.coefficient
- );
- e.price = sellingCal(e.productPrice, this.form.exchangeRate);
- e.amount = amountCal(
- e.price,
- e.orderQuantity,
- e.freight,
- e.insurance,
- e.discount
- );
- e.itemMargin = grossProfitCal(
- e.purchaseAmount,
- e.partsPrice,
- e.price,
- this.form.exchangeRate
- );
- });
- }
- },
- cnameChange(row) {
- this.goodsoptions.forEach(e => {
- if (e.id == row.itemId) {
- row.cname = e.cname;
- row.code = e.code;
- row.corpId = e.corpId;
- row.corpName = e.corpCode;
- row.priceCategory = e.goodsTypeName;
- row.itemUrl = e.url;
- row.itemDescription = e.cnameDescription;
- row.unit = e.unit;
- row.purchaseAmount = 0;
- row.productPrice = productCal(
- 0,
- row.partsPrice,
- this.form.coefficient
- );
- row.price = sellingCal(
- productCal(0, row.partsPrice, this.form.coefficient),
- this.form.exchangeRate
- );
- row.amount = amountCal(
- sellingCal(
- productCal(0, row.partsPrice, this.form.coefficient),
- this.form.exchangeRate
- ),
- row.orderQuantity,
- row.freight,
- row.insurance,
- row.discount
- );
- row.itemMargin = grossProfitCal(
- 0,
- row.partsPrice,
- sellingCal(
- productCal(0, row.partsPrice, this.form.coefficient),
- this.form.exchangeRate
- ),
- this.form.exchangeRate
- );
- }
- });
- getPricedetail({ itemId: row.itemId, corpId: row.corpId }).then(res => {
- if (res.data.data) {
- this.goodsoptions.forEach(e => {
- if (e.id == row.itemId) {
- row.purchaseAmount = res.data.data.purchaseAmount;
- row.productPrice = productCal(
- res.data.data.purchaseAmount,
- row.partsPrice,
- this.form.coefficient
- );
- row.price = sellingCal(
- productCal(
- res.data.data.purchaseAmount,
- row.partsPrice,
- this.form.coefficient
- ),
- this.form.exchangeRate
- );
- row.amount = amountCal(
- sellingCal(
- productCal(
- res.data.data.purchaseAmount,
- row.partsPrice,
- this.form.coefficient
- ),
- this.form.exchangeRate
- ),
- row.orderQuantity,
- row.freight,
- row.insurance,
- row.discount
- );
- row.itemMargin = grossProfitCal(
- res.data.data.purchaseAmount,
- row.partsPrice,
- sellingCal(
- productCal(
- res.data.data.purchaseAmount,
- row.partsPrice,
- this.form.coefficient
- ),
- this.form.exchangeRate
- ),
- this.form.exchangeRate
- );
- }
- });
- }
- });
- },
- addLibrary() {
- if (!this.form.corpId) {
- return this.$message.error("请选择客户名称");
- }
- if (!this.form.currency) {
- return this.$message.error("请选择币别");
- }
- this.$refs.library.init(false);
- },
- 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;
- // 销售价=(配件采购价格+产品价格)/汇率 *(1+客户FOB系数/100)
- this.data[index].productPrice = productCal(
- this.data[index].purchaseAmount,
- this.data[index].partsPrice,
- this.form.coefficient
- );
- this.data[index].price = sellingCal(
- this.data[index].productPrice,
- this.form.exchangeRate
- );
- this.data[index].amount = amountCal(
- this.data[index].price,
- this.data[index].orderQuantity,
- this.data[index].freight,
- this.data[index].insurance,
- this.data[index].discount
- );
- this.data[index].itemMargin = grossProfitCal(
- this.data[index].purchaseAmount,
- this.data[index].partsPrice,
- this.data[index].price,
- this.form.exchangeRate
- );
- const names = [];
- const namePrices = [];
- let costsSum = 0;
- rows.map(e => {
- if (e.ename) {
- names.push(e.ename);
- }
- namePrices.push((e.goodName ? e.goodName : "") + ":" + e.amout);
- costsSum = costsCal(costsSum, e.partsCost, e.goodNumber);
- });
- this.data[index].partsDescribe = names.join(",");
- this.data[index].partsPriceDescribe = namePrices.join(";");
- this.data[index].partsCost = costsSum;
- this.priceChange(this.data[index]);
- },
- importProperty(row, index) {
- const arr = [];
- for (let key in row) {
- if (row[key]) {
- arr.push(row[key]);
- }
- }
- this.data[index].itemProp = arr.join(",");
- this.data[index].remarksOne = row.remarksOne;
- this.data[index].customTwo = row.customTwo;
- this.data[index].customThree = row.customThree;
- this.data[index].customFour = row.customFour;
- this.data[index].customFive = row.customFive;
- },
- partClosed() {
- this.partList = [];
- },
- 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("生成成功");
- }
- });
- });
- },
- rePick(row, index) {
- this.reData = {
- ...row,
- index: index
- };
- this.newDetails();
- },
- 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 }));
- });
- },
- purchaseAmountChange(row) {
- row.productPrice = productCal(
- row.purchaseAmount,
- row.partsPrice,
- this.form.coefficient
- );
- row.price = sellingCal(row.productPrice, this.form.exchangeRate);
- row.amount = amountCal(
- row.price,
- row.orderQuantity,
- row.freight,
- row.insurance,
- row.discount
- );
- row.itemMargin = grossProfitCal(
- row.purchaseAmount,
- row.partsPrice,
- row.price,
- this.form.exchangeRate
- );
- },
- priceChange(row) {
- row.amount = amountCal(
- row.price,
- row.orderQuantity,
- row.freight,
- row.insurance,
- row.discount
- );
- row.itemMargin = grossProfitCal(
- row.purchaseAmount,
- row.partsPrice,
- row.price,
- this.form.exchangeRate
- );
- },
- quantityChange(row) {
- if (Number(row.orderQuantity) < Number(row.actualQuantity)) {
- row.orderQuantity = row.actualQuantity;
- this.$message.error("修改的数量不能低于发货数量");
- }
- if (!row.orderQuantity) {
- row.orderQuantity = 0;
- } else {
- row.amount = amountCal(
- row.price,
- row.orderQuantity,
- row.freight,
- row.insurance,
- row.discount
- );
- }
- },
- currencyChange(row) {
- this.currencyList.forEach(e => {
- if (e.dictValue == row) {
- this.form.exchangeRate = e.remark;
- }
- });
- if (this.data.length > 0) {
- this.data.forEach(e => {
- e.freight = transformCal(
- e.freight,
- this.oldExchange,
- this.form.exchangeRate
- );
- e.insurance = transformCal(
- e.insurance,
- this.oldExchange,
- this.form.exchangeRate
- );
- e.price = sellingCal(e.productPrice, this.form.exchangeRate);
- e.amount = amountCal(
- e.price,
- e.orderQuantity,
- e.freight,
- e.insurance,
- e.discount
- );
- e.itemMargin = grossProfitCal(
- e.purchaseAmount,
- e.partsPrice,
- e.price,
- this.form.exchangeRate
- );
- e.exchangeRate = this.form.exchangeRate;
- });
- }
- this.oldExchange = this.deepClone(this.form.exchangeRate);
- },
- exchangeRateChange(row) {
- if (this.data.length > 0) {
- this.data.forEach(e => {
- e.freight = transformCal(e.freight, this.oldExchange, row);
- e.insurance = transformCal(e.insurance, this.oldExchange, row);
- e.price = sellingCal(e.productPrice, row);
- e.amount = amountCal(
- e.price,
- e.orderQuantity,
- e.freight,
- e.insurance,
- e.discount
- );
- e.itemMargin = grossProfitCal(
- e.purchaseAmount,
- e.partsPrice,
- e.price,
- this.form.exchangeRate
- );
- e.exchangeRate = this.form.exchangeRate;
- });
- }
- this.oldExchange = this.deepClone(row);
- },
- discountChange(row) {
- if (row.discount >= 10) {
- row.discount = null;
- this.$message.error("请正确输入折扣");
- }
- this.priceChange(row);
- },
- taxRateChange(row) {
- if (Number(row.taxRate) >= 100) {
- row.taxRate = 0;
- this.$message.error("税率不能超过100%");
- }
- },
- rowSave(row) {
- this.$set(row, "$cellEdit", false);
- },
- rowDel(row) {
- this.$confirm("确定删除数据?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- if (row.id) {
- delItem(row.id).then(res => {
- this.$message({
- type: "success",
- message: "删除成功!"
- });
- this.data.splice(row.$index, 1);
- });
- } else {
- this.$message({
- type: "success",
- message: "删除成功!"
- });
- this.data.splice(row.$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.ename = e.ename;
- item.corpId = e.corpId;
- item.corpName = e.corpCode;
- item.priceCategory = e.goodsTypeName;
- item.itemUrl = e.url;
- item.itemProp = this.reData.itemProp;
- item.remarksOne = this.reData.remarksOne;
- item.customTwo = this.reData.customTwo;
- item.customThree = this.reData.customThree;
- item.customFour = this.reData.customFour;
- item.customFive = this.reData.customFive;
- 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.partsDescribe = this.reData.partsDescribe;
- item.purchaseCost = 0;
- item.purchaseAmount = 0;
- item.productPrice = productCal(
- 0,
- this.reData.partsPrice,
- this.form.coefficient
- );
- item.price = sellingCal(
- productCal(0, this.reData.partsPrice, this.form.coefficient),
- this.form.exchangeRate
- );
- item.orderQuantity = this.reData.orderQuantity;
- item.insurance = this.reData.insurance;
- item.freight = this.reData.freight;
- item.discount = this.reData.discount;
- item.amount = amountCal(
- sellingCal(
- productCal(
- 0,
- this.reData.partsPrice,
- this.form.coefficient
- ),
- this.form.exchangeRate
- ),
- this.reData.orderQuantity,
- this.reData.freight,
- this.reData.insurance,
- this.reData.discount
- );
- item.taxRate = this.reData.taxRate;
- item.itemMargin = grossProfitCal(
- 0,
- this.reData.partsPrice,
- sellingCal(
- productCal(
- 0,
- this.reData.partsPrice,
- this.form.coefficient
- ),
- this.form.exchangeRate
- ),
- this.form.exchangeRate
- );
- item.unit = e.unit;
- item.remarks = this.reData.remarks;
- item.exchangeRate = this.reData.exchangeRate;
- item.$cellEdit = true;
- }
- });
- });
- }
- } else {
- this.selectionList.forEach(e => {
- this.data.push({
- itemId: e.id,
- code: e.code,
- cname: e.cname,
- ename: e.ename,
- corpId: e.corpId,
- corpName: e.corpCode,
- priceCategory: e.goodsTypeName,
- itemUrl: e.url,
- itemProp: null,
- remarksOne: null,
- customTwo: null,
- customThree: null,
- customFour: null,
- customFive: 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,
- itemMargin: 0,
- remarks: null,
- purchaseCost: 0,
- purchaseAmount: 0,
- exchangeRate: this.form.exchangeRate,
- partsDescribe: null,
- $cellEdit: true
- });
- });
- }
- this.dialogVisible = false;
- },
- closeGoods() {
- this.selectionList = [];
- this.treeDeptId = "";
- this.reData = null;
- },
- goodsSelectionChange(list) {
- this.orderItemIds = [];
- list.map(e => {
- this.orderItemIds.push(e.id);
- });
- },
- 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);
- },
- searchChange(params, done) {
- this.search = this.deepClone(params);
- this.onLoad(this.page, params);
- done();
- },
- //费用查询
- onLoad(page, params = {}) {
- let obj = this.deepClone(Object.assign(params, this.search));
- this.loading = true;
- getGoods(page.currentPage, page.pageSize, this.treeDeptId, obj).then(
- res => {
- const data = res.data.data;
- this.page.total = data.total;
- this.goodsList = data.records;
- this.loading = false;
- if (this.page.total) {
- this.goodsOption.height = window.innerHeight - 350;
- }
- }
- );
- },
- importLibray(rows) {
- rows.forEach(e => {
- this.data.push({
- itemId: e.itemId,
- code: e.code,
- cname: e.cname,
- ename: e.ename,
- priceCategory: e.goodsTypeName,
- purchaseCost: costCal(e.price, e.taxRate),
- purchaseAmount: e.purchaseAmount,
- itemProp: null,
- remarksOne: null,
- customTwo: null,
- customThree: null,
- customFour: null,
- customFive: null,
- corpId: e.corpId,
- corpName: e.corpCode,
- itemDescription: e.cnameDescription,
- partsList: [],
- partsPrice: 0,
- itemType: e.specs,
- tradeTerms: null,
- productPrice: productCal(e.purchaseAmount, 0, this.form.coefficient),
- price: sellingCal(
- productCal(e.purchaseAmount, 0, this.form.coefficient),
- this.form.exchangeRate
- ),
- orderQuantity: 1,
- insurance: 0,
- freight: 0,
- discount: null,
- amount: sellingCal(
- productCal(e.purchaseAmount, 0, this.form.coefficient),
- this.form.exchangeRate
- ),
- taxRate: 0,
- unit: e.unit,
- itemMargin: grossProfitCal(
- e.purchaseAmount,
- 0,
- sellingCal(
- productCal(e.purchaseAmount, 0, this.form.coefficient),
- this.form.exchangeRate
- ),
- this.form.exchangeRate
- ),
- partsDescribe: null,
- remarks: null,
- exchangeRate: this.form.exchangeRate,
- $cellEdit: true
- });
- });
- },
- addRow() {
- this.data.push({ $cellEdit: true });
- },
- //商品明细导入
- newDetails() {
- if (!this.form.corpId) {
- return this.$message.error("请选择客户名称");
- }
- this.dialogVisible = !this.dialogVisible;
- },
- getDetail(id) {
- this.showBut = false;
- this.pageLoading = true;
- detail(id)
- .then(res => {
- if (this.detailData.status == "copy") {
- delete res.data.data.id;
- delete res.data.data.sysNo;
- delete res.data.data.orderNo;
- delete res.data.data.orgOrderNo;
- delete res.data.data.createTime;
- delete res.data.data.createUser;
- delete res.data.data.createUserName;
- delete res.data.data.updateTime;
- delete res.data.data.updateUser;
- delete res.data.data.updateUserName;
- delete res.data.data.morderNo;
- delete res.data.data.status;
- delete res.data.data.ifEnquiry;
- delete res.data.data.ifShipping;
- res.data.data.orderStatus = "录入";
- res.data.data.orderItemsList.forEach(e => {
- delete e.id;
- delete e.pid;
- delete e.createTime;
- delete e.createUser;
- delete e.updateTime;
- delete e.updateUser;
- delete e.orgOrderNo;
- delete e.srcId;
- delete e.status;
- delete e.isDeleted;
- });
- res.data.data.orderFeesList.forEach(e => {
- delete e.id;
- delete e.pid;
- delete e.createTime;
- delete e.createUser;
- delete e.updateTime;
- delete e.updateUser;
- delete e.status;
- delete e.isDeleted;
- });
- res.data.data.orderFilesList.forEach(e => {
- delete e.id;
- delete e.pid;
- delete e.createTime;
- delete e.createUser;
- delete e.updateTime;
- delete e.updateUser;
- delete e.status;
- delete e.isDeleted;
- });
- }
- this.form = res.data.data;
- this.data = res.data.data.orderItemsList;
- this.orderFeesList = res.data.data.orderFeesList;
- this.orderFilesList = res.data.data.orderFilesList;
- this.oldform = res.data.data;
- this.olddata = this.deepClone(res.data.data.orderItemsList);
- this.oldorderFeesList = this.deepClone(res.data.data.orderFeesList);
- this.oldorderFilesList = this.deepClone(res.data.data.orderFilesList);
- this.oldExchange = this.deepClone(this.form.exchangeRate);
- })
- .finally(() => {
- this.showBut = true;
- this.pageLoading = false;
- });
- },
- //修改提交触发
- editCustomer(status) {
- this.$refs["form"].validate((valid, done) => {
- done();
- if (valid) {
- let amountSum = 0;
- let reSum = 0;
- let costSum = 0;
- let paySum = 0;
- 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}行的供应商`);
- }
- amountSum = _.add(
- amountSum,
- _.multiply(
- numCal(this.data[i].amount),
- numCal(this.data[i].exchangeRate)
- )
- );
- costSum = _.add(
- costSum,
- _.multiply(
- _.add(
- numCal(this.data[i].purchaseAmount),
- numCal(this.data[i].partsPrice)
- ),
- numCal(this.data[i].orderQuantity)
- )
- );
- }
- this.data.forEach(e => {
- const ename = e.ename ? e.ename : "";
- const itemDescription = e.itemDescription
- ? e.itemDescription
- : "";
- const itemProp = e.itemProp ? e.itemProp : "";
- const partsDescribe = e.partsDescribe ? e.partsDescribe : "";
- e.productRemark =
- ename +
- "\n" +
- itemDescription +
- " " +
- itemProp +
- " " +
- partsDescribe;
- });
- }
- const orderFeesList = this.$refs.feeInfo.submitData();
- 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].quantity == 0) {
- return this.$message.error(`请正确输入第${i + 1}行的数量`);
- }
- if (!orderFeesList[i].currency) {
- return this.$message.error(`请正确选择第${i + 1}行的币别`);
- }
- if (!orderFeesList[i].exchangeRate) {
- return this.$message.error(`请正确输入第${i + 1}行的汇率`);
- }
- if (orderFeesList[i].feesType == 1) {
- reSum = _.add(
- reSum,
- _.multiply(
- numCal(orderFeesList[i].amount),
- numCal(orderFeesList[i].exchangeRate)
- )
- );
- }
- if (orderFeesList[i].feesType == 2) {
- paySum = _.add(
- paySum,
- _.multiply(
- numCal(orderFeesList[i].amount),
- numCal(orderFeesList[i].exchangeRate)
- )
- );
- }
- }
- this.form.singleTicketMargin = STGPCal(
- amountSum,
- reSum,
- costSum,
- paySum
- );
- this.subLoading = true;
- submit({
- ...this.form,
- orderItemsList: this.data,
- orderFeesList: orderFeesList,
- orderFilesList: this.orderFilesList
- })
- .then(res => {
- this.form = res.data.data;
- this.data = res.data.data.orderItemsList;
- this.orderFeesList = res.data.data.orderFeesList;
- this.orderFilesList = res.data.data.orderFilesList;
- this.$message.success("保存成功");
- this.oldform = res.data.data;
- this.olddata = this.deepClone(res.data.data.orderItemsList);
- this.oldorderFeesList = this.deepClone(
- res.data.data.orderFeesList
- );
- this.oldorderFilesList = this.deepClone(
- res.data.data.orderFilesList
- );
- this.oldExchange = this.deepClone(this.form.exchangeRate);
- if (status == "goBack") {
- if (this.form.id) {
- this.unLock({
- moduleName: "xs",
- tableName: "business_order",
- billId: this.form.id,
- billNo: this.form.orgOrderNo
- });
- }
- this.$emit("goBack");
- this.leaveDetailsKey(this.$route.name);
- }
- })
- .finally(() => {
- this.subLoading = false;
- });
- } else {
- return false;
- }
- });
- },
- generateBill() {
- this.financialAccountDialog = true;
- this.billData = {
- srcOrderno: this.form.orgOrderNo,
- itemType: "销售",
- corpsName: this.form.corpName,
- corpId: this.form.corpId,
- srcParentId: this.form.id,
- currency: "CNY",
- exchangeRate: "1",
- taxRate: "0",
- accDate: this.form.businesDate,
- srcType: 1,
- tradeType: "CK",
- optionType: "CK"
- };
- },
- choceFun() {
- this.financialAccountDialog = false;
- },
- viewBill() {
- this.applicationDialog = true;
- },
- //关闭记录
- choceApplication() {
- this.applicationDialog = false;
- },
- // 请核
- pleaseCheck() {
- this.$confirm("您确定提交此次申请吗?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- const data = {
- id: this.form.id,
- checkType: "xsqh",
- url: "/exportTrade/salesContract/index",
- pageStatus: "this.$store.getters.domSaleStatus",
- pageLabel: "销售(E)",
- checkFlag: 2
- };
- pleaseCheck(data).then(res => {
- this.$message.success("请核成功");
- this.getDetail(this.form.id);
- });
- });
- },
- //返回列表
- backToList() {
- let orderFeesList = this.$refs.feeInfo.submitData();
- if (
- contrastObj(this.form, this.oldform) ||
- contrastList(this.data, this.olddata) ||
- contrastList(orderFeesList, this.oldorderFeesList) ||
- contrastList(this.orderFilesList, this.oldorderFilesList)
- ) {
- this.$confirm("数据发生变化未有提交记录, 是否提交?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- this.editCustomer("goBack");
- })
- .catch(() => {
- if (this.form.id) {
- this.unLock({
- moduleName: "xs",
- tableName: "business_order",
- billId: this.form.id,
- billNo: this.form.orgOrderNo
- });
- }
- this.$emit("goBack");
- this.leaveDetailsKey(this.$route.name);
- });
- } else {
- if (this.form.id) {
- this.unLock({
- moduleName: "xs",
- tableName: "business_order",
- billId: this.form.id,
- billNo: this.form.orgOrderNo
- });
- }
- this.$emit("goBack");
- this.leaveDetailsKey(this.$route.name);
- }
- },
- openReport() {
- this.switchDialog = !this.switchDialog;
- },
- openProperty(row, index) {
- this.$refs.property.init(row, index);
- },
- onClose(val) {
- this.switchDialog = val;
- },
- getInvoice() {
- if (this.$store.getters.outStatus) {
- this.$alert("出口发货单存在,请保存发货单再进行操作", "温馨提示", {
- confirmButtonText: "确定",
- type: "warning",
- callback: action => {
- console.log(action);
- }
- });
- } else {
- this.inInvoice();
- }
- },
- inInvoice() {
- const data = { id: this.form.id, orderItemIds: this.orderItemIds };
- deliverGoods(data).then(res => {
- if (res.data.code == 200) {
- this.$message.success("生成成功");
- if (data) {
- const data = res.data.data;
- data.orderItemsList.forEach(e => {
- e.actualQuantity = e.orderQuantity;
- e.contractAmount = e.amount;
- e.srcId = e.id;
- e.specificationAndModel = e.itemType;
- e.productDesc = e.itemDescription;
- e.exRate0 = e.exchangeRate;
- delete e.id;
- delete e.version;
- delete e.status;
- delete e.createUser;
- delete e.createTime;
- delete e.updateUser;
- delete e.updateTime;
- delete e.isDeleted;
- });
- const obj = {
- corpId: data.corpId,
- deliveryStatus: "录入",
- srcOrderNo: data.sysNo,
- orgOrderNo: data.orgOrderNo,
- orderItemsList: data.orderItemsList,
- orderFeesList: data.deliveryFeesList
- };
- this.$router.$avueRouter.closeTag("/exportTrade/invoice/index");
- this.$router.push({
- path: "/exportTrade/invoice/index",
- query: {
- pageType: "Generate",
- data: JSON.stringify(obj)
- }
- });
- }
- }
- });
- },
- //费用明细回调
- beforeFinance(feesData, callback) {
- this.advantageProjectData = feesData;
- let params = {};
- //暂时默认通过 之后优化
- params.valid = true;
- params.parentId = this.form.id;
- params.srcOrderno = this.form.orderNo;
- callback(params);
- },
- openEdit() {
- const data = {
- moduleName: "xs",
- tableName: "business_order",
- billId: this.form.id,
- no: localStorage.getItem("browserID"),
- billNo: this.form.orgOrderNo
- };
- this.inDetailsKey(this.$route.name, {
- moduleName: "xs",
- tableName: "business_order",
- billId: this.form.id,
- billNo: this.form.orgOrderNo
- });
- this.checkLock(data).then(res => {
- if (res.data.code == 200) {
- this.onLock(data).then(res => {
- if (res.data.code == 200) {
- this.detailData.status = 2;
- this.option = this.$options.data().option;
- this.$refs.crud.refreshTable();
- }
- });
- }
- });
- },
- async saveColumn() {
- const inSave = await this.saveColumnData(
- this.getColumnName(5),
- this.tableOption
- );
- if (inSave) {
- this.$nextTick(() => {
- this.$refs.crud.doLayout();
- });
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs.crud.$refs.dialogColumn.columnBox = false;
- }
- },
- async resetColumn() {
- this.tableOption = tableOption;
- const inSave = await this.delColumnData(
- this.getColumnName(5),
- tableOption
- );
- if (inSave) {
- this.$nextTick(() => {
- this.$refs.crud.doLayout();
- });
- this.$message.success("重置成功");
- this.$refs.crud.$refs.dialogColumn.columnBox = false;
- }
- },
- summaryMethod({ columns, data }) {
- const sums = [];
- if (columns.length > 0) {
- columns.forEach((item, index) => {
- sums[0] = "合计";
- if (item.property == "orderQuantity" || item.property == "amount") {
- let qtySum = 0;
- let amountSum = 0;
- data.forEach(e => {
- qtySum = _.add(qtySum, Number(e.orderQuantity));
- amountSum = _.add(amountSum, Number(e.amount));
- });
- //数量总计
- if (item.property == "orderQuantity") {
- sums[index] = qtySum ? qtySum.toFixed(2) : "0.00";
- }
- //金额总计
- if (item.property == "amount") {
- sums[index] = micrometerFormat(amountSum);
- }
- }
- });
- }
- return sums;
- },
- async saveGoodsColumn() {
- const inSave = await this.saveColumnData(
- this.getColumnName(28),
- this.goodsOption
- );
- if (inSave) {
- this.$nextTick(() => {
- this.$refs.goodsCrud.doLayout();
- });
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs.goodsCrud.$refs.dialogColumn.columnBox = false;
- }
- },
- async resetGoodsColumn() {
- this.goodsOption = goodsOption;
- const inSave = await this.delColumnData(
- this.getColumnName(28),
- goodsOption
- );
- if (inSave) {
- this.$nextTick(() => {
- this.$refs.goodsCrud.doLayout();
- });
- this.$message.success("重置成功");
- //关闭窗口
- setTimeout(() => {
- this.$refs.goodsCrud.$refs.dialogColumn.columnBox = false;
- }, 1000);
- }
- }
- },
- watch: {
- "form.corpId": function(id) {
- if (id) {
- this.corpsattns = [];
- getCorpsattn({ pid: id }).then(res => {
- this.corpsattns = res.data.data.records;
- });
- }
- }
- }
- };
- </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>
|