123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760 |
- <template>
- <!-- 仓储费计算列表 + 弹窗页面 -->
- <div class="app-container">
- <el-form
- :model="queryParams"
- ref="queryForm"
- :inline="true"
- v-show="showSearch"
- label-width="88px"
- >
- <el-form-item label="业务编号" prop="fBillno">
- <el-input
- v-model="queryParams.fBillno"
- placeholder="请输入业务编号"
- clearable
- style="width: 200px"
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="制单人" prop="createBy">
- <el-select
- v-model="queryParams.createBy"
- filterable
- remote
- clearable
- style="width: 200px"
- :remote-method="userRemoteMethod"
- placeholder="请选择制单人"
- >
- <el-option
- v-for="(dict, index) in userOptions"
- :key="index.userName"
- :label="dict.nickName"
- :value="dict.userName"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="货权方" prop="fCorpid">
- <el-select
- v-model="queryParams.fCorpid"
- filterable
- remote
- clearable
- style="width: 200px"
- @keyup.enter.native="handleQuery"
- :remote-method="corpsRemoteMethod"
- placeholder="请选择货权方"
- >
- <el-option
- v-for="(dict, index) in fMblnoOptions"
- :key="index.fId"
- :label="dict.fName"
- :value="dict.fId"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="提单号" prop="fMblno">
- <el-input
- v-model="queryParams.fMblno"
- placeholder="请输入提单号"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="唛头" prop="fMarks">
- <el-input
- v-model="queryParams.fMarks"
- placeholder="请输入唛头"
- clearable
- size="small"
- style="width: 200px"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="单据状态" prop="fBillstatus">
- <el-select
- style="width:200px"
- v-model="queryParams.fBillstatus"
- placeholder="请输入单据状态"
- >
- <el-option label="新建" value="1"></el-option>
- <el-option label="暂存" value="2"></el-option>
- <el-option label="审核驳回" value="3"></el-option>
- <el-option label="提交审核" value="4"></el-option>
- <el-option label="审核中" value="5"></el-option>
- <el-option label="审核通过" value="6"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="贸易方式" prop="fTrademodeid" v-if="showTrademode == '0'">
- <el-select
- v-model="queryParams.fTrademodeid"
- placeholder="请选择贸易方式"
- clearable
- style="width: 210px"
- >
- <el-option
- v-for="(item, index) in fTrademodeidOptions"
- :key="index.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- style="width: 210px;"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="计费日期" prop="timeInterval2">
- <el-date-picker
- v-model="queryParams.timeInterval2"
- type="daterange"
- value-format="yyyy-MM-dd"
- clearable
- style="width: 240px"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- @keyup.enter.native="handleQuery"
- :picker-options="pickerOptions"
- unlink-panels
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button
- type="cyan"
- icon="el-icon-search"
- size="mini"
- @click="handleQuery"
- >搜索
- </el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
- >重置
- </el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd(false)"
- v-hasPermi="['warehouseBusiness:storageFeeCalculation:add']"
- >新增
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- icon="el-icon-edit"
- size="mini"
- :disabled="single"
- @click="handleUpdate"
- v-hasPermi="['warehouseBusiness:storageFeeCalculation:edit']"
- >修改
- </el-button>
- </el-col>
- <!-- <el-col :span="1.5">-->
- <!-- <el-button-->
- <!-- type="danger"-->
- <!-- icon="el-icon-delete"-->
- <!-- size="mini"-->
- <!-- :disabled="multiple"-->
- <!-- @click="handleDelete"-->
- <!-- v-hasPermi="['warehouseBusiness:storageFeeCalculation:remove']"-->
- <!-- >删除-->
- <!-- </el-button>-->
- <!-- </el-col>-->
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['warehouseBusiness:storageFeeCalculation:export']"
- >导出
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- :disabled="multiple"
- v-hasPermi="['warehouseBusiness:storageFeeCalculation:export']"
- >导入
- </el-button>
- </el-col>
- <div class="tabSetting">
- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- ></right-toolbar>
- <div style="margin: 0 12px">
- <el-button
- icon="el-icon-setting"
- size="mini"
- circle
- @click="showSetting = !showSetting"
- ></el-button>
- </div>
- </div>
- </el-row>
- <el-dialog title="自定义列显示" :visible.sync="showSetting" width="700px" v-dialogDrag>
- <template slot="title">
- <div class="avue-crud__dialog__header">
- <span class="el-dialog__title">
- <span
- style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px"></span>
- </span>
- </div>
- </template>
- <div>配置排序列数据(拖动调整顺序)</div>
- <div style="margin-left: 17px">
- <el-checkbox
- v-model="allCheck"
- label="全选"
- @change="allChecked"
- ></el-checkbox>
- </div>
- <div style="padding: 4px; display: flex; justify-content: center">
- <draggable
- v-model="setRowList"
- group="site"
- animation="300"
- @start="onStart"
- @end="onEnd"
- handle=".indraggable"
- >
- <transition-group>
- <div
- v-for="item in setRowList"
- :key="item.surface"
- class="listStyle"
- >
- <div style="width: 500px" class="indraggable">
- <div class="progress" :style="{ width: item.width + 'px' }">
- <el-checkbox
- :label="item.name"
- v-model="item.checked"
- :true-label="0"
- :false-label="1"
- >{{ item.name }}
- </el-checkbox>
- </div>
- </div>
- <el-input-number
- v-model.number="item.width"
- controls-position="right"
- :min="1"
- :max="500"
- size="mini"
- ></el-input-number>
- </div>
- </transition-group>
- </draggable>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="showSetting = false">取 消</el-button>
- <el-button type="primary" @click="save()">确 定</el-button>
- </span>
- </el-dialog>
- <el-table
- v-loading="loading"
- :data="warehousebillsList"
- @selection-change="handleSelectionChange"
- ref="table"
- :height="tableHeight"
- >
- <el-table-column type="selection" width="55" align="center"/>
- <el-table-column type="index" label="行号" align="center"/>
- <el-table-column
- :show-overflow-tooltip="true"
- label="单据编号"
- align="center"
- width="160"
- prop="fBillno"
- />
- <el-table-column label="客户名称" align="center" width="300" sortable prop="fCorpid" show-overflow-tooltip/>
- <el-table-column
- label="计费日期"
- align="center"
- sortable
- prop="fBillingDeadline"
- width="180"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.fBillingDeadline, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="备注"
- align="center"
- prop="remark"
- />
- <el-table-column
- v-if="showTrademode == '0'"
- label="计费方式"
- align="center"
- prop="fTrademodeName"
- width="160"
- />
- <el-table-column
- label="单据状态"
- align="center"
- sortable
- prop="fBillstatus"
- width="160"
- >
- <!-- <template slot-scope="scope">
- <span v-if="scope.row.fBillstatus === 1">新建</span>
- <span v-if="scope.row.fBillstatus === 2">暂存</span>
- <span v-if="scope.row.fBillstatus === 3">审核驳回</span>
- <span v-if="scope.row.fBillstatus === 4">提交审核</span>
- <span v-if="scope.row.fBillstatus === 5">审核中</span>
- <span v-if="scope.row.fBillstatus === 6">审核通过</span>
- </template>-->
- </el-table-column>
- <el-table-column
- label="制单人"
- align="center"
- prop="createBy"
- />
- <el-table-column
- label="制单日期"
- align="center"
- prop="createTime"
- width="160"
- >
- <template slot-scope="scope">
- {{ scope.row.createTime.slice(0, 10) }}
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- align="center"
- class-name="small-padding fixed-width"
- min-width="180"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate_s(scope.row, true)"
- v-hasPermi="['warehouseBusiness:storageFeeCalculation:edit']"
- >查看
- </el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleUpdate(scope.row, true)"
- v-hasPermi="['warehouseBusiness:storageFeeCalculation:edit']"
- v-if="scope.row.fBillstatus == '请核' || scope.row.fBillstatus == '审核中' || scope.row.fBillstatus == '提交审核'"
- >审批进度
- </el-button
- >
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- v-if="
- scope.row.fBillstatus == '录入' ||
- scope.row.fBillstatus == '暂存' ||
- scope.row.fBillstatus == '审核驳回' ||
- scope.row.fBillstatus == '保存' ||
- scope.row.fBillstatus == '请核驳回'
- "
- @click="handleUpdate(scope.row, false)"
- v-hasPermi="['warehouseBusiness:storageFeeCalculation:edit']"
- >修改
- </el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- v-if="
- (scope.row.fBillstatus == '录入' ||
- scope.row.fBillstatus == '暂存' ||
- scope.row.fBillstatus == '审核驳回' ||
- scope.row.fBillstatus == '保存' ||
- scope.row.fBillstatus == '请核驳回')
- &&
- scope.row.isCreate == 0
- ||
- (scope.row.fBillstatus == '录入' ||
- scope.row.fBillstatus == '暂存' ||
- scope.row.fBillstatus == '审核驳回' ||
- scope.row.fBillstatus == '保存' ||
- scope.row.fBillstatus == '请核驳回')
- &&
- scope.row.isCreate == 1
- "
- @click="handleDelete(scope.row)"
- v-hasPermi="['warehouseBusiness:storageFeeCalculation:remove']"
- >删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 新增或修改仓储费计算对话框 -->
- <el-dialog
- v-dialogDrag
- :fullscreen="dialogFull"
- :visible.sync="open"
- :close-on-click-modal="false"
- width="80%"
- append-to-body
- :show-close="Xbutton"
- :before-close="handleClose"
- >
- <template slot="title">
- <div class="avue-crud__dialog__header">
- <span class="el-dialog__title">
- <span
- style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px"></span>
- </span>
- <div class="avue-crud__dialog__menu enlarge" @click="full">
- <i style="cursor: pointer;display: block;width:12px;height:12px;border:1px solid #909399;border-top:3px solid #909399;margin-top: -3px;"></i>
- </div>
- </div>
- </template>
- <el-form ref="form" :model="form" :rules="rules" label-width="120px">
- <el-row>
- <el-col :span="8">
- <el-form-item label="客户名称" prop="fCorpid">
- <el-select
- v-model="form.fCorpid"
- filterable
- clearable
- remote
- :disabled="browseStatus"
- style="width:80%"
- placeholder="请输入模糊查找客户名称"
- @change="changeFeeDate"
- >
- <el-option
- v-for="(dict, index) in NfMblnoOptions"
- :key="index.fId"
- :label="dict.fName"
- :value="dict.fId"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="货品名称" prop="fGoodsid">
- <el-select
- v-model="form.fGoodsid"
- filterable
- style="width:80%"
- :disabled="browseStatus"
- remote
- clearable
- :remote-method="goodsRemoteMethod"
- placeholder="请输入模糊查找货品名称"
- @change="changeFeeDate"
- >
- <el-option
- v-for="(dict, index) in goodsOptions"
- :key="index.fId"
- :label="dict.fName"
- :value="dict.fId"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="提单号" prop="fMblno">
- <el-input
- v-model="form.fMblno"
- style="width:80%"
- clearable
- :disabled="browseStatus"
- placeholder="手工输入"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="8">
- <el-form-item disabled label="仓储费截止日期" prop="fBillingDeadline">
- <el-date-picker
- v-model="form.fBillingDeadline"
- size="large"
- type="date"
- style="width:80%"
- :disabled="browseStatus"
- value-format="timestamp"
- placeholder="仓储费计算截止日期"
- @change="changeFeeDate"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="业务编号" prop="fBillno">
- <el-input
- disabled
- v-model="form.fBillno"
- style="width:80%"
- placeholder="业务编号"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="制单人" prop="createBy">
- <el-input
- disabled
- v-model="form.createBy"
- style="width:80%"
- placeholder="制单人"
- />
- </el-form-item>
- </el-col>
- <!-- <el-col :span="8">-->
- <!-- <el-form-item label="仓储费方式" prop="fChargetype">-->
- <!-- <span>-->
- <!-- <el-select v-model="form.fChargetype" slot="prepend" :disabled="browseStatus" placeholder="请选择" style="width:80%">-->
- <!-- <el-option label="实际入库日期" value="0"></el-option>-->
- <!-- <el-option label="最早入库日期" value="1"></el-option>-->
- <!-- </el-select>-->
- <!-- </span>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- <!-- <el-col :span="8">-->
- <!-- <el-form-item label="仓储费方式" prop="fChargetype">-->
- <!-- <span>-->
- <!-- <el-select v-model="form.fChargetype" slot="prepend" :disabled="browseStatus" placeholder="请选择" style="width:80%">-->
- <!-- <el-option label="实际入库日期" value="0"></el-option>-->
- <!-- <el-option label="最早入库日期" value="1"></el-option>-->
- <!-- </el-select>-->
- <!-- </span>-->
- <!-- </el-form-item>-->
- <!-- </el-col>-->
- </el-row>
- <el-row>
- <el-col :span="8">
- <el-form-item disabled label="制单日期" prop="fbilldate">
- <el-date-picker
- v-model="form.createTime"
- size="large"
- type="date"
- disabled
- style="width:80%"
- value-format="timestamp"
- placeholder="制单日期"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="showWarehouse == '0'">
- <el-form-item label="仓库" prop="fWarehouseid">
- <el-select v-model="form.fWarehouseid"
- :disabled="notChange"
- placeholder="请选择仓库库区"
- clearable
- filterable
- @change="changeFeeDate"
- >
- <el-option
- v-for="(item, index) in warehouseOptions"
- :key="index.fId"
- :label="item.fName"
- :value="item.fId"
- style="width: 210px;"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="showTrademode == '0'">
- <el-form-item label="贸易方式" prop="fTrademodeid">
- <el-select
- v-model="form.fTrademodeid"
- :disabled="notChange"
- placeholder="请选择贸易方式"
- clearable
- style="width: 210px"
- >
- <el-option
- v-for="(item, index) in fTrademodeidOptions"
- :key="index.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- style="width: 210px;"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="showTrademode == '1'">
- <el-form-item disabled label="备注" prop="remark">
- <el-input
- style="width:80%"
- :disabled="browseStatus"
- v-model="form.remark"
- placeholder="请输入备注"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row v-if="showTrademode == '0'">
- <el-col :span="8">
- <el-form-item disabled label="备注" prop="remark">
- <el-input
- style="width:80%"
- :disabled="browseStatus"
- v-model="form.remark"
- placeholder="请输入备注"
- />
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div style="font-size:18px; padding-top:8px">
- 计费物资明细
- <el-button :disabled="browseStatus" @click="calculateCost">计算仓储费</el-button>
- <el-button type="primary" :disabled="browseStatus" @click="submitForm(2)">保 存</el-button>
- <el-button
- type="warning"
- icon="el-icon-download"
- @click="handleExportItems"
- >导出
- </el-button>
- <el-button
- type="warning"
- icon="el-icon-download"
- @click="exportDetail"
- v-show="dataList.length > 0 && form.fMblno"
- >明细导出</el-button>
- <el-button type="danger" v-show="showAgreementStatus" @click="showAgreement">查看仓储费用协议</el-button>
- </div>
- <div class="dialogTableTitle flex a-center jlr"
- style="display:flex;justify-content:space-between;align-items:center;margin: 10px 0;">
- <el-table
- :data="dataList"
- ref="tableList"
- tooltip-effect="dark"
- border
- stripe
- :summary-method="getSummaries"
- show-summary
- >
- <el-table-column label="序号" type="index" width="80">
- </el-table-column>
- <el-table-column
- prop="fBilltype"
- header-align="center"
- align="center"
- width="140px"
- label="业务来源"
- >
- <template slot-scope="scope">
- <span v-if="scope.row.fBilltype === 'SJRK'">入库</span>
- <span v-if="scope.row.fBilltype === 'SJCK'">出库</span>
- <span v-if="scope.row.fBilltype === 'KCZZ'">库存总账</span>
- <span v-if="scope.row.fBilltype === 'HQZY'">货权转移</span>
- </template>
- </el-table-column>
- <el-table-column
- prop="fMblno"
- header-align="center"
- align="center"
- width="140px"
- label="业务单号"
- >
- </el-table-column>
- <el-table-column
- prop="fProductName"
- header-align="center"
- align="center"
- width="140px"
- label="货物名称"
- >
- </el-table-column>
- <el-table-column
- prop="warehouseName"
- header-align="center"
- align="center"
- width="140px"
- label="仓库"
- v-if="showWarehouse == '0'"
- >
- </el-table-column>
- <el-table-column
- prop="fMarks"
- header-align="center"
- align="center"
- width="140px"
- label="唛头"
- />
- <el-table-column
- prop="fBsdate"
- header-align="center"
- align="center"
- width="140px"
- label="业务日期"
- >
- <template slot-scope="scope">
- <el-date-picker
- v-model="scope.row.fBsdate"
- size="large"
- type="date"
- disabled
- value-format="timestamp"
- placeholder="业务日期"
- >
- </el-date-picker>
- </template>
- </el-table-column>
- <el-table-column
- prop="fBillingway"
- header-align="center"
- align="center"
- width="180px"
- label="计费单位"
- >
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.fBillingway"
- placeholder="请选择计费单位"
- disabled
- clearable
- >
- <el-option
- v-for="dict in fFeetunitOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </template>
- </el-table-column>
- <el-table-column
- prop="fBillingQty"
- header-align="center"
- align="center"
- width="140px"
- label="计费数量"
- >
- </el-table-column>
- <el-table-column
- prop="fChargedate"
- header-align="center"
- align="center"
- width="140px"
- label="计费起始日期"
- >
- <template slot-scope="scope">
- <el-date-picker
- v-model="scope.row.fChargedate"
- size="large"
- type="date"
- disabled
- value-format="timestamp"
- placeholder="计费起始日期"
- >
- </el-date-picker>
- </template>
- </el-table-column>
- <el-table-column
- prop="fBillingDeadline"
- header-align="center"
- align="center"
- width="140px"
- label="计费截止日期"
- >
- <template slot-scope="scope">
- <el-date-picker
- v-model="scope.row.fBillingDeadline"
- size="large"
- type="date"
- disabled
- value-format="timestamp"
- placeholder="计费截止日期"
- >
- </el-date-picker>
- </template>
- </el-table-column>
- <el-table-column
- prop="fBillingDays"
- header-align="center"
- align="center"
- width="140px"
- label="计费天数"
- >
- </el-table-column>
- <el-table-column
- prop="fInventoryDays"
- header-align="center"
- align="center"
- width="140px"
- label="库存天数"
- >
- </el-table-column>
- <el-table-column
- prop="fAmt"
- header-align="center"
- align="center"
- width="140px"
- label="计费金额"
- >
- </el-table-column>
- <el-table-column
- prop="remark"
- header-align="center"
- width="150px"
- align="center"
- label="备注"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.remark"
- placeholder="备注"
- v-if="!browseStatus"
- show-word-limit
- />
- <span v-else>{{scope.row.remark}}</span>
- </template>
- </el-table-column>
- <el-table-column
- prop="priceDateRemarks"
- header-align="center"
- width="150px"
- align="center"
- label="计费详情"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <span @click="showRemarkDetail(scope.row)">{{scope.row.priceDateRemarks}}</span>
- </template>
- </el-table-column>
- <el-table-column
- header-align="center"
- align="center"
- label="操作"
- width="130PX"
- >
- <template slot-scope="scope">
- <el-button
- @click.native.prevent="
- deleteRow(scope.$index, dataList)
- "
- :disabled="browseStatus"
- size="small"
- >移除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <!-- <div>-->
- <!-- <el-button :disabled="browseStatus" @click.prevent="addCollection()"-->
- <!-- >新行-->
- <!-- </el-button>-->
- <!-- <el-button type="primary" :disabled="browseStatus" @click="submitForm(2)">保 存</el-button>-->
- <!-- </div>-->
- <!-- <div style="font-size:18px">应收款明细</div>-->
- <!-- <div class="dialogTableTitle flex a-center jlr"-->
- <!-- style="display:flex;justify-content:space-between;align-items:center;margin: 10px 0;">-->
- <!-- <el-table-->
- <!-- :data="warehouseDrList"-->
- <!-- ref="table"-->
- <!-- tooltip-effect="dark"-->
- <!-- border-->
- <!-- stripe-->
- <!-- show-summary-->
- <!-- :summary-method="warehouseDrSummaries"-->
- <!-- >-->
- <!-- <el-table-column label="序号" type="index" width="80">-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fCorpid"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="180px"-->
- <!-- label="客户名称"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-select-->
- <!-- v-model="scope.row.fCorpid"-->
- <!-- filterable-->
- <!-- remote-->
- <!-- :disabled="browseStatus"-->
- <!-- :remote-method="corpsRemoteMethod"-->
- <!-- placeholder="客户名称"-->
- <!-- >-->
- <!-- <el-option-->
- <!-- v-for="(dict, index) in fMblnoOptions"-->
- <!-- :key="index.fId"-->
- <!-- :label="dict.fName"-->
- <!-- :value="dict.fId"-->
- <!-- ></el-option>-->
- <!-- </el-select>-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fFeeid"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="180px"-->
- <!-- label="费用名称"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-select-->
- <!-- v-model="scope.row.fFeeid"-->
- <!-- filterable-->
- <!-- remote-->
- <!-- :disabled="browseStatus"-->
- <!-- :remote-method="fWRemoteMethod"-->
- <!-- placeholder="费用名称"-->
- <!-- >-->
- <!-- <el-option-->
- <!-- v-for="dict in fWbuOptions"-->
- <!-- :key="dict.fId"-->
- <!-- :label="dict.fName"-->
- <!-- :value="dict.fId"-->
- <!-- ></el-option>-->
- <!-- </el-select>-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fFeeunitid"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="180px"-->
- <!-- label="计价单位"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-select-->
- <!-- v-model="scope.row.fFeeunitid"-->
- <!-- placeholder="请选择计价单位"-->
- <!-- :disabled="browseStatus"-->
- <!-- clearable-->
- <!-- >-->
- <!-- <el-option-->
- <!-- v-for="dict in fFeetunitOptions"-->
- <!-- :key="dict.dictValue"-->
- <!-- :label="dict.dictLabel"-->
- <!-- :value="dict.dictValue"-->
- <!-- />-->
- <!-- </el-select>-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fQty"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="150px"-->
- <!-- label="数量"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d\d\d).*$/, "$1$2.$3")'-->
- <!-- v-model="scope.row.fQty"-->
- <!-- @change="changeEstmateAmt(scope.row)"-->
- <!-- :disabled="browseStatus"-->
- <!-- placeholder="数量"-->
- <!-- show-word-limit-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fUnitprice"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="150px"-->
- <!-- label="单价"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'-->
- <!-- v-model="scope.row.fUnitprice"-->
- <!-- @change="changeEstmateAmt(scope.row)"-->
- <!-- :disabled="browseStatus"-->
- <!-- placeholder="单价"-->
- <!-- show-word-limit-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fAmount"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="150px"-->
- <!-- label="金额"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- disabled-->
- <!-- oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'-->
- <!-- v-model="scope.row.fAmount"-->
- <!-- placeholder="金额"-->
- <!-- show-word-limit-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fCurrency"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="150px"-->
- <!-- label="币别"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- v-model="scope.row.fCurrency"-->
- <!-- :disabled="browseStatus"-->
- <!-- placeholder="币别"-->
- <!-- show-word-limit-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fExrate"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="150px"-->
- <!-- label="汇率"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- v-model="scope.row.fExrate"-->
- <!-- :disabled="browseStatus"-->
- <!-- placeholder="汇率"-->
- <!-- show-word-limit-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fTaxrate"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="150px"-->
- <!-- label="税率"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- v-model="scope.row.fTaxrate"-->
- <!-- :disabled="browseStatus"-->
- <!-- placeholder="税率"-->
- <!-- show-word-limit-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fMblno"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="130px"-->
- <!-- label="提单号"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- v-model="scope.row.fMblno"-->
- <!-- :disabled="browseStatus"-->
- <!-- placeholder="提单号"-->
- <!-- show-word-limit-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fProductName"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="140px"-->
- <!-- label="品名"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- v-model="scope.row.fProductName"-->
- <!-- :disabled="browseStatus"-->
- <!-- placeholder="品名"-->
- <!-- show-word-limit-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="fMarks"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="130px"-->
- <!-- label="品牌"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- v-model="scope.row.fMarks"-->
- <!-- :disabled="browseStatus"-->
- <!-- placeholder="品牌"-->
- <!-- show-word-limit-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- prop="remark"-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="150px"-->
- <!-- label="备注"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- v-model="scope.row.remark"-->
- <!-- :disabled="browseStatus"-->
- <!-- placeholder="备注"-->
- <!-- show-word-limit-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- header-align="center"-->
- <!-- align="center"-->
- <!-- width="200px"-->
- <!-- label="操作"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-button-->
- <!-- @click.native.prevent="deleteRow(scope.$index, warehouseDrList)"-->
- <!-- size="small"-->
- <!-- >移除-->
- <!-- </el-button-->
- <!-- >-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- </el-table>-->
- <!-- </div>-->
- <div slot="footer" class="dialog-footer">
- <el-button type="success" v-if="form.fBillstatus === 6" @click="backrRconciliation">撤销请核</el-button>
- <el-button v-if="approve === true" @click="goApproval('f_billstatus')">审批</el-button>
- <el-button type="primary" v-if="form.fBillstatus > 3" @click="addOrUpdateHandle('f_billstatus')">查看审批流
- </el-button>
- <el-button v-if="cancelButton === true" @click="cancel">取 消</el-button>
- <el-button v-if="cancelButton === false" @click="homePage">取 消</el-button>
- <el-button type="danger" :disabled="disappear" v-if="form.fBillstatus === '4' && Operator === Lander"
- @click="backApproval('f_billstatus')">撤销审批
- </el-button>
- <el-button type="primary" :disabled="browseStatus" @click="submitForm(2)">保 存</el-button>
- <el-button
- :disabled="browseStatus"
- style="background-color: #008000; color: #fff"
- @click="submitForm(4)"
- >请 核
- </el-button>
- </div>
- <!-- 内置备注显示-->
- <el-dialog
- append-to-body
- width="30%"
- title="计费日期详情"
- :visible.sync="innerVisible"
- >
- <div style="margin-top: 5px">
- <p v-for="(item, index) in showDetail.priceDateRemarks" :key="index">{{ item }}</p>
- </div>
- <div slot="footer" class="dialog-footer">
- <el-button @click="innerVisible = false">关 闭</el-button>
- </div>
- </el-dialog>
- </el-dialog>
- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
- <approval-comments v-if="addOrUpdateVisib" ref="ApprovalComments" @refreshDataList="returnData"></approval-comments>
- <!-- 当弹出未找到计费规则是弹出仓储费对话框 -->
- <el-dialog
- v-dialogDrag
- :fullscreen="dialogFull"
- title="仓储费协议"
- :visible.sync="openAgreement" width="80%"
- append-to-body
- >
- <div style="display: flex;padding: 4% 0;">
- <el-table border :data="contractnoList" @selection-change="handleSelectionChange" style="width: 30%;float:left;flex: 1;" @cell-click="selectShow">
- <el-table-column
- prop="fContractno"
- header-align="center"
- align="center"
- width="150"
- label="合同编号"
- >
- <template slot-scope="scope">
- <el-link :underline="false">{{ scope.row.fContractno }}</el-link>
- </template>
- </el-table-column>
- <el-table-column
- prop="tPackages"
- header-align="center"
- align="center"
- width="140"
- label="货物类别"
- >
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.tPackages"
- placeholder="请选择货物类别"
- clearable
- :disabled="true"
- multiple
- >
- <el-option
- v-for="(dict, index) in fTypeidOptions"
- :key="index.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column label="有效期至" sortable align="center" prop="fEnddate" width="120">
- <template slot-scope="scope">
- <el-link :underline="false">{{ parseTime(scope.row.fEnddate, '{y}-{m}-{d}') }}</el-link>
- </template>
- </el-table-column>
- </el-table>
- <el-table v-loading="loading_s" border :data="agreementitemsList" @selection-change="handleSelectionChange" style="width: 70%;float:right;flex: 1.86;">
- <el-table-column label="行号" align="center" type="index" fixed="left" width="100"/>
- <el-table-column
- prop="fFeeunitid"
- header-align="center"
- align="center"
- width="125"
- label="计价单位"
- >
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.fFeeunitid"
- placeholder="请选择计价单位"
- @change="changeFeeUnit(scope.row)"
- clearable
- :disabled="true"
- >
- <el-option
- v-for="(dict, index) in jFeetunitOptions"
- :key="index.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </template>
- </el-table-column>
- <el-table-column label="开始天数" align="center" width="90">
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fFromdays"
- placeholder="请输入开始天数"
- oninput='value = value.replace(/[^\d.]/g,"")'
- clearable
- size="small"
- :disabled="true"
- />
- </template>
- </el-table-column>
- <el-table-column label="结束天数" align="center" width="90">
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fEndays"
- placeholder="请输入结束天数"
- oninput='value = value.replace(/[^\d.]/g,"")'
- clearable
- size="small"
- :disabled="true"
- />
- </template>
- </el-table-column>
- <!-- <el-table-column label="单价" align="center" width="90">
- <el-input
- slot-scope="scope"
- v-model="scope.row.fPrice"
- placeholder="请输入单价"
- oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
- clearable
- size="small"
- :disabled="true"
- />
- </el-table-column>
- <el-table-column label="录入人" align="center" width="120">
- <el-input
- slot-scope="scope"
- v-model="scope.row.createBy"
- :disabled="true"
- placeholder="默认录入人"
- clearable
- size="small"
- />
- </el-table-column>-->
- <el-table-column label="录入时间" align="center" width="200">
- <el-input
- slot-scope="scope"
- v-model="scope.row.createTime"
- placeholder="默认录入时间"
- :disabled="true"
- clearable
- size="small"
- />
- </el-table-column>
- <el-table-column
- prop="fFeeid"
- header-align="center"
- align="center"
- width="160"
- label="费用名称"
- >
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.fFeeid"
- filterable
- remote
- :disabled="true"
- placeholder="费用名称"
- >
- <el-option
- v-for="(dict, index) in fWbuOptionsN"
- :key="index.fId"
- :label="dict.fName"
- :value="dict.fId"
- ></el-option>
- </el-select>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- backFee,
- calculateStorageFees,
- getStorageFeeCalculation,
- delStorageFeeCalculation,
- addStorageFeeCalculation,
- listStorageFeeCalculation,
- updateStorageFeeCalculation,
- exportStorageFeeCalculation,
- exportWarehousebillsitems,
- delstorageFeeCalculation_s,
- exportWarehousebills,
- exportDetail, getAgreementByFCorpId
- } from '@/api/warehouseBusiness/storageFeeCalculation'
- import {listUser, queryUserVal} from "@/api/system/user";
- import {listGoods} from "@/api/basicdata/goods";
- import {listFees} from "@/api/basicdata/fees";
- import { agreementListCorps, agreementListCorpsNoParams, listCorps } from '@/api/basicdata/corps'
- import moment from 'moment'
- import AddOrUpdate from '@/views/viewApproval'
- import ApprovalComments from '@/views/startApproval'
- import Global from '@/layout/components/global'
- import {getCharge} from '@/api/finance/charge'
- import {RevocationApproval} from '@/api/finance/contrast'
- import Vue from 'vue'
- import UploadFile from '@/components/Uploadfile'
- import draggable from "vuedraggable";
- import Cookies from 'js-cookie'
- import {addSet, select} from '@/api/system/set'
- import {
- listWarehousesss,
- } from "@/api/basicdata/warehouse";
- import { getAgreement } from '@/api/warehouseBusiness/agreement'
- Vue.directive('dialogDrag', {
- bind(el, binding, vnode, oldVnode) {
- const dialogHeaderEl = el.querySelector('.el-dialog__header')
- const dragDom = el.querySelector('.el-dialog')
- const enlarge = el.querySelector('.enlarge')
- dialogHeaderEl.style.cursor = 'move'
- // 获取原有属性 ie dom元素.currentStyle 火狐谷歌 window.getComputedStyle(dom元素, null);
- const sty = dragDom.currentStyle || window.getComputedStyle(dragDom, null)
- if (enlarge) {
- enlarge.onclick = (e) => {
- dragDom.style.top = '0px'
- dragDom.style.left = '0px'
- }
- }
- dialogHeaderEl.onmousedown = (e) => {
- // 鼠标按下,计算当前元素距离可视区的距离
- const disX = e.clientX - dialogHeaderEl.offsetLeft
- const disY = e.clientY - dialogHeaderEl.offsetTop
- // 获取到的值带px 正则匹配替换
- let styL, styT
- // 注意在ie中 第一次获取到的值为组件自带50% 移动之后赋值为px
- if (sty.left.includes('%')) {
- styL = +document.body.clientWidth * (+sty.left.replace(/\%/g, '') / 100)
- styT = +document.body.clientHeight * (+sty.top.replace(/\%/g, '') / 100)
- } else {
- styL = +sty.left.replace(/\px/g, '')
- styT = +sty.top.replace(/\px/g, '')
- }
- document.onmousemove = function (e) {
- // 通过事件委托,计算移动的距离
- const l = e.clientX - disX
- const t = e.clientY - disY
- // 移动当前元素
- if ((t + styT) >= 0) {
- dragDom.style.top = `${t + styT}px`
- }
- dragDom.style.left = `${l + styL}px`
- // 将此时的位置传出去
- // binding.value({x:e.pageX,y:e.pageY})
- }
- document.onmouseup = function (e) {
- document.onmousemove = null
- document.onmouseup = null
- }
- }
- }
- })
- export default {
- name: "StorageFeeCalculation",
- components: {
- UploadFile,
- AddOrUpdate,
- ApprovalComments,
- draggable,
- },
- data() {
- return {
- // 仓库
- warehouseOptions: [],
- innerVisible:false,
- showDetail: {
- priceDateRemarks: [],
- },
- showWarehouse: null,
- tableHeight: '600',
- dialogFull: false,
- drag: false,
- countstate: false,
- setRowList: [
- {
- surface: "1",
- label: "createBy",
- name: "制单人",
- checked: 0,
- width: null,
- },
- {
- surface: "2",
- label: "fBillno",
- name: "单据编号",
- checked: 0,
- width: null,
- },
- {
- surface: "3",
- label: "fCorpid",
- name: "客户名称",
- checked: 0,
- width: null,
- },
- {
- surface: "4",
- label: "fBillingDeadline",
- name: "计费日期",
- checked: 0,
- width: null,
- },
- {
- surface: "5",
- label: "remark",
- name: "备注",
- checked: 0,
- width: null,
- },
- {
- surface: "6",
- label: "fBillstatus",
- name: "单据状态",
- checked: 0,
- width: null,
- },
- {
- surface: "7",
- label: "createTime",
- name: "制单日期",
- checked: 0,
- width: null,
- },
- ],
- getRowList: [
- {
- surface: "1",
- label: "createBy",
- name: "制单人",
- checked: 0,
- width: null,
- },
- {
- surface: "2",
- label: "fBillno",
- name: "单据编号",
- checked: 0,
- width: null,
- },
- {
- surface: "3",
- label: "fCorpid",
- name: "客户名称",
- checked: 0,
- width: null,
- },
- {
- surface: "4",
- label: "fBillingDeadline",
- name: "计费日期",
- checked: 0,
- width: null,
- },
- {
- surface: "5",
- label: "remark",
- name: "备注",
- checked: 0,
- width: null,
- },
- {
- surface: "6",
- label: "fBillstatus",
- name: "单据状态",
- checked: 0,
- width: null,
- },
- {
- surface: "7",
- label: "createTime",
- name: "制单日期",
- checked: 0,
- width: null,
- },
- ],
- allCheck: false,
- showSetting: false,
- Lander: '',
- Operator: '',
- actId: 150,
- disappear: false,
- cancelButton: true,
- Xbutton: true,
- approve: false,
- addOrUpdateVisib: false,
- addOrUpdateVisible: false,
- notChange: false,
- // 遮罩层
- loading: true,
- loading_s: false,
- contractnoList: [],
- agreementitemsList: [],
- jFeetunitOptions: [],
- fTypeidOptions: [],
- showAgreementStatus: false,
- // 选中数组
- ids: [],
- userVal: {
- userName: null,
- nickName: null,
- deptId: null,
- },
- queryForm: {},
- // 库存总账表
- whgenlegList: [],
- dataList: [],
- warehouseDrList: [],
- browseStatus: false,
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 仓库主(出入库)表格数据
- warehousebillsList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- openAgreement: false,
- // 货品名
- goodsOptions: [],
- // 货权方(客户数据)
- fMblnoOptions: [],
- NfMblnoOptions: [],
- // 操作员
- userOptions: [],
- // 制单部门
- deptOptions: [],
- // 计费单位(数据字典),下拉选择毛重或净重字典
- fFeetunitOptions: [/*{
- dictLabel: '件数',
- dictValue: 1
- }, {
- dictLabel: '毛重',
- dictValue: 2
- }, {
- dictLabel: '净重',
- dictValue: 3
- }, {
- dictLabel: '尺码',
- dictValue: 4
- }, {
- dictLabel: '固定',
- dictValue: 5
- }*/],
- fTaxrate: 0,
- // 费用名称
- fWbuOptions: [],
- fWbuOptionsN: [],
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- createBy: null,
- createTime: null,
- fCustomsdeclartion: null,
- fOriginalbillno: null,
- fDeptid: null,
- fBsdeptid: null,
- fContacts: null,
- fTel: null,
- fCorpid: null,
- fTocorpid: null,
- fStltypeid: null,
- fBscorpno: null,
- fWarehouseid: null,
- fStorekeeper: null,
- fBsdate: null,
- fPlanqty: null,
- fPlangrossweight: null,
- fPlannetweight: null,
- fPlanvolumn: null,
- fQty: null,
- fGrossweight: null,
- fNetweight: null,
- fVolumn: null,
- fTrademodeid: null,
- fSbu: null,
- fFeetunit: null,
- fMblno: null,
- fVslvoy: null,
- fEta: null,
- fCustomno: null,
- fIfweigh: null,
- fIfpledge: null,
- fIfdamage: null,
- fBankcorpid: null,
- fBilltype: null,
- fBillstatus: null,
- fCreateby: null,
- fCreatetime: null,
- fGoodsid: null,
- fCntrtype: null,
- fCntqty: null,
- timeInterval2: null
- },
- // 表单参数
- form: {},
- // 表单校验
- rules: {
- fCorpid: [{required: true, message: " ", trigger: "blur",}],
- fBillingDeadline: [{required: true, message: " ", trigger: "blur",}],
- fGoodsid: [{required: false, message: " ", trigger: "blur",}]
- },
- pickerOptions: {
- shortcuts: [{
- text: '最近一周',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
- picker.$emit('pick', [start, end]);
- }
- }, {
- text: '最近一个月',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
- picker.$emit('pick', [start, end]);
- }
- }, {
- text: '最近三个月',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
- picker.$emit('pick', [start, end]);
- }
- }]
- },
- // 贸易方式,对应t_trademodels 字典
- fTrademodeidOptions: [],
- showTrademode: null,
- };
- },
- created() {
- let date = new Date();
- let lYear = parseInt(date.getFullYear())
- let lMonth = parseInt(date.getMonth())
- if (lMonth == 0) {
- lMonth = 12
- lYear = lYear - 1
- }
- let nYear = parseInt(date.getFullYear())
- let nMonth = parseInt(date.getMonth() + 2)
- if (nMonth > 12) {
- nMonth = nMonth - 12
- nYear = nYear + 1
- }
- let day30 = [4, 6, 9, 11]
- let day31 = [1, 3, 5, 7, 8, 10, 12]
- let nDay = null
- if (day31.indexOf(nMonth) > -1) {
- nDay = 31
- } else if (day30.indexOf(nMonth) > -1) {
- nDay = 30
- } else if ((nYear % 4 == 0) && (nYear % 100 != 0 || nYear % 400 == 0)) {
- nDay = 29
- } else {
- nDay = 28
- }
- this.queryParams.timeInterval2 = [lYear + '-' + lMonth + '-' + '01', nYear + '-' + nMonth + '-' + nDay]
- this.getList();
- this.getDicts("tax_rate").then((response) => {
- this.fTaxrate = response.data[0].dictValue
- });
- this.getDicts('data_unitfees').then((response) => {
- this.fFeetunitOptions = response.data
- })
- this.getDicts('data_trademodes').then(response => {
- this.fTrademodeidOptions = response.data
- });
- this.getConfigKey("agreement.warehouse").then((response) => {
- this.showWarehouse = response.msg;
- });
- this.getConfigKey("agreement.trademode").then((response) => {
- this.showTrademode = response.msg;
- });
- this.register()
- listWarehousesss({fStatus: 0, delFlag: 0}).then((response) => {
- this.warehouseOptions = response.rows;
- });
- agreementListCorpsNoParams().then((res) => {
- if (res.data.corpList) {
- this.NfMblnoOptions = res.data.corpList;
- }
- });
- this.getDicts('data_goods_category').then(response => {
- this.fTypeidOptions = response.data
- })
- },
- activated() {
- this.Jump()
- if (this.$route.query.id) {
- let data = {fId: this.$route.query.id}
- this.handleUpdate_s(data, true)
- }
- },
- mounted() {
- this.$nextTick(() => {
- // 监听浏览器高度变化,改变表格高度
- window.onresize = () => {
- this.tableHeight = window.innerHeight - this.$refs.table.$el.offsetTop - 70
- }
- })
- },
- methods: {
- full() {
- this.dialogFull = !this.dialogFull
- },
- // 获取当前月的第一天和最后一天
- getMonth() {
- let date = new Date();
- let year = parseInt(date.getFullYear())
- let month = parseInt(date.getMonth() + 1)
- let currentMonth = date.getMonth()
- let nextMonth = ++currentMonth
- let nextMonthFirstDay = new Date(date.getFullYear(), nextMonth, 1) // 下个月的第一天
- let oneDay = 1000*60*60*24
- let lastTime = new Date(nextMonthFirstDay - oneDay) // 下个月的第一天减去一天,就是上个月的最后一天
- let day = lastTime.getDate()
- if (day < 10) {
- day = '0' + day
- }
- this.queryParams.timeInterval = [year + '-' + month + '-' + '01 00:00:00', year + '-' + month + '-' + day + ' 23:59:59']
- },
- //列设置全选
- allChecked() {
- if (this.allCheck == true) {
- this.setRowList.map((e) => {
- return (e.checked = 0);
- });
- } else {
- this.setRowList.map((e) => {
- return (e.checked = 1);
- });
- }
- },
- //查询列数据
- getRow() {
- let that = this;
- this.data = {
- tableName: "货转",
- userId: Cookies.get("userName"),
- };
- select(this.data).then((res) => {
- if (res.data.length != 0) {
- this.getRowList = res.data.filter((e) => e.checked == 0);
- this.setRowList = res.data;
- this.setRowList = this.setRowList.reduce((res, item) => {
- res.push({
- surface: item.surface,
- label: item.label,
- name: item.name,
- checked: item.checked,
- width: item.width,
- });
- return res;
- }, []);
- }
- });
- },
- //保存列设置
- save() {
- this.showSetting = false;
- this.data = {
- tableName: "货转",
- userId: Cookies.get("userName"),
- sysTableSetList: this.setRowList,
- };
- addSet(this.data).then((res) => {
- this.getRowList = this.setRowList.filter((e) => e.checked == 0);
- });
- },
- //开始拖拽事件
- onStart() {
- this.drag = true;
- },
- //拖拽结束事件
- onEnd() {
- this.drag = false;
- },
- // 撤销审核
- backrRconciliation() {
- // this.form.fBillstatus = '1'
- backFee(this.form.fId).then(response => {
- this.msgSuccess("撤回成功")
- this.getList()
- this.open = false
- this.getList()
- })
- },
- // 默认录入人
- register() {
- queryUserVal().then((response) => {
- this.Lander = response.user.userName
- })
- },
- // 撤销审批
- backApproval() {
- let data = {
- id: this.form.fId,
- actId: 150,
- billId: this.form.fId
- }
- RevocationApproval(data).then(response => {
- this.msgSuccess("撤销审批成功")
- this.disappear = true
- this.open = false
- this.getList()
- })
- },
- homepaGe() {
- let view = {
- fullPath: "/business/agreement",
- hash: "",
- matched: Array(2),
- meta: Object,
- name: "Agreement",
- params: Object,
- path: "/business/agreement",
- query: Object,
- title: "仓储费"
- }
- this.$router.push({path: '/index'})
- this.$store.dispatch('tagsView/delView', view).then(({visitedViews}) => {
- if (this.isActive(view)) {
- this.toLastView(visitedViews, view)
- }
- })
- Global.$emit("removeCache", "closeSelectedTag", view);
- },
- Jump() {
- this.approval = this.$route.query.data
- if (this.approval) {
- this.reset()
- this.browseStatus = status;
- this.Xbutton = false
- this.approval = JSON.parse(this.approval)
- // this.hide = false
- this.notChange = true
- this.approve = true
- this.cancelButton = false
- getStorageFeeCalculation(this.approval.billId).then(response => {
- this.fMblnoOptions = []
- if (response.data.corps) {
- this.fMblnoOptions.push(response.data.corps)
- }
- if (response.data.warehouse) {
- this.form = response.data.warehouse
- this.$set(this.form, 'createTime', Date.parse(this.form.createTime))
- this.$set(this.form, 'fBillingDeadline', Date.parse(this.form.fBillingDeadline))
- }
- if (response.data.warehouseItemsList) {
- this.dataList = response.data.warehouseItemsList
- for (let li in this.dataList) {
- this.$set(this.dataList[li], 'fBillingway', this.dataList[li].fBillingway + '')
- this.$set(this.dataList[li], 'fBsdate', Date.parse(this.dataList[li].fBsdate))
- this.$set(this.dataList[li], 'fChargedate', Date.parse(this.dataList[li].fChargedate))
- this.$set(this.dataList[li], 'fBillingDeadline', Date.parse(this.dataList[li].fBillingDeadline))
- this.$set(this.dataList[li], 'fStorageFeeDeadline', Date.parse(this.dataList[li].fStorageFeeDeadline))
- }
- }
- if (response.data.warehouseFeesList) {
- this.warehouseDrList = response.data.warehouseFeesList
- for (let dr in this.warehouseDrList) {
- this.$set(this.warehouseDrList[dr], "fFeeunitid", this.warehouseDrList[dr].fFeeunitid + '');
- }
- }
- if (response.data.feesList) {
- this.fWbuOptions = response.data.feesList
- }
- this.userOptions = response.data.sysUser;
- this.open = true;
- this.title = "编辑仓储费计算";
- });
- }
- },
- // 审批按钮
- goApproval(status) {
- this.addOrUpdateVisib = true
- this.$nextTick(() => {
- this.$refs.ApprovalComments.init(this.form.fId, status, this.actId)
- })
- },
- homePage() {
- this.open = false
- this.showAgreementStatus = false
- let view = {
- fullPath: "/business/agreement",
- hash: "",
- matched: Array(2),
- meta: Object,
- name: "Agreement",
- params: Object,
- path: "/business/agreement",
- query: Object,
- title: "仓储费"
- }
- this.$router.push({path: '/index'})
- this.$store.dispatch('tagsView/delView', view).then(({visitedViews}) => {
- if (this.isActive(view)) {
- this.toLastView(visitedViews, view)
- }
- })
- Global.$emit("removeCache", "closeSelectedTag", view);
- },
- // 查看审批流
- addOrUpdateHandle(status) {
- this.addOrUpdateVisible = true
- this.addOrUpdateVisib = false
- let id = '448'
- let actId = '110'
- this.$nextTick(() => {
- this.$refs.addOrUpdate.init(this.form.fId, this.actId, status)
- })
- },
- returnData() {
- this.addOrUpdateVisib = false
- this.open = false
- this.homepaGe()
- },
- getDataList() {
- this.addOrUpdateVisible = false
- },
- queryUser() {
- queryUserVal().then((response) => {
- if (response.user !== null) {
- this.userVal = response.user;
- this.$set(this.form, "fDeptid", this.userVal.deptId);
- this.$set(this.form, "createBy", this.userVal.userName);
- this.$set(this.form, "fIfdamage", "1");
- this.$set(this.form, "fIfweigh", "1");
- this.$set(this.form, "fTrademodeid", "1");
- this.$set(this.form, "createTime", Date.parse(new Date()));
- }
- if (response.dept !== null) {
- this.deptOptions = [];
- this.deptOptions.push(response.dept);
- }
- });
- },
- /** 查询仓库主(出入库)列表 */
- getList() {
- this.loading = true;
- listStorageFeeCalculation(this.queryParams).then((response) => {
- this.warehousebillsList = response.rows;
- this.$set(this.form, 'createTime', moment(Date.parse(this.warehousebillsList.createTime)).format("YYYY-MM-DD HH:mm:ss"))
- this.total = response.total;
- this.loading = false;
- // 根据浏览器高度设置初始高度
- setTimeout(() => {
- this.tableHeight = window.innerHeight - this.$refs.table.$el.offsetTop - 70
- }, 300)
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.showAgreementStatus = false;
- this.reset();
- this.getList();
- },
- changeFeeDate() {
- if (!this.form.fCorpid || !this.form.fBillingDeadline) return
- this.dataList = []
- this.getStorageFee()
- // if (this.dataList.length !== 0) {
- // this.$confirm(`仓储费已经存在,确定要删除重新计算吗?`, '提示', {
- // confirmButtonText: '确定',
- // cancelButtonText: '取消',
- // type: 'warning'
- // }).then(() => {
- // this.dataList = []
- // this.getStorageFee()
- // }).catch(() => {
- // return false
- // })
- // } else {
- // this.dataList = []
- // this.getStorageFee()
- // }
- },
- // 计算仓储费
- calculateCost() {
- this.countstate = true
- if (!this.form.fCorpid || !this.form.fBillingDeadline) {
- this.$message({message: '请维护客户名称以及,仓储费计算截止日期', type: 'warning'})
- this.countstate = false
- return false
- }
- if (this.dataList.length !== 0) {
- this.$confirm(`仓储费已经存在,确定要删除重新计算吗?`, '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.dataList = []
- this.getStorageFee()
- }).catch(() => {
- return false
- })
- } else {
- this.dataList = []
- this.getStorageFee()
- }
- },
- // 添加费用新行
- // 收款信息
- addCollection() {
- this.warehouseDrList.push({
- fCorpid: null,
- fFeeid: null,
- fFeeunitid: "2",
- fQty: 0,
- fUnitprice: 0,
- fAmount: 0,
- fCurrency: "RMB",
- fExrate: "1",
- fTaxrate: this.fTaxrate,
- fCxrate: "1",
- fRate: null,
- remark: null,
- });
- },
- getStorageFee() {
- calculateStorageFees(this.form).then((response) => {
- this.dataList = []
- this.warehouseDrList = []
- this.form.fId = response.data.warehouseBills.fId
- this.form.fBillno = response.data.warehouseBills.fBillno
- if (response.data.warehouseFeesList) {
- this.warehouseDrList = response.data.warehouseFeesList
- }
- if (response.data.warehouseItemList) {
- this.dataList = response.data.warehouseItemList
- for (let li in this.dataList) {
- this.$set(this.dataList[li], 'fBsdate', Date.parse(this.dataList[li].fBsdate))
- this.$set(this.dataList[li], 'fBillingway', this.dataList[li].fBillingway + '')
- this.$set(this.dataList[li], 'fChargedate', Date.parse(this.dataList[li].fChargedate))
- this.$set(this.dataList[li], 'fBillingDeadline', Date.parse(this.dataList[li].fBillingDeadline))
- this.$set(this.dataList[li], 'fOriginalbilldate', Date.parse(this.dataList[li].fOriginalbilldate))
- this.$set(this.dataList[li], 'fBillingway', this.dataList[li].fBillingway + '')
- }
- }
- if (response.data.feesList) {
- this.fWbuOptions = response.data.feesList
- }
- this.countstate = false
- },(error) => {
- this.showAgreementStatus = true
- });
- },
- showAgreement() {
- getAgreementByFCorpId(this.form.fCorpid).then((res) => {
- this.contractnoList = res.data.contractnoList;
- this.contractnoList.forEach(item => {
- item.tPackages = item.tPackages.map(e => e = e.toString())
- })
- })
- this.openAgreement = true
- },
- handleClose () {
- this.showAgreementStatus = false;
- this.open = false;
- },
- selectShow(row) {
- getAgreement(row.fId).then(response => {
- this.agreementitemsList = response.data.tWarehouseAgreementitems
- for (let item in this.agreementitemsList) {
- this.$set(this.agreementitemsList[item], 'fFeeunitid', this.agreementitemsList[item].fFeeunitid + '')
- }
- this.fWbuOptionsN = response.data.feesList
- let queryParams = { fName: name }
- listFees(queryParams).then((response) => {
- this.fWbuOptionsN = response.rows
- })
- })
- this.getDicts("data_unitfees").then(response => {
- this.jFeetunitOptions = response.data;
- });
- },
- // 变更计价单位
- changeFeeUnit(row) {
- if (!row.fFeeUnitid) {
- return false
- }
- if (row.fFeeUnitid === '0') {
- this.$set(row, 'fQty', this.fCntqty)
- } else if (row.fFeeUnitid === '1') {
- this.$set(row, 'fQty', this.fGrossweight)
- }
- if (row.fUnitprice) {
- this.$set(
- row,
- 'fAmount',
- parseFloat(Number(row.fUnitprice) * Number(row.fQty)).toFixed(2)
- )
- }
- },
- /* 远程模糊查询商品 */
- goodsRemoteMethod(name) {
- if (name == null || name === "") {
- return false;
- }
- let queryParams = {fName: name};
- listGoods(queryParams).then((response) => {
- this.goodsOptions = response.rows;
- });
- },
- // 表单重置
- reset() {
- this.form = {
- fId: null,
- fBillno: null,
- fCustomsdeclartion: null,
- fOriginalbillno: null,
- fDeptid: null,
- fBsdeptid: null,
- fContacts: null,
- fTel: null,
- fCorpid: null,
- fTocorpid: null,
- fStltypeid: null,
- fBscorpno: null,
- fWarehouseid: null,
- fStorekeeper: null,
- fBsdate: null,
- fPlanqty: null,
- fPlangrossweight: null,
- fPlannetweight: null,
- fPlanvolumn: null,
- fQty: null,
- fGrossweight: null,
- fNetweight: null,
- fVolumn: null,
- fTrademodeid: null,
- fSbu: null,
- fFeetunit: null,
- fMblno: null,
- fVslvoy: null,
- fEta: null,
- fCustomno: null,
- fIfweigh: null,
- fIfpledge: null,
- fIfdamage: null,
- fBankcorpid: null,
- fBilltype: null,
- fBillstatus: null,
- delFlag: null,
- createBy: null,
- createTime: null,
- updateBy: null,
- updateTime: null,
- remark: null,
- fCreateby: null,
- fCreatetime: null,
- fGoodsid: null,
- fCntrtype: null,
- fCntqty: null,
- };
- this.deptOptions = [];
- this.userOptions = [];
- this.fWbuOptions = [];
- this.fMblnoOptions = [];
- this.disappear = false
- this.addOrUpdateVisib = false
- this.addOrUpdateVisible = false
- this.notChange = false
- this.loading = false
- this.browseStatus = false
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.queryParams = {
- fBillstatus: null,
- fBillno: null,
- createBy: null,
- timeInterval: null,
- fCorpid: null,
- fMblno: null,
- fSbu: null,
- fGoodsid: null,
- fWarehouseid: null,
- fMarks: null,
- }
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection;
- // this.ids = selection.map((item) => item.fId);
- this.single = selection.length !== 1 || selection.map((item) => item.fBillstatus) == 6 || selection.map((item) => item.fBillstatus) == 4;
- this.multiple = !selection.length;
- },
- /** 新增按钮操作 */
- handleAdd(status) {
- this.reset();
- this.browseStatus = status;
- this.queryUser();
- this.open = true;
- this.dataList = [];
- this.warehouseCrList = [];
- this.warehouseDrList = [];
- this.relevantAttachments = [];
- this.title = "出库单";
- },
- TFformdata(data) {
- this.form = data;
- if (this.form.fTrademodeid) {
- this.$set(this.form, "fTrademodeid", this.form.fTrademodeid.toString());
- }
- },
- handleUpdate_s(row, status) {
- const queryParams = {fName: ''};
- listGoods(queryParams).then((response) => {
- this.goodsOptions = response.rows;
- });
- this.reset();
- this.notChange = true
- this.browseStatus = status;
- let data = row || this.ids;
- getStorageFeeCalculation(data.fId).then((response) => {
- this.fMblnoOptions = []
- if (response.data.corps) {
- this.fMblnoOptions.push(response.data.corps)
- }
- if (response.data.warehouse) {
- this.form = response.data.warehouse
- this.Operator = this.form.createBy
- this.$set(this.form, 'createTime', Date.parse(this.form.createTime))
- this.$set(this.form, 'fBillingDeadline', Date.parse(this.form.fBillingDeadline))
- }
- this.TFformdata(response.data.warehouse)
- if (response.data.warehouseItemsList) {
- this.dataList = response.data.warehouseItemsList
- for (let li in this.dataList) {
- this.$set(this.dataList[li], 'fBillingway', this.dataList[li].fBillingway + '')
- this.$set(this.dataList[li], 'fBsdate', Date.parse(this.dataList[li].fBsdate))
- this.$set(this.dataList[li], 'fChargedate', Date.parse(this.dataList[li].fChargedate))
- this.$set(this.dataList[li], 'fBillingDeadline', Date.parse(this.dataList[li].fBillingDeadline))
- this.$set(this.dataList[li], 'fStorageFeeDeadline', Date.parse(this.dataList[li].fStorageFeeDeadline))
- }
- }
- if (response.data.warehouseFeesList) {
- this.warehouseDrList = response.data.warehouseFeesList
- for (let dr in this.warehouseDrList) {
- this.$set(this.warehouseDrList[dr], "fFeeunitid", this.warehouseDrList[dr].fFeeunitid + '');
- }
- }
- if (response.data.feesList) {
- this.fWbuOptions = response.data.feesList
- }
- this.userOptions = response.data.sysUser;
- this.open = true;
- this.title = "编辑仓储费计算";
- });
- },
- /** 修改按钮操作 */
- handleUpdate(row, status) {
- const queryParams = {fName: ''};
- listGoods(queryParams).then((response) => {
- this.goodsOptions = response.rows;
- });
- this.reset();
- this.disappear = false
- this.notChange = true
- this.browseStatus = status;
- let fId = row.fId || this.ids;
- if (fId.length === 1) {
- fId = fId[0].fId
- }
- getStorageFeeCalculation(fId).then((response) => {
- this.fMblnoOptions = []
- if (response.data.corps) {
- this.fMblnoOptions.push(response.data.corps)
- }
- if (response.data.warehouse) {
- this.form = response.data.warehouse
- this.Operator = this.form.createBy
- this.$set(this.form, 'createTime', Date.parse(this.form.createTime))
- this.$set(this.form, 'fBillingDeadline', Date.parse(this.form.fBillingDeadline))
- }
- this.TFformdata(response.data.warehouse)
- if (response.data.warehouseItemsList) {
- this.dataList = response.data.warehouseItemsList
- for (let li in this.dataList) {
- this.$set(this.dataList[li], 'fBillingway', this.dataList[li].fBillingway + '')
- this.$set(this.dataList[li], 'fBsdate', Date.parse(this.dataList[li].fBsdate))
- this.$set(this.dataList[li], 'fChargedate', Date.parse(this.dataList[li].fChargedate))
- this.$set(this.dataList[li], 'fBillingDeadline', Date.parse(this.dataList[li].fBillingDeadline))
- this.$set(this.dataList[li], 'fStorageFeeDeadline', Date.parse(this.dataList[li].fStorageFeeDeadline))
- }
- }
- if (response.data.warehouseFeesList) {
- this.warehouseDrList = response.data.warehouseFeesList
- for (let dr in this.warehouseDrList) {
- this.$set(this.warehouseDrList[dr], "fFeeunitid", this.warehouseDrList[dr].fFeeunitid + '');
- }
- }
- if (response.data.feesList) {
- this.fWbuOptions = response.data.feesList
- }
- this.userOptions = response.data.sysUser;
- this.open = true;
- this.title = "编辑仓储费计算";
- });
- },
- changeEstmateAmt(row) {
- let fQty = 0
- let fUnitprice = 0
- if (row.fUnitprice && row.fUnitprice !== "") {
- fUnitprice = row.fUnitprice
- }
- if (row.fQty && row.fQty !== "") {
- fQty = row.fQty
- }
- this.$set(row, "fAmount", Number(fUnitprice) * Number(fQty)).toFixed(2);
- },
- changefBsdate(row) {
- if (this.dataList.length > 0) {
- for (var i = 0; i < this.dataList.length; i++) {
- this.$set(this.dataList[i], "fBsdate", row);
- }
- }
- },
- // 合计
- getSummaries(param) {
- const {columns, data} = param;
- const sums = [];
- var values = [];
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = "合计";
- return;
- }
- if (column.property === "fBillingQty") {
- values = data.map((item) => Number(item["fBillingQty"]));
- }
- if (column.property === "fAmt") {
- values = data.map((item) => Number(item["fAmt"]));
- }
- // const values = data.map(item => Number(item[column.property]))
- if (column.property === "fBillingQty" || column.property === "fAmt") {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return prev + curr;
- } else {
- return prev;
- }
- }, 0);
- sums[index] = sums[index].toFixed(2)
- } else {
- sums[index] = '-'
- }
- });
- return sums;
- },
- // 付款合计
- warehouseDrSummaries(param) {
- const {columns, data} = param;
- const sums = [];
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = "合计";
- return;
- }
- const values = data.map((item) => Number(item[column.property]));
- if (column.property === "fAmount") {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return prev + curr;
- } else {
- return prev;
- }
- }, 0); // sums[index]
- sums[index] = sums[index].toFixed(2)
- } else {
- sums[index] = '-'
- }
- });
- return sums;
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- console.log(this.ids)
- let ids_FId = [];
- this.ids.forEach(item => {
- ids_FId.push(item.fId)
- })
- // const fIds = row.fId || this.ids.fId;
- const fIds = row.fId || ids_FId;
- console.log(fIds)
- let tips = ''
- delstorageFeeCalculation_s(fIds).then(data => {
- console.log(data)
- switch (data.msg) {
- case '0': {
- this.$message.error('当前数据已被其他操作员操作请刷新页面')
- break
- }
- case '1': {
- tips = '当前主表有数据从表无数据是否删除'
- this.delete_s(fIds, tips)
- break
- }
- case '2': {
- tips = '当前主表有数据从表有数据是否删除'
- this.delete_s(fIds, tips)
- break
- }
- default: {
- return this.$message.error('未知错误,无状态')
- }
- }
- })
- },
- delete_s(fIds, tips) {
- this.$confirm(
- tips,
- "警告",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }
- )
- .then(function () {
- return delStorageFeeCalculation(fIds);
- })
- .then(() => {
- this.getList();
- this.msgSuccess("删除成功");
- });
- },
- /** 导出按钮操作 */
- handleExport() {
- const queryParams = this.queryParams;
- this.$confirm("是否确认导出所有仓库主(出入库)数据项?", "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(function () {
- return exportWarehousebills(queryParams);
- })
- .then((response) => {
- this.download(response.msg);
- });
- },
- handleExportItems() {
- const fIds = this.form.fId
- if (fIds !== null) {
- this.$confirm("是否确认导出所有计费物资明细数据?", "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(function () {
- return exportWarehousebillsitems(fIds);
- })
- .then((response) => {
- this.download(response.msg);
- });
- } else {
- this.$message("请先保存")
- }
- },
- exportDetail() {
- const fIds = this.form.fId
- if (fIds !== null) {
- this.$confirm("是否确认导出所有计费物资明细数据?", "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(function () {
- return exportDetail(fIds);
- })
- .then((response) => {
- this.download(response.msg);
- });
- } else {
- this.$message("请先保存")
- }
- },
- deleteRow(index, rows) {
- rows.splice(index, 1);
- },
- /* 远程模糊查询用户 */
- corpsRemoteMethod(name) {
- if (name == null || name === "") {
- return false;
- }
- let queryParams = {pageNum: 1, pageSize: 10, fName: name};
- agreementListCorps(queryParams).then((response) => {
- this.fMblnoOptions = response.rows;
- });
- },
- // 远程模糊查询费用名称
- fWRemoteMethod(name) {
- if (name == null || name === "") {
- return false;
- }
- let queryParams = {pageNum: 1, pageSize: 10, fName: name};
- listFees(queryParams).then((response) => {
- this.fWbuOptions = response.rows;
- });
- },
- /* 远程模糊查询操作用户 */
- userRemoteMethod(name) {
- if (name == null || name === "") {
- return false;
- }
- let queryParams = {pageNum: 1, pageSize: 10, userName: name};
- listUser(queryParams).then((response) => {
- this.userOptions = response.rows;
- });
- },
- /** 提交按钮 */
- submitForm(status) {
- this.$refs["form"].validate((valid) => {
- if (valid) {
- if (status !== 2) {
- if (this.dataList.length === 0) {
- this.$message.error("请维护计费物资明细!");
- return false;
- }
- }
- if (!this.form.fCorpid) {
- this.$message({message: '请维护货权方', type: 'warning'})
- return false
- }
- if (!this.form.fBillingDeadline) {
- this.$message({message: '请维护仓储费计算截止日期', type: 'warning'})
- return false
- }
- if (this.form.fBillstatus !== 4) {
- this.form.fBillstatus = status
- }
- let formData = new window.FormData();
- formData.append("warehouseBills", JSON.stringify(this.form));
- formData.append("warehouseItems", JSON.stringify(this.dataList));
- formData.append("warehouseFees", JSON.stringify(this.warehouseDrList));
- addStorageFeeCalculation(formData).then((response) => {
- this.msgSuccess("操作成功");
- if (status !== 2) {
- this.open = false;
- this.reset()
- this.getList();
- } else {
- this.form = response.data
- this.$set(this.form, 'createTime', Date.parse(this.form.createTime))
- this.$set(this.form, 'fBillingDeadline', Date.parse(this.form.fBillingDeadline))
- }
- })
- }
- });
- },
- showRemarkDetail(row) {
- let data = row.priceDateRemarks.split(',');
- this.showDetail.priceDateRemarks = data
- this.innerVisible = true;
- },
- }
- };
- </script>
- <style lang="scss" scoped>
- @import 'src/assets/styles/element-variables.scss';
- .tabSetting {
- display: flex;
- justify-content: flex-end;
- }
- .listStyle {
- display: flex;
- border-top: 1px solid #dcdfe6;
- border-left: 1px solid #dcdfe6;
- border-right: 1px solid #dcdfe6;
- }
- .listStyle:last-child {
- border-bottom: 1px solid #dcdfe6;
- }
- .progress {
- display: flex;
- align-items: center;
- padding: 2px;
- background-color: rgba(0, 0, 0, 0.05);
- height: 100%;
- }
- .juzhong > th {
- text-align: center;
- }
- .biaoge > tr > td {
- height: 30px;
- text-align: center;
- border-right: 1px solid #dfe6ec !important;
- border-bottom: 1px solid #dfe6ec !important;
- border-bottom: 1px solid #dfe6ec !important;
- }
- .el-table thead th {
- background: #1890ff;
- color: #fff;
- }
- .upload-demo {
- margin-left: 50px;
- }
- .el-form-item {
- margin-bottom: 5px !important;
- }
- .el-form-item__label {
- font-size: 12px !important;
- }
- .avue-crud__dialog__header {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- }
- .el-dialog__title {
- color: rgba(0, 0, 0, .85);
- font-weight: 500;
- word-wrap: break-word;
- }
- .avue-crud__dialog__menu {
- padding-right: 20px;
- float: left;
- }
- .avue-crud__dialog__menu i {
- color: #909399;
- font-size: 15px;
- }
- .el-icon-full-screen {
- cursor: pointer;
- }
- .el-icon-full-screen:before {
- content: "\e719";
- }
- </style>
|