123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514 |
- <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 :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">
- <trade-card title="基础信息">
- <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-scope="{}" slot="corpIdLabel">
- <span style="color: #409EFF;cursor: pointer" @click.stop="khEdit('kh')">客户名称:</span>
- </template>
- <template slot-scope="{}" slot="belongToCorpIdLabel"> <span style="color: #409EFF;cursor: pointer"
- @click.stop="khEdit('GS')">公司主体:</span>
- </template>
- <template slot-scope="{}" slot="portOfLoadLabel"> <span style="color: #409EFF;cursor: pointer"
- @click.stop="khEdit('portOfLoad')">起运港:</span>
- </template> <template slot-scope="{}" slot="portOfDestinationLabel"> <span
- style="color: #409EFF;cursor: pointer" @click.stop="khEdit('portOfLoad')">目的港:</span> </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="dateClause">
- <el-select size="small" v-model="form.dateClause" placeholder="请选择" @change="dateClauseChange"
- :disabled="detailData.status == 1" clearable>
- <el-option v-for="item in dateClauseList" :key="item.id" :label="item.dictValue" :value="item.dictValue">
- </el-option>
- </el-select>
- </template>
- <template slot="businesDate">
- <el-date-picker v-model="form.businesDate" type="date" format="yyyy-MM-dd"
- value-format="yyyy-MM-dd 00:00:00" @change="businesDateChange" :disabled="detailData.status == 1">
- </el-date-picker>
- </template>
- <template slot="currency">
- <el-select size="small" v-model="form.currency" placeholder="请选择" @change="currencyChange"
- :disabled="detailData.status == 1" clearable>
- <el-option v-for="item in currencyList" :key="item.id" :label="item" :value="item">
- </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>
- </trade-card>
- <goods-info ref="goodsInfo" :form="form" :data="data" :detailData="detailData" :orderFeesList.sync="orderFeesList"
- @formGoodstoFees="formGoodstoFees" @backToList="getDetail"></goods-info>
- <!-- <trade-card title="商品信息">
- <avue-crud ref="crud" :data="data" :option="tableOption" @row-del="rowDel"
- @selection-change="goodsSelectionChange" @saveColumn="saveColumn" @resetColumn="resetColumn"
- :summary-method="summaryMethod" :cell-style="cellStyle" @row-dblclick="handleRowDBLClick">
- <template slot="menuLeft">
- <el-row>
- <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>
- <el-button v-if="goodsEditShow && detailData.status != 1" size="small" type="primary" @click="handleSave">
- 保存明细</el-button>
- <el-button v-if="goodsEditShow" size="small" @click="handleClose">关闭明细</el-button>
- <el-button type="info" size="small" @click="cnameData">刷新基础资料</el-button>
- </el-row>
- <el-row>
- <avue-form v-if="goodsEditShow" class="trading-form" v-model="goodsEditForm" :option="goodsEditOption">
- <template slot="ename">
- <el-input type="textarea" size="small" v-model="goodsEditForm.ename" placeholder="请输入"
- :disabled="detailData.status == 1" @change="formEditChange(goodsEditForm)" />
- </template>
- <template slot="itemProp">
- <el-input type="textarea" size="small" v-model="goodsEditForm.itemProp" placeholder="请输入"
- :disabled="detailData.status == 1" @change="formEditChange(goodsEditForm)" />
- </template>
- <template slot="itemDescription">
- <el-input type="textarea" size="small" v-model="goodsEditForm.itemDescription" placeholder="请输入"
- :disabled="detailData.status == 1" @change="formEditChange(goodsEditForm)" />
- </template>
- <template slot="partsDescribe">
- <el-input type="textarea" size="small" v-model="goodsEditForm.partsDescribe" placeholder="请输入"
- :disabled="detailData.status == 1" @change="formEditChange(goodsEditForm)" />
- </template>
- </avue-form>
- </el-row>
- </template>
- <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="codeHeader" slot-scope="{column}"> <span style="color: #409EFF;cursor: pointer"
- @click.stop="khEdit('cname')">{{column.label}}</span>
- </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="ename" slot-scope="{ row, index }">
- <el-input v-if="row.$cellEdit" v-model="row.ename" size="small" placeholder="请点击右边按钮"
- @change="editChange(row)">
- </el-input>
- <span v-else>{{ row.ename }}</span>
- </template>
- <template slot="itemDescription" slot-scope="{ row, index }">
- <span v-if="row.$cellEdit" style="display:flex">
- <el-input v-model="row.itemDescription" size="small" placeholder="请输入" @change="editChange(row)">
- </el-input>
- </span>
- <span v-else>{{ row.itemDescription }}</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="请点击右边按钮" @change="editChange(row)">
- </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="请点击右边按钮" @change="editChange(row)"></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="menu" slot-scope="{ row, index }">
- <div style="display:flex;justify-content: center;">
- <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, index)"
- :disabled="detailData.status == 1">删除</el-button>
- <div v-if="!goodsEditShow"
- style="display:flex;flex-direction: column;justify-content: center;margin-left: 10px;">
- <el-tooltip effect="dark" content="向上移动" placement="top">
- <i v-if="index != 0" :disabled="detailData.status == 1" class="el-icon-arrow-up"
- @click="moveUp(row, index)" style="color:#409EFF;"></i>
- </el-tooltip>
- <el-tooltip effect="dark" content="向下移动" placement="bottom"> <i v-if="index != (data.length - 1)"
- :disabled="detailData.status == 1" class="el-icon-arrow-down" @click="moveDown(row, index)"
- style="color:#409EFF;"></i></el-tooltip>
- </div>
- </div>
- </template>
- </avue-crud>
- </trade-card> -->
- <fee-info ref="feeInfo" :tabShow="1" :orderFeesList="orderFeesList" :disabled="detailData.status == 1"
- feeUrl="/blade-purchase-sales/orderfees/update" optionType="CK" itemType="销售" @beforeFinance="beforeFinance"
- :inCropId="true" />
- <containerTitle title="合同附件"></containerTitle>
- <c-upload typeUpload="CK" :data="orderFilesList" :disabled="detailData.status == 1" :enumerationValue="76"
- deleteUrl="/blade-purchase-sales/orderfiles/update" />
- <div>
- <trade-card title="银行信息">
- <avue-form class="trading-form" v-model="form" :option="bankOption" />
- </trade-card>
- </div>
- <div>
- <trade-card title="保险信息">
- <avue-form class="trading-form" v-model="form" :option="insuranceOption" />
- </trade-card>
- </div>
- <div>
- <trade-card title="唛头">
- <avue-form class="trading-form" v-model="form" :option="markOption" />
- </trade-card>
- </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,
- getParities,
- getCode, generatePurchaseNews
- } 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,
- multiply,
- sum,
- addPrice
- } from "@/util/calculate";
- import {
- getCorpsattn
- } from "@/api/basicData/customerInformation";
- import goodsInfo from "./components/goodsInfo.vue";
- export default {
- name: "detailsPageEdit",
- data() {
- return {
- goodsEditForm: {},
- 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: "录入",
- cargoType: "普货",
- 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: 10,
- slot: true
- },
- {
- label: "公司主体",
- prop: "belongToCorpId",
- offset: 2,
- span: 6,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- },
- {
- label: "系统号",
- prop: "sysNo",
- span: 6,
- disabled: true
- },
- {
- label: "详情信息",
- prop: "clientMessage",
- type: "textarea",
- minRows: 2,
- span: 10
- },
- {
- label: "预交日期",
- prop: "plannedDeliveryDate",
- span: 6,
- type: "date",
- format: "yyyy-MM-dd",
- valueFormat: "yyyy-MM-dd 00:00:00",
- offset: 2
- },
- {
- label: "销售订单号",
- prop: "orderNo",
- span: 6
- },
- {
- label: "联系人",
- prop: "corpAttn",
- span: 5
- },
- {
- label: "电话",
- prop: "corpTel",
- span: 5
- },
- {
- label: "有效日期",
- prop: "dateValidity",
- span: 6,
- type: "date",
- format: "yyyy-MM-dd",
- valueFormat: "yyyy-MM-dd 00:00:00",
- // row: true,
- offset: 2,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- },
- {
- label: "订单日期",
- prop: "businesDate",
- span: 6,
- rules: [{
- required: true,
- message: "",
- trigger: "blur"
- }]
- },
- {
- label: "起运港",
- prop: "portOfLoad",
- span: 6,
- type: "select",
- filterable: true,
- rules: [{
- required: true,
- message: "",
- trigger: "blur"
- }],
- dicData: [],
- props: {
- label: "name",
- value: "name"
- }
- },
- {
- label: "目的港",
- prop: "portOfDestination",
- span: 6,
- type: "select",
- filterable: true,
- rules: [{
- required: true,
- message: "",
- trigger: "blur"
- }],
- dicData: [],
- props: {
- label: "name",
- value: "name"
- }
- },
- {
- label: "运输方式",
- prop: "transport",
- span: 6,
- type: "select",
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=mode_transport",
- props: {
- label: "dictValue",
- value: "dictValue"
- },
- row: true,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- },
- {
- label: "日期条款",
- prop: "dateClause",
- span: 6,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- },
- {
- label: "日期说明",
- prop: "dateDesc",
- type: "textarea",
- minRows: 1,
- span: 12,
- },
- {
- label: "货物类型",
- prop: "cargoType",
- span: 6,
- type: "select",
- dicData: [],
- props: {
- label: "dictValue",
- value: "dictValue"
- },
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- },
- {
- label: "价格条款",
- prop: "priceTerms",
- span: 6,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- },
- {
- label: "条款说明",
- prop: "priceTermsDescription",
- type: "textarea",
- minRows: 1,
- span: 12,
- },
- {
- label: "订单状态",
- prop: "orderStatus",
- span: 6,
- type: "select",
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=order_status",
- props: {
- label: "dictValue",
- value: "dictValue"
- }
- },
- {
- label: "收款方式",
- prop: "paymentType",
- span: 6,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- // type: "select",
- // dicUrl: "/api/blade-system/dict-biz/dictionary?code=payment_term",
- // props: {
- // label: "dictValue",
- // value: "dictValue"
- // }
- },
- {
- label: "收款说明",
- prop: "paymentTypeDescription",
- type: "textarea",
- minRows: 1,
- span: 12,
- },
- {
- label: "币别",
- prop: "currency",
- span: 6,
- rules: [{
- required: true,
- message: "",
- trigger: "blur"
- }]
- },
- {
- label: "产品毛利",
- prop: "grossProfit",
- span: 8,
- disabled: true
- },
- {
- label: "产品利率",
- prop: "grossProfitRate",
- span: 8,
- append: "%",
- disabled: true
- },
- {
- 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: 6,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- }, {
- label: "箱量",
- prop: "boxNumber",
- span: 6,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- }, {
- label: "起订量",
- prop: "minOrder",
- span: 6
- }, {
- label: "预计海运费",
- prop: "predictOceanFreight",
- span: 6
- },
- {
- label: "参考海运费",
- prop: "referenceOceanFreight",
- span: 6
- }, {
- label: "实际海运费",
- prop: "oceanFreight",
- span: 6,
- // offset: 0,
- // row: true
- }, {
- label: "单票毛利",
- prop: "singleTicketMargin",
- span: 6,
- disabled: true,
- row: true
- }, {
- label: "采购员",
- prop: "buyerId",
- span: 6,
- overHidden: true,
- filterable: true,
- remote: true,
- type: "select",
- dicUrl: "/api/blade-user/page?size=20¤t=1&realName={{key}}",
- props: {
- label: "realName",
- value: "id",
- res: 'data.records'
- },
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- }, {
- label: "跟单员",
- prop: "documenterId",
- span: 6,
- overHidden: true,
- filterable: true,
- remote: true,
- type: "select",
- dicUrl: "/api/blade-user/page?size=20¤t=1&realName={{key}}",
- props: {
- label: "realName",
- value: "id",
- res: 'data.records'
- },
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ]
- }, {
- label: "提单号",
- prop: "billLadingNo",
- span: 6,
- row: 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
- }
- ]
- },
- goodsEditShow: false,
- goodsEditOption: {
- emptyBtn: false,
- submitBtn: false,
- labelWidth: 100,
- column: [{
- label: "英文名称",
- prop: "ename",
- type: "textarea",
- minRows: 2,
- span: 12,
- },
- {
- label: "产品属性",
- prop: "itemProp",
- type: "textarea",
- minRows: 2,
- span: 12,
- },
- {
- label: "产品描述",
- prop: "itemDescription",
- type: "textarea",
- minRows: 2,
- span: 12,
- },
- {
- label: "配件信息",
- prop: "partsDescribe",
- type: "textarea",
- minRows: 2,
- span: 12,
- },
- {
- label: "商品信息",
- prop: "productRemark",
- type: "textarea",
- minRows: 2,
- span: 24,
- }
- ]
- },
- 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: "录入",
- cargoType: "普货",
- 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: {},
- dateClauseList: []
- };
- },
- props: {
- detailData: {
- type: Object
- }
- },
- components: {
- reportDialog,
- feeInfo,
- uploadFile,
- customerDialog,
- partDialog,
- priceLibrary,
- propertyDialog,
- financialAccount,
- billApplication,
- goodsInfo
- },
- 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.goodsEditOption.disabled = true;
- this.bankOption.disabled = true;
- this.insuranceOption.disabled = true;
- this.markOption.disabled = true;
- }
- if (localStorage.getItem("roleName") == "贸易") {
- this.findObject(this.tableOption.column, "purchaseCost").hide = true;
- this.findObject(
- this.tableOption.column,
- "purchaseCost"
- ).showColumn = false;
- this.findObject(this.option.column, "singleTicketMargin").display = false;
- this.findObject(this.option.column, "oceanFreight").row = 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("date_clause").then(res => {
- this.dateClauseList = res.data.data;
- });
- this.getWorkDicts("cargo_type").then(res => {
- this.findObject(this.option.column, "cargoType").dicData =
- res.data.data;
- });
- getCode().then(res => {
- this.currencyList = res.data.data;
- });
- if (!this.detailData.id) {
- this.getParities();
- }
- // 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;";
- },
- formGoodstoFees(rows,type){
- this.$refs.feeInfo.imporData(rows,type)
- },
- khEdit(staus) {
- if (staus == 'kh') {
- if (this.form.corpId) {
- this.$router.push({
- path: '/basicData/customerInformation/index',
- query: {
- corpId: this.form.corpId,
- corpName: this.form.corpName
- }
- })
- } else {
- this.$router.push({
- path: '/basicData/customerInformation/index',
- })
- }
- } else if (staus == 'GS') {
- if (this.form.corpId) {
- this.$router.push({
- path: '/basicData/customerManagement/companyMaterial/index',
- query: {
- corpId: this.form.corpId,
- corpName: this.form.corpName
- }
- })
- } else {
- this.$router.push({
- path: '/basicData/customerManagement/companyMaterial/index'
- })
- }
- } else if (staus == 'portOfLoad') {
- this.$router.push({
- path: '/basicData/portinformation/index'
- })
- } else if (staus == 'cname') {
- this.$router.push({
- path: '/basicData/commodityType/index'
- })
- }
- },
- copyDoc() {
- this.$emit("copyOrder", this.form.id);
- },
- rowCorpData(row) {
- this.data[row.index].corpName = row.code;
- },
- priceTermsChange(row) {
- 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;
- }
- });
- },
- getParities(status) {
- this.oldExchange = this.form.exchangeRate;
- getParities({
- currency: this.form.currency,
- businesDate: this.form.businesDate
- })
- .then(res => {
- const data = res.data.data;
- this.form.exchangeRate = data.receivableParities;
- this.oldform.exchangeRate = data.receivableParities;
- })
- .finally(() => {
- if (this.data.length > 0 && status == "currency") {
- 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.shareAmount = transformCal(e.shareAmount, this.oldExchange, this.form.exchangeRate);
- e.internationalAmount = transformCal(e.internationalAmount, this.oldExchange, this.form.exchangeRate);
- e.outFactoryPrice = sellingCal(e.productPrice, this.form.exchangeRate);
- e.price = addPrice(e.outFactoryPrice, e.shareAmount, e.internationalAmount);
- 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;
- });
- }
- });
- },
- businesDateChange() {
- if (this.form.currency && this.form.businesDate) {
- this.getParities();
- }
- },
- getCorpData(row) {
- this.form.coefficient = row.coefficient;
- this.form.corpsName = row.cname;
- this.form.clientMessage = (row.cname ? row.cname : '') + '\r\n' + (row.addr ? row.addr : '')
- 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
- );
- });
- }
- },
- // cnameData() {
- // this.goodsoptions = []
- // 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);
- // });
- // }
- // }
- // }
- // });
- // },
- 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);
- },
- handleRowDBLClick(row) {
- if (row.$cellEdit) {
- return this.$message.error("请保存此行内容再操作");
- }
- this.goodsEditShow = true
- this.goodsEditForm = row
- },
- handleSave() {
- this.$set(this.data, this.goodsEditForm.$index, this.goodsEditForm)
- this.goodsEditShow = false
- this.goodsEditForm = this.$options.data().goodsEditForm
- this.editCustomer()
- },
- handleClose() {
- this.goodsEditShow = false
- this.goodsEditForm = this.$options.data().goodsEditForm
- },
- 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.data[index].productRemark = this.getproductRemark(this.data[index])
- 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;
- this.data[index].customSix = row.customSix;
- this.data[index].customSeven = row.customSeven;
- this.data[index].customEight = row.customEight;
- this.data[index].customNine = row.customNine;
- this.data[index].customTen = row.customTen;
- this.data[index].productRemark = this.getproductRemark(this.data[index])
- },
- partClosed() {
- this.partList = [];
- },
- saveSell() {
- if (!this.form.id) {
- return this.$message.error("此单据没有提交记录,请先提交");
- }
- if (!this.form.buyerId){
- return this.$message.error("采购员必填");
- }
- this.$confirm("是否生成采购单?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- generatePurchaseNews(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 (this.goodsEditShow) {
- return this.$message.error('请关闭表格上面的编辑')
- }
- 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() {
- if (this.form.currency && this.form.businesDate) {
- this.getParities("currency");
- }
- },
- dateClauseChange(row) {
- this.dateClauseList.forEach(e => {
- if (row == e.dictValue) {
- this.form.dateDesc = e.remark;
- }
- });
- },
- 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.shareAmount = transformCal(e.shareAmount, this.oldExchange, row);
- e.internationalAmount = transformCal(e.internationalAmount, this.oldExchange, row);
- e.outFactoryPrice = sellingCal(e.productPrice, row);
- e.price = addPrice(e.outFactoryPrice, e.shareAmount, e.internationalAmount);
- 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.customSix = this.reData.customSix;
- item.customSeven = this.reData.customSeven;
- item.customEight = this.reData.customEight;
- item.customNine = this.reData.customNine;
- item.customTen = this.reData.customTen;
- item.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.attributeList = this.reData.attributeList;
- 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.productRemark = e.ename + "\n" + (this.reData.itemProp ? this.reData.itemProp : '') +
- " " + (this.reData.itemDescription ? this.reData.itemDescription : '') + " " + (this.reData
- .partsDescribe ? (", " + this.reData.partsDescribe) : ''),
- 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,
- customSix: null,
- customSeven: null,
- customEight: null,
- customNine: null,
- customTen: 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,
- productRemark: e.ename,
- attributeList: this.getAttribute(e.goodsSpecificationList),
- $cellEdit: true
- });
- this.importPart(this.transition(e.priceBankList), this.partsSum(this.transition(e.priceBankList)), Number(this.data.length - 1))
- });
- }
- this.dialogVisible = false;
- },
- transition(rows) {
- let data = []
- rows.forEach(e => {
- data.push({
- goodId: e.itemId,
- goodTypeId: e.goodTypeId,
- goodTypeName: e.goodsTypeName,
- ename: e.ename,
- corpId: e.corpId,
- corpName: e.corpName,
- goodName: e.cname,
- price: e.purchaseAmount,
- goodNumber: 1,
- amout: e.purchaseAmount,
- partsCost: costCal(e.price, e.taxRate),
- $cellEdit: true
- })
- })
- return data
- },
- partsSum(rows) {
- let qtySum = 0;
- let amountSum = 0;
- let amoutSum = 0;
- rows.forEach(e => {
- qtySum = _.add(qtySum, Number(e.goodNumber));
- amountSum = _.add(amountSum, Number(e.amout));
- amoutSum = Number(amountSum).toFixed(2);
- });
- return amoutSum
- },
- getAttribute(rows) {
- let data = []
- rows.forEach(e => {
- data.push({
- attributeData: JSON.parse(e.attributeData),
- attributeName: e.attributeName,
- attributeNo: e.attributeNo,
- })
- })
- return JSON.stringify(data);
- },
- 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,
- customSix: null,
- customSeven: null,
- customEight: null,
- customNine: null,
- customTen: 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,
- productRemark: e.ename,
- $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;
- delete res.data.data.fudaPurchaseStatus;
- delete res.data.data.documentaryStatus;
- res.data.data.orderStatus = "录入";
- res.data.data.cargoType = "普货",
- 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;
- });
- },
- getproductRemark(row) {
- const ename = row.ename ? row.ename : "";
- const itemDescription = row.itemDescription ?
- row.itemDescription :
- "";
- const itemProp = row.itemProp ? row.itemProp : "";
- const partsDescribe = row.partsDescribe ? (', ' + row.partsDescribe) : "";
- const productRemark =
- ename +
- "\n" +
- itemProp +
- " " +
- itemDescription +
- " " +
- partsDescribe;
- return productRemark
- },
- formEditChange(row) {
- row.productRemark = this.getproductRemark(row)
- },
- editChange(row) {
- row.productRemark = this.getproductRemark(row)
- },
- //修改提交触发
- 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)
- )
- );
- }
- }
- 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.form.totalValue = 0
- this.data.forEach((e, index) => {
- e.sort = Number(index) + 1
- this.form.totalValue = sum(multiply(e.outFactoryPrice, e.orderQuantity), this.form.totalValue)
- })
- 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.goodsEditOption = this.$options.data().goodsEditOption;
- this.getWorkDicts("cargo_type").then(res => {
- this.findObject(this.option.column, "cargoType").dicData =
- res.data.data;
- });
- // this.$refs.crud.refreshTable();
- this.$refs.goodsInfo.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.getWorkDicts("cargo_type").then(res => {
- this.findObject(this.tableOption.column, "cargoType").dicData =
- res.data.data;
- });
- 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;
- },
- moveUp(row, index) {
- this.data[index] = this.data.splice(index - 1, 1, row)[0]
- },
- moveDown(row, index) {
- this.data[index] = this.data.splice(index + 1, 1, row)[0]
- },
- 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>
|