12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355 |
- <template>
- <div class="app-container">
- <el-form
- :model="queryParams_s"
- ref="queryParams_s"
- :inline="true"
- v-show="showSearch"
- label-width="68px"
- >
- <el-form-item label="货权方" prop="fCtrlcorpid">
- <el-input
- v-model="queryParams_s.fCtrlcorpid"
- placeholder="请输入客户名称"
- filterable
- remote
- clearable
- style="width:200px"
- @keyup.enter.native="handleQuery"
- :remote-method="corpsRemoteMethod"
- />
- <!-- <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="fCorpid">
- <el-select
- v-model="queryParams_s.fCorpid"
- placeholder="请选择结算单位"
- filterable
- remote
- clearable
- style="width: 200px"
- @keyup.enter.native="handleQuery"
- :remote-method="corpsRemoteMethod"
- >
- <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="createBy">
- <el-input
- v-model="queryParams_s.createBy"
- size="small"
- disabled
- />
- </el-form-item>
- <!-- <el-form-item label="提单号" prop="tMblno">
- <el-input
- v-model="queryParams.tMblno"
- placeholder="请输入提单号"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>-->
- <!-- <el-form-item label="应收合计" prop="fAmtdr">
- <el-input
- v-model="queryParams.fAmtdr"
- placeholder="请输入应收合计"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item> -->
- <!-- <el-form-item label="应付合计" prop="fAmtcr">
- <el-input
- v-model="queryParams.fAmtcr"
- placeholder="请输入应付合计"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item> -->
- <!-- <el-form-item label="单据类型" prop="fBilltype">
- <el-select v-model="queryParams.fBilltype" placeholder="请选择单据类型" clearable size="small">
- <el-option label="请选择字典生成" value="" />
- </el-select>
- </el-form-item> -->
- <el-form-item label="对账日期" prop="fAccbilldate">
- <el-date-picker
- v-model="dateRange"
- size="small"
- style="width: 240px"
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- ></el-date-picker>
- </el-form-item>
- <el-form-item label="状态" prop="fBillstatus">
- <el-select v-model="queryParams_s.fBillstatus" placeholder="请选择">
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.dictLabel"
- :value="item.dictValue"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <!-- <el-form-item label="备注" prop="fRemarks">
- <el-input
- v-model="queryParams.fRemarks"
- placeholder="请输入备注"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>-->
- <el-form-item label="系统编号" prop="fBillno">
- <el-input
- v-model="queryParams_s.fBillno"
- placeholder="请输入系统编号"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <!-- <el-form-item label="制单部门" prop="fDeptid">
- <el-input label="请选择字典生成" value="" v-model="queryParams.fDeptid" placeholder="请选择制单部门" clearable size="small"/>
- </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"
- v-hasPermi="['finance:contrast: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="['warehouse:fee: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="['finance:contrast:remove']"
- >删除</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['finance:contrast:export']"
- >导出</el-button
- >
- </el-col>
- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- ></right-toolbar>
- </el-row>
- <el-table
- v-loading="loading"
- :data="contrastList"
- @selection-change="handleSelectionChange"
- >
- <el-table-column width="50" align="center" type="selection" />
- <!-- <el-table-column label="制单部门" align="center" prop="fId" /> -->
- <el-table-column label="行号" align="center" type="index"/>
- <el-table-column label="系统编号" align="center" prop="fBillno" show-overflow-tooltip width="120"/>
- <el-table-column label="货权方" align="center" show-overflow-tooltip prop="fCtrlcorpid" width="120"/>
- <el-table-column label="结算单位" align="center" prop="fCorpidName" show-overflow-tooltip width="120"/>
- <el-table-column label="账单日期" align="center" prop="fAccbilldate" width="120">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.fAccbilldate, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column label="提单号" align="center" prop="tMblno" width="120"/>
- <el-table-column label="应收金额" align="center" prop="fAmtdr" width="120"/>
- <el-table-column label="应付金额" align="center" prop="fAmtcr" width="120"/>
- <!-- <el-table-column label="单据类型" align="center" prop="fBilltype" />-->
- <el-table-column label="备注" align="center" show-overflow-tooltip prop="fRemarks" width="120"/>
- <el-table-column label="状态" align="center" prop="fBillstatus" width="120">
- <template slot-scope="scope">
- <span v-if="scope.row.fBillstatus == '1'">新建</span>
- <span v-else-if="scope.row.fBillstatus == '2'">暂存</span>
- <span v-else-if="scope.row.fBillstatus == '3'">审批驳回</span>
- <span v-else-if="scope.row.fBillstatus == '4'">提交审核</span>
- <span v-else-if="scope.row.fBillstatus == '5'">审核中</span>
- <span v-else-if="scope.row.fBillstatus == '6'">审核完成</span>
- </template>
- </el-table-column>
-
- <!-- <el-table-column label="制单部门" align="center" prop="fDeptid" /> -->
- <el-table-column
- label="操作"
- align="center"
- class-name="small-padding fixed-width"
- width="140"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['finance:contrast:edit']"
- >修改</el-button
- >
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['finance:contrast: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
- :visible.sync="open"
- width="70%"
- append-to-body
- :close-on-click-modal="false"
- >
- <el-form
- ref="ruless"
- :model="queryParams"
- :rules="ruless"
- label-width="68px"
- :inline="true"
- v-show="showSearch"
- >
- <el-form-item label="货权方" prop="fCtrlcorpid">
- <el-input
- v-model="queryParams.fCtrlcorpid"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- placeholder="请输入客户名称"
- />
- </el-form-item>
- <el-form-item label="结算单位" label-width="78px" prop="fCorpid">
- <el-select
- v-model="queryParams.fCorpid"
- placeholder="请选择结算单位"
- filterable
- remote
- clearable
- style="width: 200px"
- @keyup.enter.native="handleQuery"
- :remote-method="corpsRemoteMethod"
- >
- <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="tMblno">
- <el-input v-model="TWareHouseFees.tMblno" placeholder="" :disabled="true"/>
- </el-form-item> -->
- <el-form-item label="对账日期" prop="fAccbilldate" label-width="78px">
- <el-date-picker
- v-model="queryParams.fAccbilldate"
- size="small"
- style="width: 200px"
- value-format="yyyy-MM-dd"
- type="date"
- placeholder="选择账单日期"
- >
- </el-date-picker>
- </el-form-item>
- <!-- <el-form-item label="单据日期">
- <el-date-picker
- v-model="value4"
- size="small"
- style="width: 240px"
- value-format="yyyy-MM-dd"
- type="date">
- </el-date-picker>
- </el-form-item> -->
- <el-form-item label="系统编号" prop="fBillno">
- <el-input
- v-model="queryParams.fBillno"
- placeholder=""
- clearable
- size="small"
- :disabled="true"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="录入人" prop="createBy">
- <el-input v-model="queryParams.createBy" disabled/>
- </el-form-item>
- <el-form-item label="备注" prop="fRemarks">
- <el-input v-model="queryParams.fRemarks"/>
- </el-form-item>
- <div style="width: 100%">
- <el-button type="warning" size="small" @click="reconciliation"
- >对账</el-button
- >
- <el-button type="primary" size="small" @click="confirmReconciliation">确认对账</el-button>
- <el-button type="success" size="small">导出</el-button>
- <el-button type="info" size="small" @click="openPrint=true">打印</el-button>
- <el-button type="danger" size="small">删除</el-button>
- </div>
- <!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> -->
- </el-form>
- <el-table
- v-loading="loading"
- :data="DzfeeList"
- @selection-change="handleSelectionChanGe"
- >
- <!-- <el-table-column type="selection" width="55" align="center" /> -->
- <!-- <el-table-column label="制单部门" align="center" prop="fId" /> -->
- <el-table-column label="行号" align="center" type="index" />
- <el-table-column label="提单号" align="center" prop="fMblno" />
- <el-table-column label="业务日期" align="center" prop="fBsdate">
- <template slot-scope="scope">
- <span>{{scope.row.fBsdate.slice(0,10)}}</span>
- </template>
- </el-table-column>
- <el-table-column label="费用名称" align="center" prop="fFeeName" />
- <el-table-column label="收/付" align="center" prop="fSrcdc">
- <template slot-scope="scope">
- <span v-if="scope.row.fSrcdc == 'D'">收</span>
- <span v-else-if="scope.row.fSrcdc == 'C'">付</span>
- </template>
- </el-table-column>
- <el-table-column label="金额" align="center" prop="fAmtdr" />
- <el-table-column label="本次金额" align="center" prop="fAmt" />
- <el-table-column label="业务类型" align="center" prop="fBilltype">
- <template slot-scope="scope">
- <span v-if="scope.row.fBilltype == 'SJRK'">入库</span>
- <span v-else-if="scope.row.fBilltype == 'SJCK'">出库</span>
- <span v-else-if="scope.row.fBilltype == 'CKDB'">调拨</span>
- <span v-else-if="scope.row.fBilltype == 'HQZY'">货权转移</span>
- <span v-else>{{scope.row.fBilltype}}</span>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click.native.prevent="deleteRow(scope.$index,DzfeeList)"
- >删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">保 存</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- <!-- 添加或修改财务数据主对话框 -->
- <el-dialog
- :close-on-click-modal="false"
- width="70%"
- :title="title"
- :visible.sync="innerVisible"
- append-to-body
- >
- <el-form
- :model="TWareHouseFees"
- ref="feeListRules"
- :rules="feeListRules"
- label-width="80px"
- :inline="true"
- >
- <!-- <el-form-item label="业务编号" prop="fBillno">
- <el-input v-model="form.fBillno" placeholder="请输入业务编号" />
- </el-form-item> -->
- <el-form-item
- label="货权方"
- prop="fCorpid"
- >
- <el-select
- v-model="TWareHouseFees.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="fToCorpid">
- <el-select
- v-model="TWareHouseFees.fToCorpid"
- placeholder="请选择结算单位"
- filterable
- remote
- clearable
- style="width: 200px"
- @keyup.enter.native="handleQuery"
- :remote-method="corpsRemoteMethod"
- >
- <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="TWareHouseFees.fMblno"
- placeholder="请输入提单号"
- style="width: 200px"
- />
- </el-form-item>
- <el-form-item label="收付" prop="fDc">
- <el-col :span="8">
- <el-select v-model="TWareHouseFees.fDc" style="width: 200px">
- <el-option label="收" value="D" />
- <el-option label="付" value="C" />
- </el-select>
- </el-col>
- </el-form-item>
- <el-form-item label="是否对账" prop="fReconciliation">
- <el-col :span="8">
- <el-select
- v-model="TWareHouseFees.fReconciliation"
- style="width: 200px"
- >
- <el-option label="是" value="1" />
- <el-option label="否" value="0" />
- </el-select>
- </el-col>
- </el-form-item>
- <el-form-item label="费用名称" prop="fFeeid">
- <template>
- <el-select
- v-model="TWareHouseFees.fFeeid"
- filterable
- :disabled="browseStatus"
- remote
- :remote-method="fWRemoteMethod"
- placeholder="费用名称"
- multiple
- >
- <el-option
- v-for="item in fWbuOptions"
- :key="item.fId"
- :label="item.fName"
- :value="item.fId"
- >
- </el-option>
- </el-select>
- </template>
- </el-form-item>
- <el-form-item label="审核日期" prop="timeExamine">
- <el-date-picker
- style="width: 250px"
- size="small"
- v-model="TWareHouseFees.timeExamine"
- type="daterange"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- value-format="yyyy-MM-dd"
- :default-time="['00:00:00', '23:59:59']"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item label="对账日期" label-width="85px" prop="timeReconci" v-if="TWareHouseFees.fReconciliation == '1'">
- <el-date-picker
- v-model="TWareHouseFees.timeReconci"
- size="small"
- style="width: 200px"
- value-format="yyyy-MM-dd"
- type="daterange"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- :default-time="['00:00:00', '23:59:59']"
- ></el-date-picker>
- </el-form-item>
- <el-form-item>
- <!-- <el-button class="btnColor" type="info" size="mini">导入</el-button> -->
- <el-button
- type="cyan"
- size="mini"
- @click="searchFee"
- >搜索</el-button
- >
- <el-button
- type="info"
- size="mini"
- @click="resetQuery_s"
- >重置</el-button
- >
- </el-form-item>
- <el-table
- v-loading="loading"
- :data="feeList"
- show-summary
- :summary-method="getSummaries"
- @selection-change="handleSelectionChange_s"
- >
- <el-table-column type="selection" width="55" align="center" />
- <!-- <el-table-column label="制单部门" align="center" prop="fId" /> -->
- <el-table-column label="行号" align="center" type="index" />
- <el-table-column label="货权方" align="center" prop="fName" />
- <el-table-column label="结算单位" align="center" prop="fFeesName" />
- <!-- <el-table-column label="账单日期" align="center" prop="fAccbilldate"/> -->
- <el-table-column label="提单号" align="center" prop="fMblno" />
- <el-table-column label="品名" align="center" prop="fProductName" />
- <el-table-column label="业务日期" align="center" prop="fBsdate" />
- <el-table-column label="业务类型" align="center" prop="fBilltype">
- <template slot-scope="scope">
- <span v-if="scope.row.fBilltype == 'SJRK'">入库</span>
- <span v-else-if="scope.row.fBilltype == 'SJCK'">出库</span>
- <span v-else-if="scope.row.fBilltype == 'CKDB'">调拨</span>
- <span v-else-if="scope.row.fBilltype == 'HQZY'">货权转移</span>
- </template>
- </el-table-column>
- <!-- <el-table-column label="单据类型" align="center" prop="fBilltype" />-->
- <el-table-column
- label="审核日期"
- align="center"
- prop="fReviewDate"
- />
- <el-table-column label="金额" align="center" prop="fAmtdr" />
- <el-table-column label="本次金额" align="center" prop="fAmt">
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fAmt"
- placeholder="请输入本次金额"
- clearable
- size="small"
- oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
- @change="imgChangeI(scope.row)"
- />
- </template>
- </el-table-column>
- <el-table-column label="费用名称" align="center" prop="fFeeName" />
- <el-table-column label="备1注" align="center" prop="fRemarks">
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fRemarks"
- placeholder="请输入备注"
- clearable
- size="small"
- />
- </template>
- </el-table-column>
- </el-table>
- <!-- <el-form-item label="应收合计" prop="fAmtdr">
- <el-input v-model="form.fAmtdr" placeholder="请输入应收合计" />
- </el-form-item>
- <el-form-item label="应付合计" prop="fAmtcr">
- <el-input v-model="form.fAmtcr" placeholder="请输入应付合计" />
- </el-form-item>
- <el-form-item label="单据类型" prop="fBilltype">
- <el-select v-model="form.fBilltype" placeholder="请选择单据类型">
- <el-option label="请选择字典生成" value="" />
- </el-select>
- </el-form-item>
- <el-form-item label="状态">
- <el-radio-group v-model="form.fBillstatus">
- <el-radio label="1">请选择字典生成</el-radio>
- </el-radio-group>
- </el-form-item>
- <el-form-item label="备注" prop="fRemarks">
- <el-input v-model="form.fRemarks" placeholder="请输入备注" />
- </el-form-item>
- <el-form-item label="账单日期" prop="fAccbilldate">
- <el-date-picker clearable size="small" style="width: 200px"
- v-model="form.fAccbilldate"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择账单日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="删除状态" prop="delFlag">
- <el-input v-model="form.delFlag" placeholder="请输入删除状态" />
- </el-form-item>
- <el-form-item label="制单部门" prop="fDeptid">
- <el-select v-model="form.fDeptid" placeholder="请选择制单部门">
- <el-option label="请选择字典生成" value="" />
- </el-select>
- </el-form-item> -->
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="confirmImport">确 定</el-button>
- <el-button @click="innerVisible = false">取 消</el-button>
- </div>
- </el-dialog>
- </el-dialog>
- <!-- 打印页面 -->
- <el-dialog
- :visible.sync="openPrint"
- width="70%"
- append-to-body
- :close-on-click-modal="false"
- title="对账单"
- >
- <el-table
- border="true"
- v-loading="loading"
- :data="DzfeeList"
- @selection-change="handleSelectionChanGe">
- <el-table-column label="行号" align="center" type="index" />
- <el-table-column label="提单号" align="center" prop="fMblno" />
- <el-table-column label="业务日期" align="center" prop="fBsdate">
- <template slot-scope="scope">
- <span>{{scope.row.fBsdate.slice(0,10)}}</span>
- </template>
- </el-table-column>
- <el-table-column label="费用名称" align="center" prop="fFeeName" />
- <el-table-column label="收/付" align="center" prop="fSrcdc">
- <template slot-scope="scope">
- <span v-if="scope.row.fSrcdc == 'D'">收</span>
- <span v-else-if="scope.row.fSrcdc == 'C'">付</span>
- </template>
- </el-table-column>
- <el-table-column label="金额" align="center" prop="fAmtdr" />
- <el-table-column label="本次金额" align="center" prop="fAmt" />
- <el-table-column label="业务类型" align="center" prop="fBilltype">
- <template slot-scope="scope">
- <span v-if="scope.row.fBilltype == 'SJRK'">入库</span>
- <span v-else-if="scope.row.fBilltype == 'SJCK'">出库</span>
- <span v-else-if="scope.row.fBilltype == 'CKDB'">调拨</span>
- <span v-else-if="scope.row.fBilltype == 'HQZY'">货权转移</span>
- <span v-else>{{scope.row.fBilltype}}</span>
- </template>
- </el-table-column>
- </el-table>
- <el-button style="marginTop:10px">打印</el-button>
- </el-dialog>
- </div>
- </template>
- <script>
- import { Cfee, listFee, getFee, delFee, addFee, updateFee, exportFee, importFee} from "@/api/finance/contrast";
- import { listCorps } from '@/api/basicdata/corps'
- import { listFees } from '@/api/basicdata/fees'
- import { queryUserVal } from '@/api/warehouseBusiness/agreement'
- import moment from 'moment'
- export default {
- name: "Fee",
- components: {
- },
- data() {
- return {
- openPrint:false,
- statrGo:true,
- state_s: true,
- browseStatus:false,
- options:'',
- value1:"",
- value2:"",
- value3:"",
- value4:"",
- dateRange:"",
- // 遮罩层
- loading: true,
- fAccbilldate: '',
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 财务数据主表格数据
- feeList: [],
- // 客户(客户数据)
- fMblnoOptions: [],
- fFeeunitidOptions: [],
- fWbuOptions: [],
- KHblnoOptions: [],
- //打开内部弹窗
- innerVisible: false,
- selection: '',
- // 弹出层标题
- title: "",
- // // 录入人
- // createBy:response.user.userName,
- // 是否显示弹出层
- open: false,
- dialogVisible: false,
- // 财务对账表格
- DzfeeList: [],
- // 财务主页面表格
- contrastList: [],
- empty:[],
- nothing:[],
- //导入从表传主表
- pass:{
- fAmtdr:'', //应收合计
- fAmtcr:'', //应付合计
- fMblno:'', //提单号
- fName:'', //货权方
- fFeesName:'', //结算单位
- fCorpid:'' //结算单位ID
- },
- // 传值对象
- TWareHouseFees:{
- fCorpid:'',
- fToCorpid:'',
- fMblno:'',
- fStatementNo:'',
- fFeeid :'',
- timeExamine:'',
- timeInterval:'',
- fDc:'D',
- fReconciliation:'1',
- timeReconci:'',
- },
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- fCtrlcorpid: null,
- fCorpid: null,
- tMblno: null,
- fAmtdr: null,
- fAmtcr: null,
- fId:null,
- fBilltype: null,
- fBillstatus: null,
- fRemarks: null,
- fAccbilldate: null,
- fDeptid: null,
- createBy: null,
- timeReconci: null
- },
- // 主表查询参数
- queryParams_s: {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- fCtrlcorpid: null,
- fId:null,
- fCorpid: null,
- tMblno: null,
- fAmtdr: null,
- fAmtcr: null,
- fBilltype: null,
- fBillstatus: null,
- fRemarks: null,
- fAccbilldate: null,
- fDeptid: null
- },
- // 表单参数
- form: {},
- // 表单校验
- ruless:{
- fCtrlcorpid: [
- { required: true, message: '货权方不能为空', trigger: 'blur' }
- ],
- fCorpid: [
- { required: true, message: '结算单位不能为空', trigger: 'blur' }
- ],
- fAccbilldate: [
- { required: true, message: '对账日期不能为空', trigger: 'blur' }
- ]
- },
- feeListRules: {
- // fCtrlcorpid: [
- // { required:true, message: '不能为空', trigger: 'blur'}
- // ],
- fDc: [
- { required:true,message: '不能为空', trigger:'blur' }
- ],
- fToCorpid: [
- { required:true,message:'不能为空', trigger:'blur'}
- ],
- fReconciliation: [
- { required:true,message:'不能为空', trigger:'blur'}
- ],
- timeExamine: [
- { required: true, message: '审核日期不能为空', trigger: 'blur' }
- ]
- // fBilltype: [
- // { required: true, message: "单据类型(对账单 收费 付费 付费申请 收费申请,发票申请 销项发票 进项发票)不能为空", trigger: "change" }
- // ],
- // fBillstatus: [
- // { required: true, message: "状态不能为空", trigger: "blur" }
- // ]
- // fDeptid: [
- // { required: true, message: "制单部门不能为空", trigger: "change" }
- // ],
- }
- };
- },
- created() {
- this.getList()
- this.register()
- },
- methods: {
- // 确认对账按钮功能
- confirmReconciliation(){
- this.queryParams.fBillstatus = '4'
- let formDate = new window.FormData()
- formDate.append('tFee',JSON.stringify(this.queryParams))
- formDate.append("tFeeDo", JSON.stringify(this.DzfeeList))
- Cfee(formDate).then(response=>{
- console.log(response)
- this.msgSuccess("操作成功")
-
- })
- this.open = false
- },
- // 对账按钮功能
- reconciliation(){
- this.TWareHouseFees.fToCorpid = this.queryParams.fCorpid
- console.log(this.queryParams.fCorpid)
- this.innerVisible = true
- },
- // 默认录入人
- register() {
- queryUserVal().then((response)=>{
- this.queryParams_s.createBy = response.user.userName
- this.queryParams.createBy = response.user.userName
- console.log(this.DzfeeList.createBy)
- console.log(response.user.userName)
- })
- },
-
- getSummaries(param) {
- const { columns, data } = param;
- const sums = [];
- columns.forEach((column, index) => {
- const values = data.map(item => Number(item[column.property]));
- if (!values.every(value => isNaN(value))) {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return prev + curr;
- } else {
- return prev;
- }
- }, 0);
- sums[0] = '合计';
- } else {
- sums[4] = '';
- // this.pass.fAmtdr = sums[9]
- // this.pass.fAmtcr = sums[10]
- }
- })
- return sums;
- },
- // 金额筛选
- imgChangeI(row){
- if (row.fAmt && Number(row.fAmt) > Number(row.fAmtdr)){
- this.$set(row, 'fAmt', row.fAmtdr)
- this.state_s = true
- }
- },
- // imgChangeI(fAmtdr,fAmt){
- // if (fAmt <= fAmtdr){
- // console.log("小了!")
- // this.state_s = true
- // }else if(fAmt > fAmtdr){
- // console.log("大了!")
- // this.$message.error('本次金额不能大于原定金额');
- // this.state_s = false
- // }
- // },
- // 导入搜索
- searchFee() {
- console.log(this.TWareHouseFees)
- // this.feeList = []
- this.$refs['feeListRules'].validate(valid => {
- console.log(valid)
- if (valid){
- importFee(this.TWareHouseFees).then(response =>{
- console.log(response)
- this.feeList = response.rows
- })
- }
- })
- },
- /** 打开导入表弹窗 */
- openImportTable() {
- this.$refs.import.show();
- },
- /** 查询财务数据主列表 */
- getList() {
- console.log(this)
- this.loading = true;
- this.getDicts("approval_process").then(response => {
- // this.feeList = response.rows;
- this.options = response.data
- });
- listFee(this.queryParams_s).then(response => {
- console.log(response)
- this.contrastList = response.rows
- this.total = response.total
- this.loading = false
- })
- },
-
- // 取消按钮
- cancel() {
- this.open = false;
- // this.feeList = []
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- fId: null,
- fBillno: null,
- fCtrlcorpid: null,
- fCorpid: null,
- tMblno: null,
- fAmtdr: null,
- fAmtcr: null,
- fBilltype: null,
- fBillstatus: "0",
- fRemarks: null,
- fAccbilldate: null,
- delFlag: null,
- createBy: null,
- fDeptid: null,
- createTime: null,
- updateBy: null,
- updateTime: null
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- console.log(this.queryParams_s)
- this.queryParams.pageNum = 1;
- this.getList();
- console.log(this.contrastList)
- // this.searchFee()
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryParams_s");
- this.handleQuery();
- this.TWareHouseFees={
- fCorpid:'',
- fToCorpid:'',
- fMblno:'',
- fStatementNo:'',
- fFeeid :'',
- timeExamine:'',
- timeInterval:'',
- fSrcdc:'',
- fReconciliation:''
- }
- },
- //导入重置按钮
- resetQuery_s() {
- this.TWareHouseFees = {
- fCorpid: '',
- fToCorpid: '',
- fMblno: '',
- fStatementNo: '',
- fFeeid: '',
- timeExamine: '',
- timeInterval: ''
- }
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.fId)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- handleSelectionChanGe(selection){
- if(selection.length > 0) {
- this.statrGo = false
- }else{
- this.statrGo = true
- }
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.DzfeeList = []
- this.pass={
- fAmtdr:'', //应收合计
- fAmtcr:'', //应付合计
- fMblno:'', //提单号
- fName:'', //货权方
- fFeesName:'', //结算单位
- fCorpid:'' //结算单位ID
- },
- this.open = true;
- this.title = "添加财务数据主";
- this.queryParams = {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- fCtrlcorpid: null,
- fCorpid: null,
- tMblno: null,
- fAmtdr: null,
- fId:null,
- fAmtcr: null,
- fBilltype: null,
- fBillstatus: null,
- fRemarks: null,
- fAccbilldate: null,
- fDeptid: null,
- createBy: null,
- timeReconci: null
- }
- queryUserVal().then((response)=>{
- this.contrastList.createBy = response.user.userName
- console.log(response.user.userName)
- this.queryParams = {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- fCtrlcorpid: null,
- fCorpid: null,
- tMblno: null,
- fAmtdr: null,
- fId:null,
- fAmtcr: null,
- fBilltype: null,
- fBillstatus: null,
- fRemarks: null,
- fAccbilldate: null,
- fDeptid: null,
- createBy: response.user.userName,
- timeReconci: null
- }
- })
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- this.pass={
- fAmtdr:'', //应收合计
- fAmtcr:'', //应付合计
- fMblno:'', //提单号
- fName:'', //货权方
- fFeesName:'', //结算单位
- fCorpid:'' //结算单位ID
- }
- const fId = row.fId || this.ids
- console.log(fId)
- getFee(fId).then(response => {
- console.log(this.DzfeeList)
- console.log(response)
- this.DzfeeList = response.data.feeDoList
- this.fWbuOptions = response.data.feesList
- this.queryParams = response.data.tFee
- console.log(this.queryParams)
- this.fMblnoOptions = response.data.corps
- this.open = true;
- this.title = "修改财务数据主";
- });
- console.log(this.queryParams)
- },
- /** 远程模糊查询用户 */
- corpsRemoteMethod(name) {
- if (name == null || name === "") {
- return false;
- }
- let queryParams = { pageNum: 1, pageSize: 10, fName: name, type: 1 };
- listCorps(queryParams).then((response) => {
- this.fMblnoOptions = response.rows;
- this.KHblnoOptions = response.rows;
- });
- },
-
- /** 提交按钮 */
- submitForm() {
- console.log(this.queryParams)
- console.log(this.DzfeeList)
- // console.log(this.feeList)
- this.$refs["ruless"].validate(valid => {
- if (valid) {
- if (!this.queryParams.fId) {
- console.log(this.queryParams)
- this.queryParams.fBillstatus = '1'
- let formDate = new window.FormData()
- formDate.append('tFee',JSON.stringify(this.queryParams))
- formDate.append("tFeeDo", JSON.stringify(this.DzfeeList))
-
- updateFee(formDate).then(response => {
- this.msgSuccess("新增成功");
- this.DzfeeList = []
- this.open = false;
- this.getList();
- });
-
- } else {
- this.queryParams.fBillstatus = '1'
- let formDate = new window.FormData()
- formDate.append('tFee',JSON.stringify(this.queryParams))
- formDate.append("tFeeDo", JSON.stringify(this.DzfeeList))
- console.log(this.queryParams)
- addFee(formDate).then(response => {
- this.msgSuccess("修改成功");
- this.DzfeeList = []
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- // 导入多选框
- handleSelectionChange_s(selection) {
- this.selection = selection
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.fId)
- this.single = selection.length !== 1
- this.multiple = !selection.length
- },
- /* 添加财务数据主 导入*/
- confirmImport(){
- for (let item in this.selection) {
- this.pass.fAmtcr = Number(this.pass.fAmtcr)
- this.pass.fAmtdr = Number(this.pass.fAmtdr)
- this.pass.fAmtcr += Number(this.selection[item].fAmt)
- this.pass.fAmtdr += Number(this.selection[item].fAmtdr)
- // console.log(Number(this.pass.fAmtcr))
- // console.log(this.pass)
- // console.log(this.pass.fAmtcr)
- // console.log(this.pass.fAmtdr)
- }
- console.log(this.pass)
- if(this.state_s == true) {
- if (this.selection.length == '0') {
- console.log('未选择')//写入提示
- this.$message.error('未选择导入行');
- } else {
- console.log(this.selection[0].fMblno)
- for (let item in this.selection){
- console.log(this.selection[item])
- console.log(this.selection[item].fMblno)
- this.empty.push(this.selection[item].fMblno)
- this.nothing.push(this.selection[item].fName)
- }
- //去重提单号
- this.empty = new Set(this.empty)
- this.empty = Array.from(this.empty)
- //去重货权方
- this.nothing = new Set(this.nothing)
- this.nothing = Array.from(this.nothing)
- console.log(this.nothing)
- if(this.empty.length <= 1){
- this.pass.fMblno = this.empty[0]
- console.log(this.pass.fMblno)
- }else {
- this.pass.fMblno = this.empty[0] + "..."
- console.log(this.pass.fMblno)
- }
- if (this.nothing.length <= 1){
- this.pass.fName = this.nothing[0]
- console.log(this.nothing)
- }else {
- this.pass.fName = this.nothing[0] + "..."
- console.log(this.nothing)
- }
- // if (this.nothing.length <= 1){
- // this.pass.fCorpid = this.nothing[0]
- // console.log(this.nothing)
- // }else {
- // this.pass.fCorpid = this.nothing[0] + "..."
- // console.log(this.nothing)
- // }
- this.DzfeeList = this.selection
- this.queryParams.tMblno = this.pass.fMblno //提单号
- // this.queryParams.fCorpid = this.pass.fFeesName
-
- this.queryParams.fCorpid = this.TWareHouseFees.fToCorpid
- this.queryParams.fCtrlcorpid = this.pass.fName
- console.log(this.queryParams.fCorpid)
- console.log(this.pass)
- this.queryParams.fAmtcr = this.pass.fAmtcr
- this.queryParams.fAmtdr = this.pass.fAmtdr
- console.log(this.pass)
- console.log(this.queryParams)
- console.log(this.DzfeeList)
- this.innerVisible = false
- this.feeList = []
- // this.feeList = this.DzfeeList
- this.TWareHouseFees = {
- fCorpid:'',
- fToCorpid:'',
- fMblno:'',
- fStatementNo:'',
- fFeeid :'',
- timeExamine:'',
- timeInterval:'',
- fSrcdc:'',
- fReconciliation:'',
- timeReconci: ''
- }
- }
- }else if(this.state_s == false){
- this.$message.error('本次金额不能大于原定金额');
- }
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const fIds = row.fId || this.ids;
- this.$confirm('是否确认删除财务数据主编号为"' + fIds + '"的数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return delFee(fIds);
- }).then(() => {
- this.getList();
- this.msgSuccess("删除成功");
- })
- },
- // 远程模糊查询费用名称
- fWRemoteMethod(name) {
- this.fWbuOptions = []
- if (name == null || name === "") {
- return false;
- }
- let queryParams = { pageNum: 1, pageSize: 10, fName: name };
- listFees(queryParams).then((response) => {
- console.log(response)
- console.log("1111")
- this.fWbuOptions = response.rows
- console.log(this.fWbuOptions)
- });
- },
- /** 导出按钮操作 */
- handleExport() {
- const queryParams = this.queryParams;
- this.$confirm('是否确认导出所有财务数据主数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return exportFee(queryParams);
- }).then(response => {
- this.download(response.msg);
- })
- },
- //清空一行
- deleteRow(index, rows) {
- this.queryParams.fAmtdr = 0
- this.queryParams.fAmtcr = 0
- rows.splice(index, 1)
- for(let item in this.DzfeeList) {
- console.log(this.DzfeeList[item])
- this.queryParams.fAmtcr = this.DzfeeList[item].fAmt
- this.queryParams.fAmtdr = this.DzfeeList[item].fAmtdr
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- </style>
|