123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112 |
- <template>
- <div class="borderless" v-loading="allloading">
- <div class="customer-head">
- <div class="customer-back">
- <el-button
- type="danger"
- style="border: none;background: none;color: red"
- icon="el-icon-arrow-left"
- @click="backToList"
- >返回列表
- </el-button>
- </div>
- <div class="add-customer-btn">
- <el-button
- type="primary"
- size="small"
- v-if="detailData.status == 1"
- class="el-button--small-yh "
- :disabled="form.status > 0"
- @click.stop="openEdit"
- >编辑
- </el-button>
- <el-dropdown style="margin-right: 8px;margin-left: 8px;">
- <el-button type="primary" size="small">
- 审核处理<i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item
- :disabled="form.status > 0"
- @click.native="pleaseCheck"
- >请核数据</el-dropdown-item
- >
- <el-dropdown-item disabled>审核进度</el-dropdown-item>
- <el-dropdown-item disabled>撤销请核</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- <el-button
- type="success"
- :disabled="!form.id"
- size="small"
- @click="copyDoc"
- >
- 复制新单
- </el-button>
- <el-button
- class="el-button--small-yh"
- type="primary"
- :disabled="loadingBtn || detailData.status == 1"
- size="small"
- @click="editCustomer"
- >保存数据
- </el-button>
- </div>
- </div>
- <div class="customer-main">
- <containerTitle title="基础资料"></containerTitle>
- <basic-container>
- <avue-form
- class="trading-form"
- ref="form"
- v-model="form"
- :option="option"
- />
- </basic-container>
- <containerTitle title="基础明细"></containerTitle>
- <basic-container>
- <avue-crud
- ref="crud"
- v-model="crudForm"
- :option="optionList"
- :data="dataList"
- :page.sync="page"
- :search.sync="search"
- :table-loading="loading"
- @current-change="currentChange"
- @size-change="sizeChange"
- @search-change="searchChange"
- @saveColumn="saveColumn"
- @refresh-change="refreshChange"
- @row-save="rowSave"
- @row-update="rowUpdate"
- :cell-style="cellStyle"
- :header-cell-class-name="headerCellClassName"
- >
- <template slot="menuLeft">
- <el-button
- type="primary"
- @click.stop="$refs.crud.rowAdd()"
- size="small"
- :disabled="detailData.status == 1"
- >新增</el-button
- >
- <el-button
- type="primary"
- size="small"
- @click="importExcel()"
- :disabled="detailData.status == 1"
- >导入
- </el-button>
- <el-button
- type="primary"
- size="small"
- @click.stop="openExport()"
- >导出
- </el-button>
- <el-button
- type="primary"
- size="small"
- @click.stop="calculate()"
- :disabled="detailData.status == 1"
- >重新计算
- </el-button>
- <el-button
- type="info"
- icon="el-icon-printer"
- size="small"
- :disabled="!form.id"
- @click.stop="openReport()"
- >报 表</el-button
- >
- </template>
- <template slot="basicsSalaryLabel">
- <el-tag>基础工资:</el-tag>
- </template>
- <template slot="workloadSalaryLabel">
- <el-tag>工作量工资:</el-tag>
- </template>
- <template slot="awardSalaryLabel">
- <el-tag>奖励工资:</el-tag>
- </template>
- <template slot="dutyAllowancesLabel">
- <el-tag>职务津贴:</el-tag>
- </template>
- <template slot="classTeacherSubsidyLabel">
- <el-tag>班主任津贴:</el-tag>
- </template>
- <template slot="subsidyLabel">
- <el-tag>补贴项:</el-tag>
- </template>
- <template slot="deductionsLabel">
- <el-tag>扣除项:</el-tag>
- </template>
- <template slot="salaryLabel">
- <el-tag>应发工资:</el-tag>
- </template>
- <template slot="fsalaryLabel">
- <el-tag>实发工资:</el-tag>
- </template>
- <template
- slot="schoolAgeSalaryForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.schoolAgeSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="capitalIncreaseForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.capitalIncrease"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="educationSalaryForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.educationSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="rankSalaryForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.rankSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="salaryBaseForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.salaryBase"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="salaryBaseForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.salaryBase"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="performanceAwardForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.performanceAward"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="monthHourForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.monthHour"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="momthWorkloadSalaryForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.momthWorkloadSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.custom"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customOneForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customOne"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customTwoForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customTwo"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customThreeForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customThree"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customFourForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customFour"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customFiveForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customFive"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customSixForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customSix"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customSevenForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customSeven"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customEightForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customEight"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customNineForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customNine"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <!-- <template
- slot="vacationOvertimePayForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.vacationOvertimePay"
- @change="salaryAdd(crudForm)"
- />
- </template> -->
- <!-- <template slot="winningPrizeForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.winningPrize"
- @change="salaryAdd(crudForm)"
- />
- </template> -->
- <!-- <template
- slot="leadingCadreSubsidyForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.leadingCadreSubsidy"
- @change="salaryAdd(crudForm)"
- />
- </template> -->
- <!-- <template
- slot="yearDownPerformanceForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.yearDownPerformance"
- @change="salaryAdd(crudForm)"
- />
- </template> -->
- <template slot="prepareLessonsForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.prepareLessons"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="leadingCadreSubsidyForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.leadingCadreSubsidy"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="teachingResearchForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.teachingResearch"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="classesForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.classes"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="classTeacherFeeForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.classTeacherFee"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="reserveReplacementForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.reserveReplacement"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="safetyFeesForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.safetyFees"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="classMinisterForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.classMinister"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="monthViceClassFeeForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.monthViceClassFee"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="winningPrizeForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.winningPrize"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="newPostTrainForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.newPostTrain"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="vacationOvertimePayForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.vacationOvertimePay"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="cadreAllowanceReservationForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.cadreAllowanceReservation"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="yearDownPerformanceForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.yearDownPerformance"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="yearUpPerformanceForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.yearUpPerformance"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="overtimeAtWeekendForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.overtimeAtWeekend"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="maternityLeaveSalaryForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.maternityLeaveSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="wxForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.wx"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="dormitoryManagementFeeForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.dormitoryManagementFee"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="learningPowerForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.learningPower"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="telephoneBillForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.telephoneBill"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="inspectorFinesForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.inspectorFines"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="attendanceForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.attendance"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="childbirthAllowanceForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.childbirthAllowance"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="androidItForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.androidIt"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="basicsSalaryForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.basicsSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="customWorkloadSalaryForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customWorkloadSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="workloadSalaryForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.workloadSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="dailyAssessmentSalaryForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.dailyAssessmentSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customAwardForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customAward"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customAwardOneForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customAwardOne"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customAwardTwoForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customAwardTwo"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="customAwardThreeForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customAwardThree"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="customAwardFourForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customAwardFour"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="customAwardFiveForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customAwardFive"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="customAwardSixForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customAwardSix"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="customAwardSevenForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customAwardSeven"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="customAwardEightForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customAwardEight"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="customAwardNineForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.customAwardNine"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="awardSalaryForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.awardSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="dutyAllowancesForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.dutyAllowances"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="classTeacherSubsidyForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.classTeacherSubsidy"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="subsidyForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.subsidy"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="deductionsForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.deductions"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="insurancePersonageForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.insurancePersonage"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="reservedFundsPersonageForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.reservedFundsPersonage"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="salaryForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.salary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="personageTaxesForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.personageTaxes"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="insurancePersonageForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.insurancePersonage"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="reservedFundsPersonageForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.reservedFundsPersonage"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot-scope="{ row, index }" slot="menu">
- <el-button
- type="text"
- size="small"
- @click.stop="$refs.crud.rowEdit(row, index)"
- :disabled="detailData.status == 1"
- >
- {{ row.$cellEdit ? "保存" : "编辑" }}
- </el-button>
- <el-button
- type="text"
- size="small"
- @click.stop="rowDel(row)"
- :disabled="detailData.status == 1"
- >
- 删除
- </el-button>
- </template>
- </avue-crud>
- <el-dialog
- title="导入数据"
- append-to-body
- :visible.sync="excelBox"
- width="555px"
- v-dialog-drag
- >
- <avue-form
- :option="excelOption"
- v-model="excelForm"
- table-loading="excelLoading"
- :upload-after="uploadAfter"
- class="schoolupload"
- >
- <template slot="excelTemplate">
- <el-button type="primary" @click="derivation">
- 点击下载<i class="el-icon-download el-icon--right"></i>
- </el-button>
- </template>
- <template slot="date">
- <span>
- {{ time }}
- </span>
- </template>
- </avue-form>
- <p style="text-align: center;color: #DC0505">
- 温馨提示 第一次导入时请先下载模板
- </p>
- </el-dialog>
- </basic-container>
- <containerTitle title="导入附件记录"></containerTitle>
- <basic-container>
- <avue-crud
- :data="annexData"
- :option="annexOption"
- :page.sync="annexPage"
- :table-loading="annexLoading"
- @current-change="currentannexChange"
- @size-change="sizeannexChange"
- @saveColumn="saveannexColumn"
- @refresh-change="refreshannexChange"
- :cell-style="cellStyle"
- >
- <template slot-scope="{ row, index }" slot="menu">
- <el-button
- type="text"
- size="small"
- @click.stop="rowDownload(row, index)"
- >
- 下载
- </el-button>
- </template>
- </avue-crud>
- </basic-container>
- <report-dialog
- :switchDialog="switchDialog"
- :reportId="form.id"
- reportName="小学部"
- @onClose="onClose()"
- ></report-dialog>
- <el-dialog
- title="温馨提示"
- :visible.sync="dialogVisible"
- width="70%"
- :before-close="handleClose"
- append-to-body
- class="abnormal"
- >
- <span>
- <avue-crud :data="auditList" :option="auditOption">
- <template slot="menuLeft">
- <el-button type="info" size="small" @click.stop="exportAbnormal()"
- >导出
- </el-button>
- </template>
- </avue-crud></span
- >
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">关闭</el-button>
- </span>
- </el-dialog>
- </div>
- </div>
- </template>
- <script>
- import { getToken } from "@/util/auth";
- import { dateFormat } from "@/util/date";
- import {
- detail,
- copyDetail,
- submit,
- delItem,
- itemAnnex,
- itemDetail,
- pleaseCheck,
- calculate
- } from "@/api/salaryManagement/primarySchool";
- import { numCal } from "@/util/calculate";
- import { optionList, auditOption } from "./js/optionList";
- import reportDialog from "@/components/report-dialog/main";
- export default {
- name: "detailsPage",
- data() {
- return {
- time: "",
- dialogVisible: false,
- switchDialog: false,
- annexLoading: false,
- crudForm: {},
- excelBox: false,
- loading: false,
- allloading: false,
- xcelLoading: false,
- loadingBtn: false,
- excelForm: {
- type: "1"
- },
- excelOption: {
- submitBtn: false,
- emptyBtn: false,
- column: [
- {
- label: "导入类型",
- prop: "type",
- type: "select",
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=import_type",
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- row: true,
- span: 12
- },
- {
- label: "模板下载",
- prop: "excelTemplate",
- formslot: true,
- span: 10
- },
- {
- label: "当前时间",
- prop: "date",
- span: 13
- },
- {
- label: "模板上传",
- prop: "excelFile",
- type: "upload",
- drag: true,
- loadText: "模板上传中,请稍等",
- span: 24,
- propsHttp: {
- res: "data"
- },
- tip: "请上传 .xls,.xlsx 标准格式文件",
- action: "/api/blade-school/salaryitem/import",
- disabled: false
- }
- ]
- },
- form: {},
- dataList: [],
- page: {
- pageSize: 20,
- currentPage: 1,
- total: 0,
- pageSizes: [
- 10,
- 20,
- 30,
- 40,
- 50,
- 100,
- 150,
- 200,
- 250,
- 300,
- 350,
- 400,
- 450,
- 500
- ]
- },
- drawer: false,
- tableHeight: 0,
- option: {
- menuBtn: false,
- labelWidth: 40,
- column: [
- {
- label: "年",
- prop: "annual",
- type: "year",
- valueFormat: "yyyy",
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ],
- span: 6,
- change: ({ value }) => {
- if (value) {
- this.optionList.column.forEach(e => {
- if (e.prop == "yearUpPerformance") {
- e.label = value + "年上学期绩效";
- }
- if (e.prop == "yearDownPerformance") {
- e.label = value + "年下学期绩效";
- }
- });
- }
- }
- },
- {
- label: "月",
- prop: "moon",
- type: "select",
- filterable: true,
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=month",
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- span: 6,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ],
- change: ({ value }) => {
- if (value) {
- this.optionList.column.forEach(e => {
- if (e.prop == "monthHour") {
- e.label = value + "月份课时";
- }
- if (e.prop == "momthWorkloadSalary") {
- e.label = value + "月工作量工资";
- }
- if (e.prop == "monthViceClassFee") {
- e.label = value + "月副班费(预留补发)";
- }
- });
- }
- }
- },
- {
- label: "人数",
- prop: "personNumber",
- span: 6,
- disabled: true
- },
- {
- label: "状态",
- prop: "status",
- type: "select",
- span: 6,
- props: {
- label: "name",
- value: "code"
- },
- dicData: [
- {
- name: "录入",
- code: 0
- },
- {
- name: "申请审批",
- code: 1
- },
- {
- name: "审批中",
- code: 2
- },
- {
- name: "审批通过",
- code: 3
- }
- ],
- disabled: true
- },
- {
- label: "备注",
- prop: "remarks",
- type: "textarea",
- span: 24,
- minRows: 2
- }
- ]
- },
- optionList: optionList,
- exportUrl: "/api/blade-school/salaryitem/export/template",
- annexData: [],
- annexOption: {
- align: "center",
- menuAlign: "center",
- addBtn: false,
- border: true,
- index: true,
- viewBtn: false,
- editBtn: false,
- delBtn: false,
- stripe: true,
- menuWidth: 100,
- column: [
- {
- label: "文件类型",
- prop: "fileType",
- overHidden: true
- },
- {
- label: "文件名",
- prop: "cname",
- overHidden: true
- },
- {
- label: "创建时间",
- prop: "createTime",
- overHidden: true
- },
- {
- label: "创建人",
- prop: "createName",
- overHidden: true
- },
- {
- label: "备注",
- prop: "remarks",
- overHidden: true
- }
- ]
- },
- annexPage: {
- pageSize: 10,
- currentPage: 1,
- total: 0,
- pageSizes: [
- 10,
- 20,
- 30,
- 40,
- 50,
- 100,
- 150,
- 200,
- 250,
- 300,
- 350,
- 400,
- 450,
- 500
- ]
- },
- auditList: [],
- auditOption: auditOption
- };
- },
- props: {
- detailData: {
- type: Object
- }
- },
- components: {
- reportDialog
- },
- created() {
- if (this.detailData.id) {
- this.getDetail(this.detailData.id);
- }
- if (this.detailData.status == 1) {
- this.option.disabled = true;
- }
- this.optionList.height = 450;
- this.annexOption.height = 450;
- this.auditOption.height = 600;
- },
- methods: {
- getTime() {
- setInterval(() => {
- this.time = dateFormat(new Date());
- }, 1000);
- },
- cellStyle() {
- return "padding:0;height:40px;";
- },
- headerCellClassName({ row, column, rowIndex, columnIndex }) {
- if (
- column.property == "salaryBase" ||
- column.property == "workloadSalary" ||
- column.property == "dailyAssessmentSalary" ||
- column.property == "awardSalary" ||
- column.property == "dutyAllowances" ||
- column.property == "classTeacherSubsidy" ||
- column.property == "subsidy" ||
- column.property == "deductions" ||
- column.property == "insuranceUnit" ||
- column.property == "insurancePersonage" ||
- column.property == "reservedFundsUnit" ||
- column.property == "reservedFundsPersonage" ||
- column.property == "salary" ||
- column.property == "personageTaxes" ||
- column.property == "fsalary"
- ) {
- return "headerCellClass";
- }
- if (
- column.property == "salaryWithdrawalStandard" ||
- column.property == "rankWithdrawalStandard" ||
- column.property == "dailyAssessmentSalary" ||
- column.property == "rankStandard" ||
- column.property == "salaryBaseName" ||
- column.property == "workloadSalaryCritertion" ||
- column.property == "virtualWorkloadSalary" ||
- column.property == "doubleCease" ||
- column.property == "dailyAssessmentCriteria" ||
- column.property == "virtualDailyAssessmentCriteria" ||
- column.property == "termPerformanceSalaryName"||
- column.property == "salaryWithdrawalStandard"||
- column.property == "rankWithdrawalStandard"||
- column.property == "rankStandard"||
- column.property == "salaryBaseName"||
- column.property == "workloadSalaryCritertion"||
- column.property == "virtualWorkloadSalary"||
- column.property == "doubleCease"||
- column.property == "dailyAssessmentCriteria"||
- column.property == "virtualDailyAssessmentCriteria"||
- column.property == "otherCriterion"
- ) {
- return "headerCellClass2";
- }
-
- },
- copyDoc() {
- this.$emit("copyOrder", this.form.id);
- },
- getDetail(id) {
- if (this.detailData.status == "copy") {
- this.allloading = true;
- copyDetail(id)
- .then(res => {
- this.form = res.data.data;
- this.getItemDetail();
- })
- .finally(() => {
- this.allloading = false;
- });
- } else {
- detail(id).then(res => {
- this.form = res.data.data;
- this.getItemDetail();
- this.getitemAnnex();
- });
- }
- },
- getItemDetail() {
- const data = {
- pid: this.form.id,
- ...this.search
- };
- this.loading = true;
- itemDetail(this.page.currentPage, this.page.pageSize, data)
- .then(res => {
- this.dataList = res.data.data.records;
- this.page.total = res.data.data.total;
- })
- .finally(() => {
- this.loading = false;
- });
- },
- getitemAnnex() {
- const data = {
- pid: this.form.id
- };
- this.annexLoading = true;
- itemAnnex(this.annexPage.currentPage, this.annexPage.pageSize, data)
- .then(res => {
- this.annexData = res.data.data.records;
- this.annexPage.total = res.data.data.total;
- })
- .finally(() => {
- this.annexLoading = false;
- });
- },
- rowSave(row, done, loading) {
- if (!row.cname) {
- loading();
- return this.$message.error("请完善姓名");
- }
- if (!row.idNumber) {
- loading();
- return this.$message.error("请完善身份证号");
- }
- const arr = [];
- arr.push(row);
- submit({ ...this.form, salaryItemList: arr })
- .then(res => {
- this.$message.success("保存成功");
- this.form = res.data.data;
- this.getItemDetail();
- done();
- })
- .finally(() => {
- loading();
- });
- },
- rowUpdate(row, index, done, loading) {
- if (!row.cname) {
- loading();
- return this.$message.error("请完善姓名");
- }
- if (!row.idNumber) {
- loading();
- return this.$message.error("请完善身份证号");
- }
- const arr = [];
- arr.push(row);
- submit({ ...this.form, salaryType: "小学部", salaryItemList: arr })
- .then(res => {
- this.$message.success("修改成功");
- this.form = res.data.data;
- this.getItemDetail();
- done();
- })
- .finally(() => {
- loading();
- });
- },
- rowCell(row, index) {
- if (row.$cellEdit == true) {
- if (!row.cname) {
- return this.$message.error("请完善姓名");
- }
- if (!row.idNumber) {
- return this.$message.error("请完善身份证号");
- }
- // if (!row.rankStandard) {
- // return this.$message.error("请完善职级标准");
- // }
- const arr = [];
- arr.push(row);
- this.loading = true;
- submit({ ...this.form, salaryItemList: arr })
- .then(res => {
- this.$message.success("保存成功");
- this.form = res.data.data;
- })
- .finally(() => {
- this.loading = false;
- });
- this.$set(row, "$cellEdit", false);
- } else {
- this.$set(row, "$cellEdit", true);
- }
- },
- rowDel(row) {
- this.$confirm("确定删除数据?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- if (row.id) {
- delItem(row.id).then(res => {
- this.$message({
- type: "success",
- message: "删除成功!"
- });
- this.getItemDetail();
- });
- } else {
- this.$message({
- type: "success",
- message: "删除成功!"
- });
- this.dataList.splice(row.$index, 1);
- }
- });
- },
- rowDownload(row) {
- window.open(`${row.url}?${this.website.tokenHeader}=${getToken()}`);
- },
- searchChange(params, done) {
- if (!this.form.id) {
- done();
- return this.$message.error("请保存数据");
- }
- this.getItemDetail();
- done();
- },
- currentChange(val) {
- this.page.currentPage = val;
- this.getItemDetail();
- },
- sizeChange(val) {
- this.page.currentPage = 1;
- this.page.pageSize = val;
- this.getItemDetail();
- },
- refreshChange() {
- this.getItemDetail();
- },
- currentannexChange(val) {
- this.annexPage.currentPage = val;
- this.getitemAnnex();
- },
- sizeannexChange(val) {
- this.annexPage.currentPage = 1;
- this.annexPage.pageSize = val;
- this.getitemAnnex();
- },
- refreshannexChange() {
- this.getitemAnnex();
- },
- uploadAfter(res, done, loading, column) {
- this.excelBox = false;
- // this.$message.success("导入成功!");
- this.getItemDetail();
- this.getitemAnnex();
- done();
- },
- //修改提交触发
- editCustomer() {
- this.$refs["form"].validate((valid, done) => {
- done();
- if (valid) {
- for (let i = 0; i < this.dataList.length; i++) {
- if (!this.dataList[i].cname) {
- return this.$message.error(
- "请完善第" + Number(1 + i) + "行的姓名"
- );
- }
- if (!this.dataList[i].idNumber) {
- return this.$message.error(
- "请完善第" + Number(1 + i) + "行的身份证号"
- );
- }
- if (!this.dataList[i].rankStandard) {
- return this.$message.error(
- "请完善第" + Number(1 + i) + "行的职级标准"
- );
- }
- }
- this.loadingBtn = true;
- submit({
- ...this.form,
- salaryType: "小学部",
- salaryItemList: this.dataList
- })
- .then(res => {
- this.$message.success("保存成功");
- this.form = res.data.data;
- this.getItemDetail();
- })
- .finally(() => {
- this.loadingBtn = false;
- });
- } else {
- return false;
- }
- });
- },
- derivation() {
- if (!this.excelForm.type) {
- return this.$message.error("请选择导入类型");
- }
- if (!this.exportUrl) {
- return this.$message.error("暂无模板文件");
- }
- window.open(
- `${this.exportUrl}?${this.website.tokenHeader}=${getToken()}`
- );
- },
- openExport() {
- if (!this.form.id) {
- return this.$message.error("请先保存数据");
- }
- window.open(
- `/api/blade-school/salaryitem/export/teacher?${
- this.website.tokenHeader
- }=${getToken()}&pid=${this.form.id}`
- );
- },
- calculate() {
- if (!this.form.id) {
- return this.$message.error("请先保存数据");
- }
- this.loading = true;
- calculate({ pid: this.form.id })
- .then(res => {
- if (res.data.code == "200") {
- this.getItemDetail();
- }
- })
- .finally(() => {
- this.loading = false;
- });
- },
- importExcel() {
- if (!this.form.id) {
- return this.$message.error("请先保存数据");
- }
- this.excelOption.column.forEach(e => {
- if (e.prop == "excelFile") {
- e.data = {
- id: this.form.id
- };
- }
- });
- this.excelBox = true;
- this.getTime();
- },
- //导出全部
- exportAll() {
- let opt = {
- title: "工资条",
- column: this.optionList.column,
- data: this.dataList
- };
- this.$Export.excel({
- title: opt.title,
- columns: opt.column,
- data: opt.data
- });
- },
- salaryAdd(row) {
- // 1. 基础工资 = +M153(校龄工资)+N153(增资)+O153(学历工资)+Q153(职级工资)+L153(履约奖)+R153(工资基数)
- row.basicsSalary =
- numCal(row.schoolAgeSalary) +
- numCal(row.capitalIncrease) +
- numCal(row.educationSalary) +
- numCal(row.rankSalary) +
- numCal(row.salaryBase) +
- numCal(row.performanceAward);
- // 2. 工作量工资 = V51(工作量工资)+..自定义
- row.workloadSalary =
- numCal(row.monthHour) +
- numCal(row.momthWorkloadSalary) +
- numCal(row.customWorkloadSalary) +
- numCal(row.custom) +
- numCal(row.customOne) +
- numCal(row.customTwo) +
- numCal(row.customThree) +
- numCal(row.customFour) +
- numCal(row.customFive) +
- numCal(row.customSix) +
- numCal(row.customSeven) +
- numCal(row.customEight) +
- numCal(row.customNine);
- // 3. 奖励工资 = 自定义+...+自定义
- row.awardSalary =
- numCal(row.customAward) +
- numCal(row.customAwardOne) +
- numCal(row.customAwardTwo) +
- numCal(row.customAwardThree) +
- numCal(row.customAwardFour) +
- numCal(row.customAwardFive) +
- numCal(row.customAwardSix) +
- numCal(row.customAwardSeven) +
- numCal(row.customAwardEight) +
- numCal(row.customAwardNine);
- // 4. 职务津贴 = AM46(备课组长)+AL46(领导干部补贴)+AN46(教研组长)
- row.dutyAllowances =
- numCal(row.prepareLessons) +
- numCal(row.leadingCadreSubsidy) +
- numCal(row.teachingResearch);
- // 5. 班主任津贴 = AQ47(班额)+AP47(班主任费)
- row.classTeacherSubsidy =
- numCal(row.classes) + numCal(row.classTeacherFee);
- // 6. 补贴项 = =BE49(预留补发)+BD49(餐车、周五测温、周五安全岗(预留补发))+BC49(9月副班费(预留补发))+BB49(级部长(预留发放))+BA49(期中期末考试学科优胜奖(预留发放))+AZ49(新岗岗前培训)+AY49(假期加班费)+AX49(干部补贴预留)+AW49(2020年下学期绩效)+AV49(2020年上学期绩效)+AU49(周末加班(提取))+AT49(产假工资)+AS49(微信)
- row.subsidy =
- numCal(row.reserveReplacement) +
- numCal(row.safetyFees) +
- numCal(row.monthViceClassFee) +
- numCal(row.classMinister) +
- numCal(row.monthViceClassFee) +
- numCal(row.winningPrize) +
- numCal(row.newPostTrain) +
- numCal(row.vacationOvertimePay) +
- numCal(row.cadreAllowanceReservation) +
- numCal(row.yearDownPerformance) +
- numCal(row.yearUpPerformance) +
- numCal(row.overtimeAtWeekend) +
- numCal(row.maternityLeaveSalary) +
- numCal(row.wx);
- // 7. 扣除项 = =BL47(宿舍管理费)+BK47(学习强国)+BJ47(电话费)+BI47(督查罚款)+BH47(出勤)+BM47(生育津贴)+BN47(五险一金个人)
- row.deductions =
- numCal(row.dormitoryManagementFee) +
- numCal(row.learningPower) +
- numCal(row.telephoneBill) +
- numCal(row.inspectorFines) +
- numCal(row.attendance) +
- numCal(row.childbirthAllowance) +
- numCal(row.androidIt);
- // 8. 应发工资 = S153(基础工资)+Z153(工作量工资)+AB153(日常考核工资)+AK153(奖励工资)+AO153(职务津贴)+AR153(班主任津贴)+BG153(补贴项)-BO153(扣除项)+BQ153(保险个人)+BS153(公积金个人)
- row.salary =
- numCal(row.basicsSalary) +
- numCal(row.workloadSalary) +
- numCal(row.dailyAssessmentSalary) +
- numCal(row.awardSalary) +
- numCal(row.dutyAllowances) +
- numCal(row.classTeacherSubsidy) +
- numCal(row.subsidy) -
- numCal(row.deductions) +
- numCal(row.insurancePersonage) +
- numCal(row.reservedFundsPersonage);
- // 9. 实发工资 = BT153(应发工资) - BU153(个税)-BQ153(保险个人)-BS153(公积金个人)
- row.fsalary =
- numCal(row.salary) -
- numCal(row.personageTaxes) -
- numCal(row.insurancePersonage) -
- numCal(row.reservedFundsPersonage);
- },
- //导出工资条
- exportSalary() {
- let data = [];
- for (let item in this.optionList.column) {
- switch (this.optionList.column[item].prop) {
- case "salaryBase":
- data.push(this.optionList.column[item]);
- break;
- case "workloadSalary":
- data.push(this.optionList.column[item]);
- break;
- case "dailyAssessmentSalary":
- data.push(this.optionList.column[item]);
- break;
- case "awardSalary":
- data.push(this.optionList.column[item]);
- break;
- case "dutyAllowances":
- data.push(this.optionList.column[item]);
- break;
- case "classTeacherSubsidy":
- data.push(this.optionList.column[item]);
- break;
- case "subsidy":
- data.push(this.optionList.column[item]);
- break;
- case "deductions":
- data.push(this.optionList.column[item]);
- break;
- case "insuranceUnit":
- data.push(this.optionList.column[item]);
- break;
- case "insurancePersonage":
- data.push(this.optionList.column[item]);
- break;
- case "reservedFundsUnit":
- data.push(this.optionList.column[item]);
- break;
- case "reservedFundsPersonage":
- data.push(this.optionList.column[item]);
- break;
- case "salary":
- data.push(this.optionList.column[item]);
- break;
- case "personageTaxes":
- data.push(this.optionList.column[item]);
- break;
- case "fsalary":
- data.push(this.optionList.column[item]);
- break;
- }
- }
- let opt = {
- title: "工资条",
- column: data,
- data: this.dataList
- };
- this.$Export.excel({
- title: opt.title,
- columns: opt.column,
- data: opt.data
- });
- },
- openEdit() {
- const data = {
- moduleName: "xxb",
- tableName: "primary_school",
- billId: this.form.id,
- no: localStorage.getItem("browserID"),
- billNo: this.form.annual + "-" + this.form.moon
- };
- this.inDetailsKey(this.$route.name, {
- moduleName: "xxb",
- tableName: "primary_school",
- billId: this.form.id,
- billNo: this.form.annual + "-" + this.form.moon
- });
- this.checkLock(data).then(res => {
- if (res.data.code == 200) {
- this.onLock(data).then(res => {
- if (res.data.code == 200) {
- this.detailData.status = 2;
- this.option = this.$options.data().option;
- }
- });
- }
- });
- },
- openReport() {
- this.switchDialog = !this.switchDialog;
- },
- onClose(val) {
- this.switchDialog = val;
- },
- // 请核
- pleaseCheck() {
- this.$confirm("您确定提交此次申请吗?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- const data = {
- id: this.form.id,
- checkType: "xsgz",
- url: "/salaryManagement/primarySchool/index",
- pageStatus: "this.$store.getters.domSaleStatus",
- pageLabel: "小学部",
- checkFlag: 2
- };
- pleaseCheck(data).then(res => {
- if (res.data.msg == "请核失败") {
- this.dialogVisible = true;
- this.auditList = res.data.data;
- } else {
- this.$message.success("请核成功");
- this.detailData.status = 1;
- this.option.disabled = true;
- this.getDetail(this.form.id);
- }
- });
- });
- },
- handleClose() {
- this.auditList = [];
- this.dialogVisible = false;
- },
- exportAbnormal() {
- window.open(
- `/api//blade-school/salaryitem/export/exception?${
- this.website.tokenHeader
- }=${getToken()}&pid=${this.form.id}`
- );
- },
- //返回列表
- backToList() {
- if (this.form.id) {
- this.unLock({
- moduleName: "xxb",
- tableName: "primary_school",
- billId: this.form.id,
- billNo: this.form.annual + "-" + this.form.moon
- });
- }
- this.$emit("goBack");
- this.leaveDetailsKey(this.$route.name);
- }
- },
- watch: {
- "excelForm.type": function(val) {
- if (val) {
- switch (val) {
- case "1":
- this.exportUrl = "/api/blade-school/salaryitem/export/template";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "2":
- this.exportUrl = "/api/blade-school/salaryitem/export/employ";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/employ";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "3":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/workloadExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/workloadExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "4":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/postAllowance";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/postAllowance";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "5":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/teacherSubsidy";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/teacherSubsidy";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "6":
- this.exportUrl = "/api/blade-school/salaryitem/export/position";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/position";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "7":
- this.exportUrl = "/api/blade-school/salaryitem/export/zhaPingExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/zhaPingExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "9":
- this.exportUrl = "/api/blade-school/salaryitem/export/overtime";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/overtime";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "10":
- this.exportUrl = "/api/blade-school/salaryitem/export/weChat";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/weChat";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "11":
- this.exportUrl = "/api/blade-school/salaryitem/export/power";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/power";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "12":
- this.exportUrl = "/api/blade-school/salaryitem/export/phoneFine";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/phoneFine";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "13":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/sanitationFee";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/sanitationFee";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "14":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/insuranceExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/insuranceExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "15":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/reservedFunds";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/reservedFunds";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "16":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/personalInsurance";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/personalInsurance";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "17":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/attendanceExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/attendanceExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "18":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/eomNumberExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/eomNumberExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "19":
- this.exportUrl = "/api/blade-school/salaryitem/export/payTaxes";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/payTaxes";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "20":
- this.exportUrl = "/api/blade-school/salaryitem/export/awardExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/awardExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "21":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/performanceExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/performanceExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "22":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/vacationExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/vacationExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "23":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/postTrainExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/postTrainExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "24":
- this.exportUrl = "/api/blade-school/salaryitem/export/leadExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/leadExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "25":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/teamLeaderExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/teamLeaderExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "26":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/prepareLessonsExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/prepareLessonsExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "28":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/teachingExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/teachingExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- default:
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = true;
- this.exportUrl = "";
- }
- } else {
- this.findObject(this.excelOption.column, "excelFile").disabled = true;
- }
- }
- }
- };
- </script>
- <style>
- .headerCellClass {
- color: #fff !important;
- background: #a4cf57 !important;
- }
- .headerCellClass2 {
- color: #fff !important;
- background: #a0cfff !important;
- }
- </style>
- <style lang="scss" scoped>
- .trading-form ::v-deep .el-form-item {
- margin-bottom: 4px !important;
- }
- ::v-deep .el-form-item__error {
- display: none !important;
- }
- .schoolupload ::v-deep .el-upload-list {
- display: none;
- }
- .abnormal ::v-deep .el-dialog__body {
- padding: 10px 20px;
- }
- </style>
|