| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989 |
- <template>
- <div>
- <basic-container v-if="isShow">
- <avue-crud :option="option"
- :table-loading="loading"
- :data="data"
- :page.sync="page"
- id="out-table"
- :header-cell-class-name="headerClassName"
- :permission="permissionList"
- :before-open="beforeOpen"
- v-model="form"
- ref="crud"
- :search.sync="query"
- @row-update="rowUpdate"
- @row-save="rowSave"
- @row-del="rowDel"
- @search-change="searchChange"
- @search-reset="searchReset"
- @selection-change="selectionChange"
- @current-change="currentChange"
- @size-change="sizeChange"
- @refresh-change="refreshChange"
- @on-load="onLoad"
- @expand-change="expandChange"
- @resetColumn="resetColumnTwo('crud', 'option', 'optionBack', 309.11)"
- @saveColumn="saveColumnTwo('crud', 'option', 'optionBack', 309.11)" >
- <!--#region-->
- <!--<template slot="search" slot-scope="{row,size}">-->
- <!-- <el-form ref="form" :model="row" label-width="80px" :style="fold?'width: 100%':'width: 70%'">-->
- <!-- <el-row>-->
- <!-- <el-col :span="fold?6:8" >-->
- <!-- <el-form-item label="主单号">-->
- <!-- <el-input placeholder="请输入主单号" clearable-->
- <!-- size="small" style="width:100%" v-model="query.mblno">-->
- <!-- </el-input>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="fold?6:8">-->
- <!-- <el-form-item label="委托人">-->
- <!-- <!–<el-input placeholder="请输入委托人" clearable–>-->
- <!-- <!– size="small" style="width:100%" v-model="query.corpCnName">–>-->
- <!-- <!–</el-input>–>-->
- <!-- <search-query :datalist="corpData"-->
- <!-- :selectValue="query.corpCnName"-->
- <!-- :filterable="true"-->
- <!-- :clearable="true"-->
- <!-- :remote="true"-->
- <!-- :buttonIf="false"-->
- <!-- :forParameter="{key:'id',label:'cnName',value:'cnName'}"-->
- <!-- placeholder="请输入委托人"-->
- <!-- @remoteMethod="corpBcorpslistByType"-->
- <!-- @corpChange="corpChange($event,'corpCnName')"-->
- <!-- @corpFocus="corpBcorpslistByType" >-->
- <!-- </search-query>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="fold?6:8" >-->
- <!-- <el-form-item label="业务号">-->
- <!-- <el-input placeholder="请输入业务号" clearable-->
- <!-- size="small" style="width:100%" v-model="query.billNo">-->
- <!-- </el-input>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="单据类型">-->
- <!-- <search-query-->
- <!-- :datalist="billTypeData"-->
- <!-- :selectValue="query.billType"-->
- <!-- :filterable="true"-->
- <!-- :clearable="true"-->
- <!-- :remote="true"-->
- <!-- :buttonIf="false"-->
- <!-- @corpChange="corpChange($event,'billType')">-->
- <!-- </search-query>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="分单号">-->
- <!-- <el-input placeholder="请输入分单号" clearable-->
- <!-- size="small" style="width:100%" v-model="query.hblno">-->
- <!-- </el-input>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="船名">-->
- <!-- <search-query :datalist="vesselData"-->
- <!-- :selectValue="query.vesselEnName"-->
- <!-- :filterable="true"-->
- <!-- :clearable="true"-->
- <!-- :remote="true"-->
- <!-- :buttonIf="false"-->
- <!-- :forParameter="{key:'id',label:'enName',value:'enName'}"-->
- <!-- placeholder="请输入船名"-->
- <!-- @remoteMethod="vesselBvesselsListfun"-->
- <!-- @corpChange="corpChange($event,'vesselEnName')"-->
- <!-- @corpFocus="vesselBvesselsListfun" >-->
- <!-- </search-query>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold" >-->
- <!-- <el-form-item label="航次">-->
- <!-- <el-input placeholder="请输入航次" clearable-->
- <!-- size="small" style="width:100%" v-model="query.voyageNo">-->
- <!-- </el-input>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="船公司">-->
- <!-- <search-query :datalist="carrierData"-->
- <!-- :selectValue="query.carrierCnName"-->
- <!-- :filterable="true"-->
- <!-- :clearable="true"-->
- <!-- :remote="true"-->
- <!-- :buttonIf="false"-->
- <!-- :forParameter="{key:'id',label:'cnName',value:'cnName'}"-->
- <!-- placeholder="请输入船公司"-->
- <!-- @remoteMethod="carrierBcorpslistByTypefun"-->
- <!-- @corpChange="corpChange($event,'carrierCnName')"-->
- <!-- @corpFocus="carrierBcorpslistByTypefun" >-->
- <!-- </search-query>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="目的港">-->
- <!-- <!–<el-input placeholder="请输入目的港" clearable–>-->
- <!-- <!– size="small" style="width:100%" v-model="query.podCnName">–>-->
- <!-- <!–</el-input>–>-->
- <!-- <search-query :datalist="podData"-->
- <!-- :selectValue="query.podEnName"-->
- <!-- :filterable="true"-->
- <!-- :clearable="true"-->
- <!-- :remote="true"-->
- <!-- :buttonIf="false"-->
- <!-- :forParameter="{key:'id',label:'enName',value:'enName'}"-->
- <!-- placeholder="请输入目的港"-->
- <!-- @remoteMethod="podBportsListfun"-->
- <!-- @corpChange="corpChange($event,'podEnName')"-->
- <!-- @corpFocus="podBportsListfun" >-->
- <!-- </search-query>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="航线">-->
- <!-- <!–<el-input placeholder="请输入航线" clearable–>-->
- <!-- <!– size="small" style="width:100%" v-model="query.lineCnName">–>-->
- <!-- <!–</el-input>–>-->
- <!-- <search-query :datalist="lineData"-->
- <!-- :selectValue="query.lineCnName"-->
- <!-- :filterable="true"-->
- <!-- :clearable="true"-->
- <!-- :remote="true"-->
- <!-- :buttonIf="false"-->
- <!-- :forParameter="{key:'id',label:'cnName',value:'cnName'}"-->
- <!-- placeholder="请输入航线"-->
- <!-- @remoteMethod="lineBlinesListfun"-->
- <!-- @corpChange="corpChange($event,'lineCnName')"-->
- <!-- @corpFocus="lineBlinesListfun" >-->
- <!-- </search-query>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="场站">-->
- <!-- <!–<el-input placeholder="请输入场站" clearable–>-->
- <!-- <!– size="small" style="width:100%" v-model="query.cyCode">–>-->
- <!-- <!–</el-input>–>-->
- <!-- <search-query :datalist="cyData"-->
- <!-- :selectValue="query.cyCnName"-->
- <!-- :filterable="true"-->
- <!-- :clearable="true"-->
- <!-- :remote="true"-->
- <!-- :buttonIf="false"-->
- <!-- :forParameter="{key:'id',label:'cnName',value:'cnName'}"-->
- <!-- placeholder="请输入场站"-->
- <!-- @remoteMethod="cyBcorpslistByType"-->
- <!-- @corpChange="corpChange($event,'cyCnName')"-->
- <!-- @corpFocus="cyBcorpslistByType" >-->
- <!-- </search-query>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="业务来源">-->
- <!-- <search-query-->
- <!-- :datalist="srcTypeData"-->
- <!-- :selectValue="query.srcType"-->
- <!-- :filterable="true"-->
- <!-- :clearable="true"-->
- <!-- :remote="true"-->
- <!-- :buttonIf="false"-->
- <!-- @corpChange="corpChange($event,'srcType')">-->
- <!-- </search-query>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="来源详情">-->
- <!-- <el-input placeholder="请输入来源详情" clearable-->
- <!-- size="small" style="width:100%" v-model="query.srcCnName">-->
- <!-- </el-input>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="9" v-show="fold">-->
- <!-- <el-form-item label="ETD">-->
- <!-- <el-checkbox v-model="etdDisabled">-->
- <!-- <el-date-picker-->
- <!-- v-model="etdList"-->
- <!-- style="width: 100%"-->
- <!-- :disabled="!etdDisabled"-->
- <!-- size="small"-->
- <!-- type="datetimerange"-->
- <!-- range-separator="至"-->
- <!-- start-placeholder="开始日期"-->
- <!-- end-placeholder="结束日期"-->
- <!-- format="yyyy-MM-dd HH:mm"-->
- <!-- value-format="yyyy-MM-dd HH:mm"-->
- <!-- clearable>-->
- <!-- </el-date-picker>-->
- <!-- </el-checkbox>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="9" v-show="fold">-->
- <!-- <el-form-item label="ETA">-->
- <!-- <el-checkbox v-model="etaDisabled">-->
- <!-- <el-date-picker-->
- <!-- v-model="etaList"-->
- <!-- style="width: 100%"-->
- <!-- :disabled="!etaDisabled"-->
- <!-- size="small"-->
- <!-- type="datetimerange"-->
- <!-- range-separator="至"-->
- <!-- start-placeholder="开始日期"-->
- <!-- end-placeholder="结束日期"-->
- <!-- format="yyyy-MM-dd HH:mm"-->
- <!-- value-format="yyyy-MM-dd HH:mm"-->
- <!-- clearable>-->
- <!-- </el-date-picker>-->
- <!-- </el-checkbox>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="创建部门">-->
- <!-- <!–<el-input placeholder="请输入创建部门" clearable–>-->
- <!-- <!– size="small" style="width:100%" v-model="query.createDeptName">–>-->
- <!-- <!–</el-input>–>-->
- <!-- <tree-select v-model="query.createDeptName" filterable-->
- <!-- :data="createDeptData"-->
- <!-- :props="{label: 'title', children:'children' }"-->
- <!-- nodeKey="title"-->
- <!-- size="small"-->
- <!-- :multiple="false"-->
- <!-- placeholder="请选择创建部门"-->
- <!-- @focus="createDeptLzylistfun"-->
- <!-- @input="corpChange($event,'createDeptName')">-->
- <!-- </tree-select>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="订舱代理">-->
- <!-- <!–<el-input placeholder="请输入订舱代理" clearable–>-->
- <!-- <!– size="small" style="width:100%" v-model="query.bookingAgentCnName">–>-->
- <!-- <!–</el-input>–>-->
- <!-- <search-query :datalist="bookingAgentData"-->
- <!-- :selectValue="query.bookingAgentCnName"-->
- <!-- :filterable="true"-->
- <!-- :clearable="true"-->
- <!-- :remote="true"-->
- <!-- :buttonIf="false"-->
- <!-- :forParameter="{key:'id',label:'cnName',value:'cnName'}"-->
- <!-- placeholder="请输入订舱代理"-->
- <!-- @remoteMethod="bookingAgentBcorpsListfun"-->
- <!-- @corpChange="corpChange($event,'bookingAgentCnName')"-->
- <!-- @corpFocus="bookingAgentBcorpsListfun">-->
- <!-- </search-query>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="签单方式">-->
- <!-- <search-query-->
- <!-- :datalist="issueTypeData"-->
- <!-- :selectValue="query.issueType"-->
- <!-- :filterable="true"-->
- <!-- :clearable="true"-->
- <!-- :remote="true"-->
- <!-- :buttonIf="false"-->
- <!-- :forParameter="{ key:'dictKey', label:'dictValue', value:'dictValue'}"-->
- <!-- @corpChange="corpChange($event,'issueType')" >-->
- <!-- </search-query>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="6" v-show="fold">-->
- <!-- <el-form-item label="收货人">-->
- <!-- <!–<el-input placeholder="请输入收货人" clearable–>-->
- <!-- <!– size="small" style="width:100%" v-model="query.hConsigneeCnName">–>-->
- <!-- <!–</el-input>–>-->
- <!-- <search-query :datalist="hConsigneeData"-->
- <!-- :selectValue="query.hConsigneeCnName"-->
- <!-- :filterable="true"-->
- <!-- :clearable="true"-->
- <!-- :remote="true"-->
- <!-- :buttonIf="false"-->
- <!-- :forParameter="{key:'id',label:'cnName',value:'cnName'}"-->
- <!-- placeholder="请选择收货人"-->
- <!-- @remoteMethod="hConsigneeBcorpslistByType"-->
- <!-- @corpChange="corpChange($event,'hConsigneeCnName')"-->
- <!-- @corpFocus="hConsigneeBcorpslistByType" >-->
- <!-- </search-query>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- </el-row>-->
- <!-- </el-form>-->
- <!--</template>-->
- <!--<template slot="searchMenu" slot-scope="{row,size}">-->
- <!-- <el-button type="text" @click="shiftCollapsiable">-->
- <!-- <span>-->
- <!-- {{ fold ? '收起' : '展开' }}-->
- <!-- <i :class="fold ? 'el-icon-arrow-up' : 'el-icon-arrow-down'"></i>-->
- <!-- </span>-->
- <!-- </el-button>-->
- <!--</template>-->
- <!--#endregion-->
- <template slot="menuLeft">
- <el-button type="primary" size="small" @click="addbtnfun()">新建业务
- </el-button>
- <el-button type="primary"
- size="small"
- plain @click="CopyDocumentsfun">复制单据
- </el-button>
- <el-button type="success"
- size="small"
- plain
- @click="increaseMawb">分单->主单
- </el-button>
- <el-button type="warning"
- size="small"
- plain
- v-if="query.billStatus == 0"
- @click="Disembarkingfun">退 舱
- </el-button>
- <el-button type="primary"
- size="small"
- plain
- v-if="query.billStatus == 1"
- @click="revokeWithdrawalfun" >撤销退舱
- </el-button>
- <el-button type="danger"
- size="small"
- plain
- v-if="query.billStatus != 3"
- @click="handleDelete">删 除
- </el-button>
- <el-button type="warning"
- size="small"
- @click="outExport">导 出
- </el-button>
- <!--<el-dropdown style="line-height: 0">-->
- <!-- <el-button size="small" type="success" style="margin-right: 8px" :disabled="selectionList.length == 0" >-->
- <!-- 发送 EDI<i class="el-icon-arrow-down el-icon--right"></i>-->
- <!-- </el-button>-->
- <!-- <el-dropdown-menu slot="dropdown">-->
- <!-- <el-dropdown-item v-for="item in ediData" :key="item.id"-->
- <!-- @click.native="editypesSendingEdifun(item)" >{{item.cnName}}-->
- <!-- </el-dropdown-item>-->
- <!-- </el-dropdown-menu>-->
- <!--</el-dropdown>-->
- <div style="margin-top: 10px">
- <el-tabs type="card" v-model="query.billStatus" @tab-click="handleClick">
- <el-tab-pane label="接单" name="0">
- <span slot="label">接单</span>
- </el-tab-pane>
- <el-tab-pane label="退舱" name="1">
- <span slot="label" style="color: #d86363">退舱</span>
- </el-tab-pane>
- <el-tab-pane label="完成" name="3"></el-tab-pane>
- </el-tabs>
- </div>
- </template>
- <template slot-scope="scope" slot="menu">
- <!--:disabled="saberUserInfo.role_name.indexOf('允许修改他人业务') == -1?saberUserInfo.user_id != scope.row.createUser:false"-->
- <el-button :type="scope.type" :size="scope.size" icon="el-icon-edit"
- @click.stop="rowCellfun(scope.row.id, scope.row)">编辑
- </el-button>
- </template>
- <template slot="expand" slot-scope="{row}" >
- <SplitList :typeMenu="true" :data="row.billsListAllData" :loading="SplitLoading" @corpfun="rowCellfun" ></SplitList>
- </template>
- <temolate slot="billStatus" slot-scope="{row}">
- <span v-if="row.billStatus == item.dictKey"
- v-for="(item,index) in billStatusData" :key="index"
- :style="{'color':item.colour}" >
- {{item.dictValue}}
- </span>
- </temolate>
- <template slot="accountStatus" slot-scope="{ row }">
- <span v-if="row.accountStatus == item.dictKey"
- v-for="(item,index) in accountStatusData" :key="index"
- :style="{'color':item.colour}" >
- {{item.dictValue}}
- </span>
- </template>
- <template slot="corpCnName" slot-scope="scope">
- <span
- style="color: #1e9fff;cursor: pointer;width: 100%;overflow:hidden;white-space: nowrap;text-overflow: ellipsis;"
- @click.stop="rowCellfun(scope.row.id, scope.row)">
- {{ scope.row.corpCnName }}
- </span>
- </template>
- <template slot="billNo" slot-scope="scope">
- <span style="color: #1e9fff;cursor: pointer;width: 100%;overflow:hidden;white-space: nowrap;text-overflow: ellipsis;"
- @click.stop="rowCellfun(scope.row.id, scope.row)" >
- {{scope.row.billNo}}
- </span>
- </template>
- <template slot="eta" slot-scope="scope">
- <span>{{scope.row.eta?scope.row.eta.slice(0,10):''}}</span>
- </template>
- <template slot="updateTime" slot-scope="scope">
- <span>{{scope.row.updateTime?scope.row.updateTime.slice(0,10):''}}</span>
- </template>
- </avue-crud>
- </basic-container>
- <bills-details ref="billsDetails" v-if="!isShow" :detailData="detailData" @goBack="goBack" @toAddEdit="toAddEdit" :key="datekey"></bills-details>
- <el-dialog
- title="主单列表"
- :visible.sync="dialogVisible"
- append-to-body
- width="60%"
- :before-close="handleClose">
- <avue-crud :option="mawbOption"
- :table-loading="mawbloading"
- :data="mawbData"
- :page.sync="mawbPage"
- :search="mawbQuery"
- ref="mawbOptionCrud"
- id="out-table"
- :header-cell-class-name="headerClassName"
- @search-change="mawbSearch"
- @size-change="mawbSizeChange"
- @current-change="mawbCurrentChange"
- @resetColumn="resetColumnTwo('mawbOptionCrud', 'mawbOption', 'mawbOptionBack', 309.7)"
- @saveColumn="saveColumnTwo('mawbOptionCrud', 'mawbOption', 'mawbOptionBack', 309.7)"
- >
- <template slot="radio" slot-scope="{row}">
- <el-radio v-model="dialogRadio" :label="row.id" @input="radioInput(row)"></el-radio>
- </template>
- </avue-crud>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false;dialogRadio = null">取 消</el-button>
- <el-button type="primary" @click="AddToMainOrder">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- billsList,
- billsDetail,
- billsSubmit,
- billsRemove,
- billsIncreaseReinsurancePolicy, billsListAll, billsDisembarking, editypesSendingEdi, billsRevokeDisembarking
- } from "@/api/iosBasicData/bills";
- import {mapGetters} from "vuex";
- import billsDetails from "@/views/iosBasicData/OceanFreightImport/bills/billsDetails.vue";
- import feesTemplateItems from "@/views/iosBasicData/losbfeestemplate/feesTemplateItems.vue";
- import SplitList from "@/views/iosBasicData/OceanFreightImport/bills/assembly/SplitList.vue";
- import {getWorkDicts} from "@/api/system/dictbiz";
- import {dateFormat, defaultDate} from "@/util/date";
- import SearchQuery from "@/components/iosbasic-data/searchquery.vue";
- import {editypesList} from "@/api/iosBasicData/editypes";
- import {getBvesselsList} from "@/api/iosBasicData/bvessels";
- import {getBcorpslistByType,getBcorpsDetail} from "@/api/iosBasicData/bcorps";
- import {bportsList} from "@/api/iosBasicData/bports";
- import {blinesList} from "@/api/iosBasicData/blines";
- import TreeSelect from "@/components/iosbasic-data/TreeSelect.vue";
- import { getDeptTree } from "@/api/system/dept";
- import {getToken} from "@/util/auth";
- export default {
- components:{TreeSelect, SearchQuery, feesTemplateItems, billsDetails,SplitList},
- data() {
- return {
- datekey:Date.now(),
- ediData:[], // 获取的 edi 数据
- // 展开和收回
- fold:false,
- maxShow:3,
- corpData:[], //委托人
- hConsigneeData:[], // 收货人
- // 船名
- vesselData:[],
- // 船公司
- carrierData:[],
- // 目的港(卸货港)
- podData:[],
- // 航线
- lineData:[],
- // 场站
- cyData:[],
- // 订舱代理
- bookingAgentData:[],
- createDeptData:[], // 部门数据
- // 单据类型
- billTypeData:[
- {
- label: '直单',
- value: 'DD'
- }, {
- label: '主单',
- value: 'MM'
- },{
- label: '分单',
- value: 'MH'
- }
- ],
- // 业务来源
- srcTypeData:[
- {
- label:'公司',
- value:'OWN'
- },
- {
- label:'代理',
- value:'AGENT'
- },
- {
- label:'业务员',
- value:'SALES'
- }
- ],
- // 签单方式
- issueTypeData:[],
- isShow:true,
- detailData:{},
- dialogVisible:false, // 弹窗开启
- // ETD是否可以检索
- etdDisabled:false,
- // ETA是否可以检索
- etaDisabled:false,
- form: {},
- // 开船日期和到港日期
- etdList:[defaultDate(1)[0] + ' 00:00',defaultDate(1)[1] + ' 23:59'],
- etaList:[defaultDate(1)[0] + ' 00:00',defaultDate(1)[1] + ' 23:59'],
- // 表格的检索条件
- query: {
- billStatus:'0',
- },
- // 弹窗的搜索项
- mawbQuery:{
- billType:'MM',
- },
- loading: true,
- // 弹窗加载
- mawbloading:false,
- // 下拉的加载
- SplitLoading:false,
- page: {
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- // 弹窗分页
- mawbPage:{
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- selectionList: [],
- // 弹窗的选择数据
- dialogRadio:null,
- option:{},
- optionBack: {
- // selectable:(row,index)=>{
- // // 禁用主单
- // return row.billType != 'MM'
- // },
- expand: true,
- expandRowKeys:[],
- rowKey:'id',
- height:500,
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- searchLabelWidth:'100',
- border: true,
- index: true,
- selection: true,
- dialogClickModal: false,
- highlightCurrentRow:true, // 单选
- searchIcon: true,
- searchIndex: 3,
- stripe:true,
- addBtn:false,
- viewBtn:false,
- delBtn:false,
- editBtn:false,
- menuWidth:'auto',
- column: [
- {
- label: "单据类型",
- prop: "billType",
- type: 'select',
- search:true,
- span:6,
- searchOrder:4,
- dicData: [{
- label: '直单',
- value: 'DD'
- }, {
- label: '主单',
- value: 'MM'
- },{
- label: '分单',
- value: 'MH'
- }],
- overHidden:true,
- },
- {
- label: "单据编号",
- prop: "billNo",
- width:"160",
- overHidden:true,
- search:true,
- span:6,
- searchOrder:3,
- },
- {
- label: "所属团队",
- prop: "teamName",
- overHidden:true,
- },
- {
- label: "客户名",
- prop: "corpCnName",
- width:"160",
- overHidden:true,
- search:true,
- type:'select',
- dicData:[],
- filterable:true,
- remote:true,
- dicUrl:"/api/blade-los/bcorps/listByType?cnName={{key}}",
- props: {
- label: 'cnName',
- value: 'cnName',
- res:'data.records'
- },
- span:6,
- searchOrder:2,
- },
- {
- label: "客户英文",
- prop: "corpEnName",
- width:"160",
- overHidden:true,
- },
- {
- label: "船名",
- prop: "vesselCnName",
- overHidden:true,
- type:'select',
- dicData:[],
- filterable:true,
- remote:true,
- dicUrl:"/api/blade-los/bvessels/list?cnName={{key}}",
- props: {
- label: 'cnName',
- value: 'cnName',
- res:'data.records'
- },
- search:true,
- span:6,
- searchOrder:6,
- },
- {
- label: "航次",
- prop: "voyageNo",
- width: "80",
- overHidden: true,
- search:true,
- span:6,
- searchOrder:6,
- },
- {
- label: "MB/L NO",
- prop: "mblno",
- width: "80",
- overHidden: true,
- search:true,
- span:6,
- searchOrder:1,
- },
- {
- label: "HB/L NO",
- prop: "hblno",
- width: "80",
- overHidden: true,
- search:true,
- span:6,
- searchOrder:5,
- },
- {
- label: "开船日期",
- prop: "etd",
- searchProp:"etdList",
- type: "date",
- unlinkPanels: true,
- searchRange: true,
- overHidden: true,
- format: "yyyy-MM-dd",
- valueFormat: "yyyy-MM-dd HH:mm:ss",
- searchDefaultTime: ["00:00:00", "23:59:59"],
- search:true,
- span:6,
- searchOrder:14,
- },
- {
- label: "到港日期",
- prop: "eta",
- width: "80",
- overHidden: true,
- searchProp:"etaList",
- type: "date",
- unlinkPanels: true,
- searchRange: true,
- format: "yyyy-MM-dd",
- valueFormat: "yyyy-MM-dd HH:mm:ss",
- searchDefaultTime: ["00:00:00", "23:59:59"],
- search:true,
- span:6,
- searchOrder:15,
- },
- {
- label: "船公司",
- prop: "carrierCnName",
- overHidden:true,
- type:'select',
- dicData:[],
- filterable:true,
- remote:true,
- dicUrl:"/api/blade-los/bcorps/listByType?cnName={{key}}",
- props: {
- label: 'cnName',
- value: 'cnName',
- res:'data.records'
- },
- search:true,
- span:6,
- searchOrder:8,
- },
- {
- label: "装货港",
- prop: "polEnName",
- width:"120",
- overHidden:true,
- },
- {
- label: "目的港",
- prop: "podEnName",
- width:"120",
- overHidden:true,
- type:'select',
- dicData:[],
- filterable:true,
- remote:true,
- dicUrl:"/api/blade-los/bports/list?enName={{key}}",
- props: {
- label: 'enName',
- value: 'enName',
- res:'data.records'
- },
- search:true,
- span:6,
- searchOrder:9,
- },
- {
- label: "航线",
- prop: "lineCnName",
- width:"120",
- overHidden:true,
- type:'select',
- dicData:[],
- filterable:true,
- remote:true,
- dicUrl:"/api/blade-los/blines/list?cnName={{key}}",
- props: {
- label: 'cnName',
- value: 'cnName',
- res:'data.records'
- },
- search:true,
- span:6,
- searchOrder:10,
- },
- {
- label: "场站",
- prop: "cyCnName",
- width:"120",
- overHidden:true,
- type:'select',
- dicData:[],
- filterable:true,
- remote:true,
- dicUrl:"/api/blade-los/bcorps/listByType?cnName={{key}}",
- props: {
- label: 'cnName',
- value: 'cnName',
- res:'data.records'
- },
- search:true,
- span:6,
- searchOrder:11,
- },
- {
- label: "箱型/箱量",
- prop: "quantityCntrDescr",
- width:"120",
- overHidden:true,
- },
- {
- label: "业务来源",
- prop: "srcType",
- type: 'select',
- dicData: [
- {
- label:'公司',
- value:'OWN'
- },
- {
- label:'代理',
- value:'AGENT'
- },
- {
- label:'业务员',
- value:'SALES'
- }
- ],
- overHidden:true,
- search:true,
- span:6,
- searchOrder:12,
- },
- {
- label: "来源详情",
- prop: "srcCnName",
- width: "80",
- overHidden: true,
- search:true,
- span:6,
- searchOrder:13,
- },
- {
- label: "装箱方式",
- prop: "loadType",
- type: 'select',
- dicData: [{
- label: '整箱',
- value: 'FCL'
- }, {
- label: '拼箱',
- value: 'LCL'
- }],
- overHidden:true,
- },
- {
- label: "货物类别",
- prop: "cargoType",
- type: 'select',
- dicData: [{
- label: '普货',
- value: 'dry'
- }, {
- label: '危险品',
- value: 'danger'
- },{
- label: '冻柜',
- value: 'reefer'
- }],
- overHidden:true,
- },
- {
- label: "创建部门",
- prop: "createDeptName",
- width:"120",
- overHidden:true,
- type:'tree',
- dicData:[],
- dicUrl:"/api/blade-system/dept/tree",
- props: {
- label: 'title',
- value:'title',
- children:'children'
- },
- search:true,
- span:6,
- searchOrder:16,
- },
- {
- label: "订舱代理",
- prop: "bookingAgentCnName",
- width:"120",
- overHidden:true,
- type:'select',
- dicData:[],
- filterable:true,
- remote:true,
- dicUrl:"/api/blade-los/bcorps/listByType?cnName={{key}}",
- props: {
- label: 'cnName',
- value: 'cnName',
- res:'data.records'
- },
- search:true,
- span:6,
- searchOrder:16,
- },
- {
- label: "收货人",
- prop: "hConsigneeCnName",
- width:"120",
- overHidden:true,
- type:'select',
- dicData:[],
- filterable:true,
- remote:true,
- dicUrl:"/api/blade-los/bcorps/listByType?cnName={{key}}",
- props: {
- label: 'cnName',
- value: 'cnName',
- res:'data.records'
- },
- search:true,
- span:6,
- searchOrder:18,
- },
- {
- label: "签单方式",
- prop: "issueType",
- width:"120",
- overHidden:true,
- type:'select',
- dicData:[],
- dicUrl:"/api/blade-system/dict-biz/dictionary",
- props: {
- label: 'dictValue',
- value: 'dictValue',
- },
- search:true,
- span:6,
- searchOrder:17,
- },
- {
- label: "唛头",
- prop: "marks",
- width: "80",
- overHidden: true,
- },
- {
- label: "件数",
- prop: "quantity",
- overHidden:true,
- },
- {
- label: "毛重 (KGM)",
- prop: "grossWeight",
- width:"120",
- overHidden:true,
- },
- {
- label: "净重 (KGM)",
- prop: "netWeight",
- width:"120",
- overHidden:true,
- },
- {
- label: "体积 (CBM)",
- prop: "measurement",
- width:"120",
- overHidden:true,
- },
- {
- label: "TEU箱数",
- prop: "teu",
- width:"100",
- overHidden:true,
- },
- {
- label: "V20",
- prop: "quantityV20",
- width:"100",
- overHidden:true,
- },
- {
- label: "V40",
- prop: "quantityV40",
- width:"100",
- overHidden:true,
- },
- {
- label: "40HC",
- prop: "quantityV40hc",
- width:"100",
- overHidden:true,
- },
- {
- label: "V45",
- prop: "quantityV45",
- width:"100",
- overHidden:true,
- },
- {
- label: "V48",
- prop: "quantityV48",
- width:"100",
- overHidden:true,
- },
- {
- label: "需陆运",
- prop: "isNeedLand",
- type: 'select',
- dicData: [{
- label: '否',
- value: 0
- }, {
- label: '是',
- value: 1
- }],
- overHidden:true,
- },
- {
- label: "需报关",
- prop: "isNeedDeclare",
- type: 'select',
- dicData: [{
- label: '否',
- value: 0
- }, {
- label: '是',
- value: 1
- }],
- overHidden:true,
- },
- {
- label: "需三检",
- prop: "isNeedIq",
- type: 'select',
- dicData: [{
- label: '否',
- value: 0
- }, {
- label: '是',
- value: 1
- }],
- overHidden:true,
- },
- {
- label: "应收(CNY)",
- prop: "amountDr",
- width: "160",
- overHidden:true,
- },
- {
- label: "应付(CNY)",
- prop: "amountCr",
- width: "160",
- overHidden:true,
- },
- {
- label: "利润(CNY)",
- prop: "amountProfit",
- width: "160",
- overHidden:true,
- },
- {
- // label: "综合 USD 应付(USD) - 非 USD 外币转换为 USD",
- label: "综合应付(USD)",
- prop: "amountCrUsd",
- width: "120",
- overHidden:true,
- },
- {
- label: "综合利润(USD)",
- prop: "amountProfitUsd",
- width: "120",
- overHidden:true,
- },
- {
- label: "合计应收(CNY )",
- prop: "amountDrLoc",
- width:"160",
- overHidden:true,
- },
- {
- label: "合计应付(CNY)",
- prop: "amountCrLoc",
- width:"160",
- overHidden:true,
- },
- {
- label: "合计利润(CNY)",
- prop: "amountProfitLoc",
- width:"160",
- overHidden:true,
- },
- {
- label: "应收对账状态",
- prop: "checkDrStatusDescr",
- width:"160",
- overHidden:true,
- },
- {
- label: "应付对账状态",
- prop: "checkCrStatusDescr",
- width:"160",
- overHidden:true,
- },
- {
- label: "应收结算状态",
- prop: "stlDrStatusDescr",
- width:"160",
- overHidden:true,
- },
- {
- label: "应付结算状态",
- prop: "stlCrStatusDescr",
- width:"160",
- overHidden:true,
- },
- {
- label: "销项发票状态",
- prop: "invoiceDrStatusDescr",
- width:"160",
- overHidden:true,
- },
- {
- label: "进项发票状态",
- prop: "invoiceCrStatusDescr",
- width:"160",
- overHidden:true,
- },
- {
- label: "创建人",
- prop: "createUserName",
- rules: [{
- required: true,
- message: "请输入创建人",
- trigger: "blur"
- }],
- overHidden:true,
- },
- {
- label: "创建时间",
- prop: "createTime",
- width:"160",
- overHidden:true,
- },
- {
- label: "更新人",
- prop: "updateUserName",
- overHidden:true,
- },
- {
- label: "更新时间",
- prop: "updateTime",
- width:"160",
- overHidden:true,
- },
- {
- label: "edi发送状态",
- prop: "ediStatus",
- type:"select",
- dicData: [
- {
- label: '未发送',
- value: '0'
- },{
- label: '已发送',
- value: '1'
- }
- ],
- width: "100",
- overHidden:true,
- },
- {
- label: "业务状态",
- prop: "billStatus",
- type:"select",
- dicData: [],
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- width: "100",
- overHidden:true,
- },
- {
- label: "财务状态",
- prop: "accountStatus",
- type:"select",
- dicData: [],
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- width: "180",
- overHidden:true,
- },
- {
- label: "审核状态",
- prop: "status",
- type: 'select',
- dicData: [],
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- overHidden:true,
- },
- {
- label: "备注",
- prop: "remarks",
- overHidden:true,
- },
- ]
- },
- // 弹窗的配置
- mawbOption:{},
- mawbOptionBack:{
- height:'450',
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- selection: false, // 多选
- dialogClickModal: false,
- stripe:true,
- addBtn:false,
- viewBtn:false,
- delBtn:false,
- editBtn:false,
- menu:false,
- menuWidth:'auto',
- column: [
- {
- label: '',
- prop: 'radio',
- width: 35,
- hide: false
- },
- {
- label: "船名",
- prop: "vesselCnName",
- overHidden:true,
- },
- {
- label: "航次",
- prop: "voyageNo",
- overHidden:true,
- },
- {
- label: "MB/L NO",
- prop: "mblno",
- search:true,
- overHidden:true,
- },
- {
- label: "HB/L NO",
- prop: "hblno",
- search:true,
- overHidden:true,
- },
- {
- label: "开船日期",
- prop: "etd",
- overHidden:true,
- },
- {
- label: "到港日期",
- prop: "eta",
- overHidden:true,
- },
- {
- label: "装货港",
- prop: "polCnName",
- overHidden:true,
- },
- {
- label: "卸货港",
- prop: "podCnName",
- width:"120",
- overHidden:true,
- },
- {
- label: "单据编号",
- prop: "billNo",
- width:"160",
- overHidden:true,
- },
- {
- label: "客户名",
- prop: "corpCnName",
- overHidden:true,
- },
- {
- label: "客户英文",
- prop: "corpEnName",
- overHidden:true,
- },
- {
- label: "件数",
- prop: "quantity",
- overHidden:true,
- },
- {
- label: "包装单位",
- prop: "packingUnit",
- overHidden:true,
- },
- {
- label: "毛重",
- prop: "grossWeight",
- overHidden:true,
- },
- {
- label: "净重",
- prop: "netWeight",
- overHidden:true,
- },
- {
- label: "体积",
- prop: "measurement",
- overHidden:true,
- },
- {
- label: "单据日期",
- prop: "billDate",
- width:"150",
- overHidden:true,
- },
- ]
- },
- data: [],
- // 弹窗数据
- mawbData:[],
- // 业务状态数据
- billStatusData:[],
- // 财务状态
- accountStatusData:[],
- saberUserInfo:{}, // 当前登录人个人信息
- };
- },
- computed: {
- ...mapGetters(["permission"]),
- permissionList() {
- return {
- addBtn: this.vaildData(this.permission.bills_add, false),
- viewBtn: this.vaildData(this.permission.bills_view, false),
- delBtn: this.vaildData(this.permission.bills_delete, false),
- editBtn: this.vaildData(this.permission.bills_edit, false)
- };
- },
- ids() {
- let ids = [];
- this.selectionList.forEach(ele => {
- ids.push(ele.id);
- });
- return ids.join(",");
- }
- },
- async created() {
- // 获取当前登录人个人信息
- this.saberUserInfo = JSON.parse(localStorage.getItem('saber-userInfo')).content
- // 首页快捷跳转进来的
- if(this.$route.query.home) {
- this.addbtnfun()
- }
- if (this.$route.query.id) {
- this.rowCellfun(this.$route.query.id)
- }
- this.option = await this.getColumnData(this.getColumnName(309.11), this.optionBack);
- this.mawbOption = await this.getColumnData(this.getColumnName(309.7), this.mawbOptionBack); // 主单列表
- this.billStatusWorkDictsfun() // 获取业务状态字典数据
- this.accountStatusWorkDictsfun() // 获取财务状态字典数据
- this.corpBcorpslistByType() // 获取客户名数据
- this.vesselBvesselsListfun() // 获取船名数据
- this.carrierBcorpslistByTypefun() // 获取船公司数据
- this.podBportsListfun() // 获取目的港数据
- this.lineBlinesListfun() // 获取航线数据
- this.cyBcorpslistByType() // 获取场站数据
- this.hConsigneeBcorpslistByType() // 获取收货人数据
- this.createDeptLzylistfun() // 获取创建部门数据
- this.bookingAgentBcorpsListfun() // 获取订舱代理数据
- this.getWorkDictsfun() // 获取签单方式字典数据
- this.statusWorkDictsfun() // 业务审核类型
- this.editypesListfun() // edi 数据获取
- },
- methods: {
- //导出
- outExport() {
- this.$confirm('是否导出当前所有数据?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- let queryParams = {}
- queryParams={
- businessType:'SI',
- seaType:'I',
- ...this.query,
- }
- delete queryParams.billStatus
- const routeData = this.$router.resolve({
- path: '/api/blade-los/bills/exportBills', //跳转目标窗口的地址
- query: {
- 'Blade-Auth': getToken(),
- ...queryParams, //括号内是要传递给新窗口的参数
- }
- })
- window.open(routeData.href.slice(1, routeData.href.length));
- })
- },
- // 发送EDI
- editypesSendingEdifun(row){
- row.billId = this.ids
- editypesSendingEdi(row).then(res=>{
- this.$message.success('发送EDI成功')
- this.onLoad(this.page)
- })
- },
- // 获取EDI列表数据
- editypesListfun(){
- editypesList(1,30,{type:'HYJK'}).then(res=>{
- this.ediData = res.data.data.records
- })
- },
- // 展开和收起
- shiftCollapsiable(){
- this.fold = !this.fold
- if(this.fold) {
- this.option.searchMenuSpan = 24
- }else {
- this.option.searchMenuSpan = 6
- }
- },
- // 下拉的回调
- corpChange(value,name) {
- this.query[name] = value
- },
- // 获取签单方式字典数据
- getWorkDictsfun(){
- getWorkDicts('issue_type_F').then(res=>{
- this.issueTypeData = res.data.data
- this.findObject(this.option.column, "issueType").dicData = res.data.data
- })
- },
- // tabs切换筛选
- handleClick(tab, event){
- this.onLoad(this.page, this.query);
- },
- // 获取委托人数据
- corpBcorpslistByType(cnName){
- getBcorpslistByType(1,10,{cnName,status: 0}).then(res=>{
- this.corpData = res.data.data.records
- this.findObject(this.option.column, "corpCnName").dicData = res.data.data.records
- })
- },
- // 获取收货人数据
- hConsigneeBcorpslistByType(cnName){
- getBcorpslistByType(1,10,{cnName,status: 0}).then(res=>{
- this.hConsigneeData = res.data.data.records
- this.findObject(this.option.column, "hConsigneeCnName").dicData = res.data.data.records
- })
- },
- // 获取船名
- vesselBvesselsListfun(enName){
- getBvesselsList(1,10,{enName,status: 0}).then(res=>{
- this.vesselData = res.data.data.records
- this.findObject(this.option.column, "vesselCnName").dicData = res.data.data.records
- })
- },
- // 获取船公司数据
- carrierBcorpslistByTypefun(cnName){
- let corpTypeName = '船公司'
- getBcorpslistByType(1,10,{cnName,status: 0,corpTypeName}).then(res=>{
- this.carrierData = res.data.data.records
- this.findObject(this.option.column, "carrierCnName").dicData = res.data.data.records
- })
- },
- // 卸货港数据
- podBportsListfun(enName){
- bportsList(1,10,{enName,status: 0}).then(res=>{
- this.podData = res.data.data.records
- this.findObject(this.option.column, "podEnName").dicData = res.data.data.records
- })
- },
- // 航线数据
- lineBlinesListfun(cnName){
- blinesList(1,10,{cnName,status: 0}).then(res=>{
- this.lineData = res.data.data.records
- this.findObject(this.option.column, "lineCnName").dicData = res.data.data.records
- })
- },
- // 获取场站数据
- cyBcorpslistByType(cnName){
- let corpTypeName = '场站'
- getBcorpslistByType(1,10,{cnName,status: 0,corpTypeName}).then(res=>{
- this.cyData = res.data.data.records
- this.findObject(this.option.column, "cyCnName").dicData = res.data.data.records
- })
- },
- // 订舱代理
- bookingAgentBcorpsListfun(cnName){
- let corpTypeName = '国内直接客户,国内同行及代理,国外直接客户,国外同行及代理'
- getBcorpslistByType(1,10,{cnName,status: 0,corpTypeName}).then(res=>{
- this.bookingAgentData = res.data.data.records
- this.findObject(this.option.column, "bookingAgentCnName").dicData = res.data.data.records
- })
- },
- // 获取核算部分数据 // 机构管理接口
- createDeptLzylistfun(){
- getDeptTree().then(res=>{
- this.createDeptData = res.data.data
- this.findObject(this.option.column, "createDeptName").dicData = res.data.data;
- })
- },
- // 获取业务状态字典数据
- billStatusWorkDictsfun(){
- getWorkDicts('bill_status').then(res=>{
- this.findObject(this.option.column, "billStatus").dicData = res.data.data;
- this.billStatusData = res.data.data
- })
- },
- // 获取财务状态字典数据
- accountStatusWorkDictsfun(){
- getWorkDicts('account_status').then(res=>{
- this.findObject(this.option.column, "accountStatus").dicData = res.data.data;
- this.accountStatusData = res.data.data
- })
- },
- // 获取业务审核状态
- statusWorkDictsfun(){
- getWorkDicts('audit_status_los').then(res=>{
- this.findObject(this.option.column, "status").dicData = res.data.data;
- })
- },
- // 添加到主单
- increaseMawb(){
- if (this.selectionList.length === 0) {
- this.$message.warning("请选择至少一条数据");
- return;
- }
- // 判断是否可以编辑别人业务 true 就没有权限
- if (this.ModifyOthersfun()) return;
- const obj = this.selectionList[0]
- for (let item of this.selectionList) {
- if (item.billType != 'MH') {
- this.$message.warning("请选择分单");
- return;
- }
- if (obj.placeReceiptId != item.placeReceiptId) {
- // 收货地
- this.$message.warning("请选择收货地相同的");
- return
- }
- if (obj.polId != item.polId) {
- // 装货港一样
- this.$message.warning("请选择装货港相同的");
- return
- }
- }
- this.mawbQuery.placeReceiptName = obj.placeReceiptName
- this.mawbQuery.polCnName = obj.polCnName
- this.$nextTick(()=>{
- this.dialogVisible = true
- this.mawbOnLoad(this.mawbPage)
- })
- },
- // 退舱
- Disembarkingfun(){
- if (this.selectionList.length === 0) {
- this.$message.warning("请选择至少一条数据");
- return;
- }
- // 判断是否可以编辑别人业务 true 就没有权限
- if (this.ModifyOthersfun()) return;
- this.billsDisembarkingfun(this.ids)
- },
- // 退舱接口
- billsDisembarkingfun(ids){
- billsDisembarking(ids).then(res=>{
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.onLoad(this.page)
- })
- },
- // 撤销退仓
- revokeWithdrawalfun(){
- if (this.selectionList.length === 0) {
- this.$message.warning("请选择至少一条数据");
- return;
- }
- this.billsRevokeDisembarkingfun(this.ids)
- },
- // 撤销退舱接口
- billsRevokeDisembarkingfun(ids){
- billsRevokeDisembarking(ids).then(res=>{
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.onLoad(this.page)
- })
- },
- // 下拉显示数据
- async expandChange(row){
- if (row.billType == 'MM') {
- this.SplitLoading = true
- const res = await billsListAll({masterId:row.id})
- this.$set(row,'billsListAllData',res.data.data)
- this.SplitLoading = false
- }else {
- this.$refs.crud.toggleRowExpansion(row,false)
- }
- },
- // 弹窗单选
- radioInput(row){
- console.log(row,2134)
- console.log(this.dialogRadio,2083)
- },
- // 弹窗确认
- AddToMainOrder(){
- if (!this.dialogRadio) {
- this.$message.warning("请选择一条数据");
- return
- }
- this.billsIncreaseReinsurancePolicyfun(this.ids,this.dialogRadio)
- },
- // 添加到主单接口
- billsIncreaseReinsurancePolicyfun(ids,id){
- billsIncreaseReinsurancePolicy(ids,id).then(res=>{
- this.dialogRadio = null
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.dialogVisible = false
- this.onLoad(this.page)
- })
- },
- // 弹窗关闭
- handleClose(done) {
- this.$confirm('确认关闭?')
- .then(_ => {
- this.dialogRadio = null
- done();
- })
- .catch(_ => {});
- },
- toAddEdit(){
- this.datekey=Date.now()
- },
- // 详情的返回列表
- goBack() {
- // 初始化数据
- // this.detailData = this.$options.data().detailData;
- if (JSON.stringify(this.$route.query) != "{}") {
- this.$router.$avueRouter.closeTag();
- this.$router.push({
- path: "/iosBasicData/OceanFreightImport/bills/index"
- });
- }
- this.isShow = true;
- this.onLoad(this.page, this.search);
- },
- // 新增弹窗开启
- addbtnfun(){
- this.detailData.seeDisabled = false
- this.isShow = false
- },
- // 复制单据
- CopyDocumentsfun(){
- if (this.selectionList.length !== 1) {
- this.$message.warning("请选择一条数据");
- return;
- }
- this.detailData.seeDisabled = false
- this.detailData.id = this.selectionList[0].id
- this.isShow = false
- this.$nextTick(()=>{
- this.$refs.billsDetails.pageLoading = true
- this.$refs.billsDetails.billsCopyBillsfun(this.selectionList[0].id)
- })
- },
- // 编辑详情打开
- rowCellfun(id,row) {
- this.detailData = {
- id:id
- }
- if (row) {
- if (this.saberUserInfo.role_name.indexOf('admin') == -1?this.saberUserInfo.role_name.indexOf('允许修改他人业务') == -1?this.saberUserInfo.user_id == row.createUser:true:true) {
- this.detailData.seeDisabled = false
- }else {
- this.detailData.seeDisabled = true
- }
- }else {
- this.detailData.seeDisabled = false
- }
- this.isShow = false
- this.$nextTick(()=>{
- this.$refs.billsDetails.pageLoading = true
- this.$refs.billsDetails.billsDetailfun(id)
- })
- },
- rowSave(row, done, loading) {
- billsSubmit(row).then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- done();
- }, error => {
- loading();
- window.console.log(error);
- });
- },
- rowUpdate(row, index, done, loading) {
- billsSubmit(row).then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- done();
- }, error => {
- loading();
- console.log(error);
- });
- },
- rowDel(row) {
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- return billsRemove(row.id);
- })
- .then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- });
- },
- // 删除
- handleDelete() {
- if (this.selectionList.length === 0) {
- this.$message.warning("请选择至少一条数据");
- return;
- }
- // 判断是否可以编辑别人业务 true 就没有权限
- if (this.ModifyOthersfun()) return;
- // 已经提交请核的提示不让删除
- let sumArr = []
- const h = this.$createElement
- for (let item of this.selectionList) {
- if (item.status == 1) {
- sumArr.push(h('p', `序号${item.$index + 1}的数据已经提交请核请勿删除`))
- }
- }
- if(sumArr.length != 0) {
- this.$confirm('提示', {
- message:h('div', sumArr),
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- return;
- }
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- return billsRemove(this.ids);
- })
- .then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.$refs.crud.toggleSelection();
- });
- },
- // 判断是否可以编辑别人业务
- ModifyOthersfun(){
- let sumArr = []
- const h = this.$createElement
- // 判断是否有权限
- if (this.saberUserInfo.role_name.indexOf('admin') != -1?this.saberUserInfo.role_name.indexOf('允许修改他人业务') != -1:false) return false
- // 当前登录人和选择的创建人对比是不是一个人
- for (let item of this.selectionList) {
- if (this.saberUserInfo.user_id != item.createUser) {
- sumArr.push(h('p', `你没有"允许修改他人业务"权限,请重新选择数据`))
- }
- }
- if(sumArr.length != 0) {
- this.$confirm('提示', {
- message:h('div', sumArr),
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).catch(err=>{})
- return true
- }
- },
- beforeOpen(done, type) {
- if (["edit", "view"].includes(type)) {
- billsDetail(this.form.id).then(res => {
- this.form = res.data.data;
- });
- }
- done();
- },
- searchReset() {
- this.query = {};
- this.onLoad(this.page);
- },
- // 搜索
- searchChange(params, done) {
- this.query = params;
- this.page.currentPage = 1;
- // // 判断检索条件是否可以使用
- // if(this.etdDisabled) {
- // this.query.etdList = this.etdList
- // }else {
- // delete params.etdList
- // }
- // if(this.etaDisabled) {
- // this.query.etaList = this.etaList
- // }else {
- // delete params.etaList
- // }
- this.onLoad(this.page, params);
- done();
- },
- selectionChange(list) {
- this.selectionList = list;
- },
- selectionClear() {
- this.selectionList = [];
- this.$refs.crud.toggleSelection();
- },
- currentChange(currentPage){
- this.page.currentPage = currentPage;
- },
- sizeChange(pageSize){
- this.page.pageSize = pageSize;
- },
- refreshChange() {
- this.onLoad(this.page, this.query);
- },
- // 列表获取数据
- onLoad(page, params = {}) {
- this.loading = true;
- billsList(page.currentPage, page.pageSize, {
- ...Object.assign(params, this.query),
- businessType:'SI',
- seaType:'I',
- status:this.query.billStatus == 3?3:undefined,
- }).then(res => {
- const data = res.data.data;
- this.page.total = data.total;
- this.data = data.records.map(item=>{
- item.billsListAllData = []
- item.billStatus = item.billStatus + ''
- item.accountStatus = item.accountStatus + ''
- item.status = item.status + ''
- return item
- })
- this.loading = false;
- this.selectionClear();
- });
- },
- // 弹窗表格获取数据
- mawbOnLoad(page, params = {}){
- this.mawbloading = true;
- billsList(page.currentPage, page.pageSize,
- {...Object.assign(params, this.mawbQuery),businessType:'SI'}).then(res=>{
- const data = res.data.data;
- this.mawbPage.total = data.total;
- this.mawbData = data.records;
- this.mawbloading = false;
- })
- },
- // 弹窗列表的分页
- mawbSizeChange(val){
- this.mawbPage.pageSize = val
- this.mawbOnLoad(this.mawbPage,this.mawbQuery)
- },
- // 弹窗列表的分页
- mawbCurrentChange(val){
- this.mawbPage.currentPage = val
- this.mawbOnLoad(this.mawbPage,this.mawbQuery)
- },
- // 弹窗的搜索
- mawbSearch(params, done){
- this.mawbQuery = params;
- this.mawbPage.currentPage = 1;
- this.mawbOnLoad(this.mawbPage,params)
- done()
- },
- //自定义列保存
- async saveColumnTwo(ref, option, optionBack, code) {
- /**
- * 已定义全局方法,直接使用,saveColumnData保存列数据方法,参数传值(表格名称,当前表格的option数据)
- * 已定义全局方法,直接使用,getColumnName方法用来获取枚举值,参数根据自己定义的code值获取中文名
- * 一定要执行异步操作,要等接口成功返回,才能执行下一行代码
- */
- const inSave = await this.saveColumnData(this.getColumnName(code), this[option]);
- if (inSave) {
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs[ref].$refs.dialogColumn.columnBox = false;
- }
- },
- //自定义列重置
- async resetColumnTwo(ref, option, optionBack, code) {
- this[option] = this[optionBack];
- const inSave = await this.delColumnData(this.getColumnName(code), this[optionBack]);
- if (inSave) {
- this.$message.success("重置成功");
- this.$refs[ref].$refs.dialogColumn.columnBox = false;
- }
- },
- // 更改表格颜色
- headerClassName(tab) {
- //颜色间隔
- let back = ""
- if (tab.columnIndex >= 0 && tab.column.level === 1) {
- if (tab.columnIndex % 2 === 0) {
- back = "back-one"
- } else if (tab.columnIndex % 2 === 1) {
- back = "back-two"
- }
- }
- return back;
- },
- }
- };
- </script>
- <style scoped>
- ::v-deep#out-table .back-one {
- background: #ecf5ff !important;
- text-align: center;
- }
- ::v-deep#out-table .back-two {
- background: #ecf5ff !important;
- text-align: center;
- }
- /deep/ .el-col-md-8 {
- width: 24.33333%;
- }
- ::v-deep.el-form-item {
- margin-bottom: 0;
- }
- </style>
|