123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212 |
- <template>
- <div>
- <basic-container v-show="isShow">
- <div style="margin-top: 10px">
- <el-tabs type="card" v-model="tabsValue" @tab-click="handleClick">
- <el-tab-pane label="任务列表" name="申请">
- <span slot="label">任务列表</span>
- </el-tab-pane>
- <el-tab-pane label="业务单据" name="销项">
- <span slot="label" style="color: #4c9e44">单据列表</span>
- </el-tab-pane>
- <el-tab-pane label="已完成" name="已完成"></el-tab-pane>
- </el-tabs>
- </div>
- <avue-crud v-show="tabsValue == '申请'" :option="applyOption" :table-loading="loading" :data="applyData"
- :page.sync="applyPage" ref="applyCrud" id="out-table" @search-change="searchChange"
- @selection-change="selectionChange" @search-reset="searchReset" @current-change="currentChange"
- @size-change="sizeChange" @refresh-change="refreshChange" :header-cell-class-name="headerClassName"
- @resetColumn="resetColumnTwo('applyCrud', 'applyOption', 'applyOptionBack', 319)" :search.sync="query"
- @saveColumn="saveColumnTwo('applyCrud', 'applyOption', 'applyOptionBack', 319)" @on-load="onLoad">
- <template slot="menuLeft" slot-scope="{row}">
- <el-button type="success" size="small" @click="multipleInvoicing">选择开票</el-button>
- </template>
- <template slot="menu" slot-scope="{row}">
- <el-button type="text" size="small"
- :disabled="saberUserInfo.role_name.indexOf('允许修改他人业务') == -1 ? saberUserInfo.user_id != row.createUser : false"
- @click="invoicingfun(row)">开票
- </el-button>
- </template>
- <tempalte slot="feeCnNameSearch">
- <dic-select v-model="query.feeCnName" placeholder="费用名称" key="id" label="cnName" res="records"
- url="/blade-los/bfees/list" :filterable="true" :remote="true" dataName="cnName"></dic-select>
- </tempalte>
- </avue-crud>
- <avue-crud v-show="tabsValue == '销项' || tabsValue == '已完成'" :option="option" :table-loading="loading"
- :data="data" :page.sync="page" :permission="permissionList" v-model="form" ref="crud" id="out-table"
- :header-cell-class-name="headerClassName" @row-del="rowDel" @search-change="searchChange"
- @search-reset="searchReset" @selection-change="selectionChange" @current-change="currentChange"
- @size-change="sizeChange" @refresh-change="refreshChange"
- @resetColumn="resetColumnTwo('crud', 'option', 'optionBack', 319.1)"
- @saveColumn="saveColumnTwo('crud', 'option', 'optionBack', 319.1)" @on-load="onLoad">
- <template slot="menuLeft">
- <el-button type="success" size="small" icon="el-icon-plus" plain @click="newbillFun">新建发票
- </el-button>
- <el-button type="danger" size="small" icon="el-icon-delete" plain @click="handleDelete">一键删除
- </el-button>
- </template>
- <template slot="menu" slot-scope="{row}">
- <el-button type="text" size="small" @click="editFun(row)">编辑
- </el-button>
- <!--:disabled="saberUserInfo.role_name.indexOf('允许修改他人业务') == -1?saberUserInfo.user_id != row.createUser:false"-->
- <el-button type="text" size="small"
- :disabled="row.status == 3
- || (saberUserInfo.role_name.indexOf('admin') == -1 ? saberUserInfo.role_name.indexOf('允许修改他人业务') == -1 ? saberUserInfo.user_id != row.createUser : false : false)"
- @click="rowDel(row)">删除
- </el-button>
- </template>
- <template slot-scope="{ row }" slot="billNo">
- <span class="pointerClick" @click="editFun(row)">{{ row.billNo }}
- </span>
- </template>
- <template slot-scope="{ row }" slot="billDate">
- {{ row.billDate ? row.billDate.slice(0, 10) : '' }}
- </template>
- <template slot-scope="{ row }" slot="invoiceDate">
- {{ row.invoiceDate ? row.invoiceDate.slice(0, 10) : '' }}
- </template>
- <tempalte slot="feeCnNameSearch">
- <dic-select v-model="query.feeCnName" placeholder="费用名称" key="id" label="cnName" res="records"
- url="/blade-los/bfees/list" :filterable="true" :remote="true" dataName="cnName"></dic-select>
- </tempalte>
- </avue-crud>
- </basic-container>
- <fininvoicesDetails ref="fininvoicesDetails" :editSave="editSave" v-if="!isShow" @goBack="goBack"
- @toAddEdit="toAddEdit" :key="datekey">
- </fininvoicesDetails>
- </div>
- </template>
- <script>
- import {
- fininvoicesList,
- fininvoicesDetail,
- fininvoicesRemove, fininvoicesSubmit
- } from "@/api/iosBasicData/fininvoices";
- import fininvoicesDetails from "@/views/iosBasicData/fininvoicesOutput/fininvoicesDetails.vue";
- import { mapGetters } from "vuex";
- import finstlbillsDetails from "@/views/iosBasicData/finstlbills/finstlbillsDetails.vue";
- import { getRateList } from "@/api/iosBasicData/rateManagement";
- import fa from "element-ui/src/locale/lang/fa";
- import dicSelect from "@/components/dicSelect/main";
- export default {
- components: { finstlbillsDetails, fininvoicesDetails, dicSelect },
- data() {
- return {
- datekey: Date.now(),
- tabsValue: '申请',
- // 详情页面和列表切换
- isShow: true,
- editSave: false, // 编辑还是保存
- form: {},
- applyQuery: {}, // 任务列表
- query: {}, // 单据列表
- loading: true,
- // 业务单据
- page: {
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- // 任务列表数据
- applyPage: {
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- applySelectionList: [], // 任务列表多选
- // 业务单据 多选
- selectionList: [],
- // 任务列表
- applyOption: {},
- applyOptionBack: {
- height: 'auto',
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 18,
- border: true,
- index: true,
- selection: true,
- dialogClickModal: false,
- menuWidth: 100,
- addBtn: false,
- viewBtn: false,
- delBtn: false,
- editBtn: false,
- column: [
- {
- label: "单据编号",
- prop: "billNo",
- search: true,
- overHidden: true,
- },
- {
- label: "单据日期",
- prop: "billDate",
- overHidden: true,
- },
- // {
- // label: "单据开始日期",
- // prop: "invoiceDateStart",
- // search: true,
- // overHidden: true,
- // hide: true,
- // searchLabelWidth: "100",
- // type: "date",
- // format: "yyyy-MM-dd",
- // valueFormat: "yyyy-MM-dd HH:mm:ss",
- // },
- // {
- // label: "单据结束日期",
- // prop: "invoiceDateEnd",
- // search: true,
- // overHidden: true,
- // hide: true,
- // searchLabelWidth: "100",
- // type: "date",
- // format: "yyyy-MM-dd",
- // valueFormat: "yyyy-MM-dd HH:mm:ss",
- // },
- {
- label: "开票日期",
- prop: "date",
- search: true,
- overHidden: true,
- hide: true,
- // searchLabelWidth: "100",
- type: "date",
- searchProp: "dateList",
- unlinkPanels: true,
- searchRange: true,
- format: "yyyy-MM-dd",
- valueFormat: "yyyy-MM-dd HH:mm:ss",
- searchDefaultTime: ["00:00:00", "23:59:59"],
- },
- {
- label: "客户名称",
- prop: "corpCnName",
- width: "120",
- search: true,
- searchOrder: 1,
- overHidden: true,
- },
- {
- label: "费用名称",
- prop: "feeCnName",
- width: "140",
- search: true,
- overHidden: true,
- },
- {
- label: "发票抬头",
- prop: "invCorpCnName",
- width: "160",
- search: true,
- overHidden: true,
- },
- {
- label: "发票币种",
- prop: "invCurCode",
- search: true,
- type: 'select',
- dicData: [],
- dicUrl: '/api/blade-los/bcurrency/page?current=1&size=20',
- props: {
- label: "code",
- value: "code"
- },
- dicFormatter: (res => {
- return res.data.records
- }),
- overHidden: true,
- },
- {
- label: "JOB NO",
- prop: "businessNo",
- width: "120",
- search: true,
- searchOrder: 3,
- overHidden: true
- },
- {
- label: "ACCT NO",
- prop: "accountNo",
- width: "100",
- search: true,
- searchOrder: 5,
- overHidden: true
- },
- {
- label: "MB/L NO",
- prop: "mblno",
- search: true,
- searchOrder: 2,
- overHidden: true
- },
- {
- label: "HB/L NO",
- prop: "hblno",
- search: true,
- searchOrder: 4,
- overHidden: true
- },
- {
- label: "对账单号",
- prop: "checkNo",
- search: true,
- width: "100",
- searchOrder: 6,
- overHidden: true
- },
- {
- label: "船名",
- prop: "vesselCnName",
- search: true,
- searchOrder: 7,
- overHidden: true
- },
- {
- label: "航次",
- prop: "voyageNo",
- search: true,
- searchOrder: 8,
- overHidden: true
- },
- {
- label: "开票金额",
- prop: "amountLoc",
- width: "120",
- overHidden: true,
- },
- {
- label: "申请人",
- prop: "applicantName",
- overHidden: true,
- },
- {
- label: "备注",
- prop: "remarks",
- overHidden: true,
- },
- ]
- },
- // 业务单据
- option: {},
- optionBack: {
- height: 'auto',
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 12,
- border: true,
- index: true,
- selection: true,
- dialogClickModal: false,
- menuWidth: 100,
- addBtn: false,
- viewBtn: false,
- delBtn: false,
- editBtn: false,
- column: [
- {
- label: "单据编号",
- prop: "billNo",
- search: true,
- rules: [{
- required: true,
- message: "请输入单据编号",
- trigger: "blur"
- }],
- overHidden: true,
- },
- {
- label: "客户名称",
- prop: "corpCnName",
- width: "120",
- search: true,
- overHidden: true,
- searchOrder: 1,
- },
- {
- label: "费用名称",
- prop: "feeCnName",
- width: "140",
- search: true,
- overHidden: true,
- },
- {
- label: "发票抬头",
- prop: "invCorpCnName",
- width: "160",
- search: true,
- overHidden: true,
- },
- {
- label: "合计本位币(CNY)",
- prop: "amountLoc",
- width: "120",
- overHidden: true,
- },
- {
- label: "单据日期",
- prop: "billDate",
- rules: [{
- required: true,
- message: "请输入单据日期",
- trigger: "blur"
- }],
- overHidden: true,
- },
- {
- label: "发票号码",
- prop: "invoiceNo",
- search: true,
- rules: [{
- required: true,
- message: "请输入发票号码",
- trigger: "blur"
- }],
- overHidden: true,
- },
- {
- label: "单据日期",
- prop: "invoiceDate",
- overHidden: true,
- },
- // {
- // label: "单据开始日期",
- // prop: "invoiceDateStart",
- // search: true,
- // overHidden: true,
- // hide: true,
- // searchLabelWidth: "100",
- // type: "date",
- // format: "yyyy-MM-dd",
- // valueFormat: "yyyy-MM-dd HH:mm:ss",
- // },
- // {
- // label: "单据结束日期",
- // prop: "invoiceDateEnd",
- // search: true,
- // overHidden: true,
- // hide: true,
- // searchLabelWidth: "100",
- // type: "date",
- // format: "yyyy-MM-dd",
- // valueFormat: "yyyy-MM-dd HH:mm:ss",
- // },
- {
- label: "开票日期",
- prop: "date",
- search: true,
- overHidden: true,
- hide: true,
- // searchLabelWidth: "100",
- type: "date",
- searchProp: "dateList",
- unlinkPanels: true,
- searchRange: true,
- format: "yyyy-MM-dd",
- valueFormat: "yyyy-MM-dd HH:mm:ss",
- searchDefaultTime: ["00:00:00", "23:59:59"],
- },
- {
- label: "原发票号码",
- prop: "origInvoiceNo",
- width: "120",
- overHidden: true,
- },
- {
- label: "税务发票号码",
- prop: "taxInvoiceNo",
- width: "150",
- overHidden: true,
- },
- {
- label: "全电发票",
- prop: "invType",
- overHidden: true,
- },
- {
- label: "发票类型",
- prop: "taxType",
- width: "160",
- search: true,
- overHidden: true,
- },
- {
- label: "税率 %",
- prop: "taxRate",
- rules: [{
- required: true,
- message: "请输入税率 %",
- trigger: "blur"
- }],
- overHidden: true,
- },
- {
- label: "结算方式",
- prop: "stlMode",
- overHidden: true,
- },
- {
- label: "发票币种",
- prop: "invCurCode",
- rules: [{
- required: true,
- message: "请输入发票币种",
- trigger: "blur"
- }],
- overHidden: true,
- },
- {
- label: "JOB NO",
- prop: "businessNo",
- width: "120",
- search: true,
- searchOrder: 3,
- overHidden: true
- },
- {
- label: "ACCT NO",
- prop: "accountNo",
- width: "100",
- search: true,
- searchOrder: 5,
- overHidden: true
- },
- {
- label: "MB/L NO",
- prop: "mblno",
- search: true,
- searchOrder: 2,
- overHidden: true
- },
- {
- label: "HB/L NO",
- prop: "hblno",
- search: true,
- searchOrder: 4,
- overHidden: true
- },
- {
- label: "对账单号",
- prop: "checkNo",
- search: true,
- width: "100",
- searchOrder: 6,
- overHidden: true
- },
- {
- label: "船名",
- prop: "vesselCnName",
- search: true,
- searchOrder: 7,
- overHidden: true
- },
- {
- label: "航次",
- prop: "voyageNo",
- search: true,
- searchOrder: 8,
- overHidden: true
- },
- {
- label: "客户英文名称",
- prop: "corpEnName",
- width: "120",
- overHidden: true,
- },
- {
- label: "开票单位英文名称",
- prop: "invCorpEnName",
- width: "150",
- overHidden: true,
- },
- {
- label: "开票单位税号",
- prop: "invCorpTaxNo",
- width: "140",
- overHidden: true,
- },
- {
- label: "开票单位CNY开户银行",
- prop: "invCorpAccountBankCny",
- width: "160",
- overHidden: true,
- },
- {
- label: "开票单位CNY银行账号",
- prop: "invCorpAccountNoCny",
- width: "160",
- overHidden: true,
- },
- {
- label: "开票单位USD开户银行",
- prop: "invCorpAccountBankUsd",
- width: "160",
- overHidden: true,
- },
- {
- label: "开票单位USD银行账号",
- prop: "invCorpAccountNoUsd",
- width: "160",
- overHidden: true,
- },
- {
- label: "船名/航次",
- prop: "vesselVoyno",
- width: "100",
- overHidden: true,
- },
- {
- label: "开船日",
- prop: "etd",
- overHidden: true,
- },
- {
- label: "装货港",
- prop: "pol",
- overHidden: true,
- },
- {
- label: "卸货港",
- prop: "pod",
- overHidden: true,
- },
- {
- label: "目的地",
- prop: "destination",
- overHidden: true,
- },
- {
- label: "箱型/箱量",
- prop: "containers",
- width: "100",
- overHidden: true,
- },
- {
- label: "币种",
- prop: "curCode",
- overHidden: true,
- },
- {
- label: "原汇率",
- prop: "exrate",
- overHidden: true,
- },
- {
- label: "是否转换为人民币",
- prop: "isExchangeToCny",
- width: "140",
- dicData: [{
- label: '否',
- value: 0
- }, {
- label: '是',
- value: 1
- }],
- overHidden: true,
- },
- {
- label: "业务类型",
- prop: "businessTypes",
- overHidden: true,
- },
- {
- label: "业务单据编号",
- prop: "businessNo",
- width: "120",
- overHidden: true,
- },
- {
- label: "对账单编号",
- prop: "checkNo",
- width: "120",
- overHidden: true,
- },
- {
- label: "MBL NO",
- prop: "mblno",
- overHidden: true,
- },
- {
- label: "HBL NO",
- prop: "hblno",
- overHidden: true,
- },
- {
- label: "订舱",
- prop: "bookingNo",
- overHidden: true,
- },
- {
- label: "中文船名",
- prop: "vesselCnName",
- overHidden: true,
- },
- {
- label: "英文船名",
- prop: "vesselEnName",
- overHidden: true,
- },
- {
- label: "航次",
- prop: "voyageNo",
- overHidden: true,
- },
- {
- label: "财务开始日期",
- prop: "accountDateFrom",
- width: "100",
- overHidden: true,
- },
- {
- label: "财务结束日期",
- prop: "accountDateTo",
- width: "100",
- overHidden: true,
- },
- {
- label: "申请人",
- prop: "applicantName",
- overHidden: true,
- },
- {
- label: "审核人",
- prop: "approverName",
- overHidden: true,
- },
- {
- label: "是否代理发票",
- prop: "isAgent",
- width: "120",
- dicData: [{
- label: '否',
- value: 0
- }, {
- label: '是',
- value: 1
- }],
- overHidden: true,
- },
- {
- label: "是否DK",
- prop: "isDk",
- dicData: [{
- label: '否',
- value: 0
- }, {
- label: '是',
- value: 1
- }],
- overHidden: true,
- },
- {
- label: "是否RP",
- prop: "isRp",
- dicData: [{
- label: '否',
- value: 0
- }, {
- label: '是',
- value: 1
- }],
- overHidden: true,
- },
- {
- label: "RP名称",
- prop: "rpName",
- overHidden: true,
- },
- {
- label: "导出日期",
- prop: "exportDate",
- width: "100",
- overHidden: true,
- },
- {
- label: "导出人",
- prop: "exportName",
- overHidden: true,
- },
- {
- label: "是否导出船名航次",
- prop: "isExportVslvoy",
- width: "140",
- dicData: [{
- label: '否',
- value: 0
- }, {
- label: '是',
- value: 1
- }],
- overHidden: true,
- },
- {
- label: "是否导出主单号",
- prop: "isExportMblno",
- width: "140",
- dicData: [{
- label: '否',
- value: 0
- }, {
- label: '是',
- value: 1
- }],
- overHidden: true,
- },
- {
- label: "是否导出分单号",
- prop: "isExportHblno",
- width: "140",
- dicData: [{
- label: '否',
- value: 0
- }, {
- label: '是',
- value: 1
- }],
- overHidden: true,
- },
- {
- label: "发票本位币(CNY)",
- prop: "amountCny",
- width: "140",
- overHidden: true,
- },
- {
- label: "发票USD",
- prop: "amountUsd",
- width: "100",
- overHidden: true,
- },
- {
- label: "税额(CNY)",
- prop: "amountTax",
- width: "100",
- overHidden: true,
- },
- {
- label: "全电发票备注",
- prop: "elecRemarks",
- width: "120",
- overHidden: true,
- },
- {
- label: "银行进账单出票人名称",
- prop: "bankReceiptCorpName",
- width: "160",
- overHidden: true,
- },
- {
- label: "银行进账单出票银行",
- prop: "bankReceiptBankName",
- width: "160",
- overHidden: true,
- },
- {
- label: "银行进账单出票银行账号",
- prop: "bankReceiptAccountNo",
- width: "160",
- overHidden: true,
- },
- {
- label: "银行进账单票据种类",
- prop: "bankReceiptBillType",
- width: "160",
- overHidden: true,
- },
- {
- label: "银行进账单票据张数",
- prop: "bankReceiptBillCount",
- width: "160",
- overHidden: true,
- },
- {
- label: "银行进账单是否已进账(收款)",
- prop: "bankReceiptIsIncome",
- width: "180",
- overHidden: true,
- },
- {
- label: "备注",
- prop: "remarks",
- rules: [{
- required: true,
- message: "请输入备注",
- trigger: "blur"
- }],
- overHidden: true,
- },
- ]
- },
- data: [], // 业务单据数据
- applyData: [], // 任务列表数据
- saberUserInfo: {}, // 当前登录人个人信息
- };
- },
- watch: {},
- computed: {
- fa() {
- return fa
- },
- ...mapGetters(["permission"]),
- permissionList() {
- return {
- addBtn: this.vaildData(this.permission.fininvoices_add, false),
- viewBtn: this.vaildData(this.permission.fininvoices_view, false),
- delBtn: this.vaildData(this.permission.fininvoices_delete, false),
- editBtn: this.vaildData(this.permission.fininvoices_edit, false)
- };
- },
- ids() {
- let ids = [];
- this.selectionList.forEach(ele => {
- ids.push(ele.id);
- });
- return ids.join(",");
- }
- },
- async created() {
- // 获取当前登录人个人信息
- this.saberUserInfo = JSON.parse(localStorage.getItem('saber-userInfo')).content
- this.applyOption = await this.getColumnData(this.getColumnName(319), this.applyOptionBack);
- this.option = await this.getColumnData(this.getColumnName(319.1), this.optionBack);
- this.getRateListfun()
- },
- activated() {
- if (this.$route.query.id) {
- setTimeout(() => {
- if (!this.$store.getters.finOutStatus) {
- this.editFun(this.$route.query)
- }
- }, 200);
- }
- },
- methods: {
- // 获取币别数据
- getRateListfun() {
- getRateList({ current: 1, size: 20 }).then(res => {
- this.findObject(this.applyOptionBack.column, "invCurCode").dicData = res.data.data.records
- })
- },
- // 单个开票
- invoicingfun(row) {
- this.isShow = false
- this.editSave = false
- this.$nextTick(() => {
- this.$refs.fininvoicesDetails.fininvoicesGenerateFinInvoicesfun(row.id)
- })
- this.$store.commit("IN_FINOUT_DETAIL");
- },
- // 多个开票
- multipleInvoicing() {
- if (this.applySelectionList.length == 0) {
- this.$message.warning('请选择要开票的数据')
- return
- }
- // 判断是否可以编辑别人业务 true 就没有权限
- if (this.ModifyOthersfun()) return;
- let arrId = this.applySelectionList.map(item => {
- return item.id
- })
- this.isShow = false
- this.editSave = false
- this.$nextTick(() => {
- this.$refs.fininvoicesDetails.fininvoicesGenerateFinInvoicesfun(arrId.join(','))
- })
- this.$store.commit("IN_FINOUT_DETAIL");
- },
- // 新建发票
- newbillFun() {
- this.isShow = false;
- this.$store.commit("IN_FINOUT_DETAIL");
- },
- toAddEdit() {
- this.editSave = false
- this.datekey = Date.now()
- },
- // 编辑
- editFun(row) {
- this.isShow = false
- this.editSave = true
- this.$nextTick(() => {
- this.$refs.fininvoicesDetails.fininvoicesDetailfun(row.id)
- })
- this.$store.commit("IN_FINOUT_DETAIL");
- },
- // 详情的返回列表
- goBack() {
- // 初始化数据
- // this.detailData = this.$options.data().detailData;
- if (JSON.stringify(this.$route.query) != "{}") {
- this.$router.$avueRouter.closeTag();
- this.$router.push({
- path: "/iosBasicData/fininvoicesOutput/index"
- });
- }
- this.isShow = true;
- this.onLoad(this.page, this.search);
- this.$store.commit("OUT_FINOUT_DETAIL");
- },
- rowDel(row) {
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- return fininvoicesRemove(row.id);
- })
- .then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- });
- },
- // 一键删除
- handleDelete() {
- if (this.selectionList.length === 0) {
- this.$message.warning("请选择至少一条数据");
- return;
- }
- // 判断是否可以编辑别人业务 true 就没有权限
- if (this.ModifyOthersfun()) return;
- // 已经提交请核的提示不让删除
- let sumArr = []
- const h = this.$createElement
- for (let item of this.selectionList) {
- if (item.status == 3) {
- sumArr.push(h('p', `序号${item.$index + 1}的数据已经确认提交请勿删除`))
- }
- }
- if (sumArr.length != 0) {
- this.$confirm('提示', {
- message: h('div', sumArr),
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- return;
- }
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- return fininvoicesRemove(this.ids);
- })
- .then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.$refs.crud.toggleSelection();
- });
- },
- // 判断是否可以编辑别人业务
- ModifyOthersfun() {
- let sumArr = []
- const h = this.$createElement
- // 判断是否有权限
- if (this.saberUserInfo.role_name.indexOf('允许修改他人业务') != -1) return false
- // 当前登录人和选择的创建人对比是不是一个人
- for (let item of this.selectionList) {
- if (this.saberUserInfo.user_id != item.createUser) {
- sumArr.push(h('p', `你没有"允许修改他人业务"权限,请重新选择数据`))
- }
- }
- if (sumArr.length != 0) {
- this.$confirm('提示', {
- message: h('div', sumArr),
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).catch(err => { })
- return true
- }
- },
- // tabs 切换
- handleClick() {
- if (this.tabsValue == '申请') {
- this.applyPage.currentPage = 1;
- this.onLoad(this.applyPage);
- } else {
- this.page.currentPage = 1;
- this.onLoad(this.page);
- }
- },
- // 清除
- searchReset() {
- this.query = {};
- this.onLoad(this.page);
- },
- // 搜索
- searchChange(params, done) {
- if (this.tabsValue == '申请') {
- this.applyQuery = params;
- this.applyPage.currentPage = 1;
- this.applyQuery.billDateList = []
- this.onLoad(this.applyPage, params);
- } else {
- this.query = params;
- this.page.currentPage = 1;
- this.onLoad(this.page, params);
- }
- done();
- },
- // 多选反的数据
- selectionChange(list) {
- if (this.tabsValue == '申请') {
- this.applySelectionList = list;
- } else {
- this.selectionList = list;
- }
- },
- selectionClear() {
- if (this.tabsValue == '申请') {
- this.applySelectionList = [];
- this.$refs.applyCrud.toggleSelection();
- } else {
- this.selectionList = [];
- this.$refs.crud.toggleSelection();
- }
- },
- // 分页
- currentChange(currentPage) {
- if (this.tabsValue == '申请') {
- this.applyPage.currentPage = currentPage;
- } else {
- this.page.currentPage = currentPage;
- }
- },
- sizeChange(pageSize) {
- if (this.tabsValue == '申请') {
- this.applyPage.pageSize = pageSize;
- } else {
- this.page.pageSize = pageSize;
- }
- },
- // 刷新
- refreshChange() {
- if (this.tabsValue == '申请') {
- this.onLoad(this.applyPage, this.applyQuery);
- } else {
- this.onLoad(this.page, this.query);
- }
- },
- // 获取列表数据
- onLoad(page, params = {}) {
- let type = null
- let status = null
- let billStatus = null
- if (this.tabsValue == '申请') {
- type = '申请'
- status = 3
- billStatus = 0
- } else if (this.tabsValue == '销项') {
- type = '销项'
- status = 0
- } else if (this.tabsValue == '已完成') {
- type = '销项'
- status = 3
- }
- if (!this.query.dateList) {
- this.query.invoiceDateStart = null
- this.query.invoiceDateEnd = null
- } else {
- this.query.invoiceDateStart = this.query.dateList[0]
- this.query.invoiceDateEnd = this.query.dateList[1]
- }
- this.loading = true;
- fininvoicesList(page.currentPage, page.pageSize, {
- ...Object.assign(params, this.query),
- type: type,
- status: status,
- billStatus: billStatus
- }).then(res => {
- const data = res.data.data;
- if (this.tabsValue == '申请') {
- this.applyPage.total = data.total;
- this.applyData = data.records;
- } else {
- this.page.total = data.total;
- this.data = data.records;
- }
- this.loading = false;
- this.selectionClear();
- });
- },
- //自定义列保存
- async saveColumnTwo(ref, option, optionBack, code) {
- /**
- * 已定义全局方法,直接使用,saveColumnData保存列数据方法,参数传值(表格名称,当前表格的option数据)
- * 已定义全局方法,直接使用,getColumnName方法用来获取枚举值,参数根据自己定义的code值获取中文名
- * 一定要执行异步操作,要等接口成功返回,才能执行下一行代码
- */
- const inSave = await this.saveColumnData(this.getColumnName(code), this[option]);
- if (inSave) {
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs[ref].$refs.dialogColumn.columnBox = false;
- }
- },
- //自定义列重置
- async resetColumnTwo(ref, option, optionBack, code) {
- this[option] = this[optionBack];
- const inSave = await this.delColumnData(this.getColumnName(code), this[optionBack]);
- if (inSave) {
- this.$message.success("重置成功");
- this.$refs[ref].$refs.dialogColumn.columnBox = false;
- }
- },
- // 更改表格颜色
- headerClassName(tab) {
- //颜色间隔
- let back = ""
- if (tab.columnIndex >= 0 && tab.column.level === 1) {
- if (tab.columnIndex % 2 === 0) {
- back = "back-one"
- } else if (tab.columnIndex % 2 === 1) {
- back = "back-two"
- }
- }
- return back;
- },
- }
- };
- </script>
- <style scoped>
- ::v-deep#out-table .back-one {
- background: #ecf5ff !important;
- text-align: center;
- }
- ::v-deep#out-table .back-two {
- background: #ecf5ff !important;
- text-align: center;
- }
- /deep/ .el-col-md-8 {
- width: 24.33333%;
- }
- .pointerClick {
- cursor: pointer;
- color: #1e9fff;
- }
- </style>
|