123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524 |
- <template>
- <div class="edit">
- <van-nav-bar title="报销凭证详情" left-text="返回" @click-left="back" fixed left-arrow />
- <van-form class="edit_form" label-width="140">
- <!-- 报销人 -->
- <van-field
- v-model="editForm.ownerId"
- label="报销人"
- @click="ownerIdShow = true"
- readonly
- clickable
- required
- >
- <template #input>
- <span v-if="user.userNameNeedTranslate == 1"><ww-open-data type='userName' :openid='formshowText.name'></ww-open-data></span>
- <span v-else>{{formshowText.name}}</span>
- </template>
- </van-field>
- <van-popup v-model="ownerIdShow" position="bottom" v-if="false">
- <van-picker
- value-key="name"
- show-toolbar
- :columns="userList"
- @confirm="ownerIdChange"
- @cancel="
- ownerIdShow = false;
- $forceUpdate();
- "
- />
- </van-popup>
- <!-- 填报日期 -->
- <van-field
- v-model="editForm.createDate"
- label="填报日期"
- @click="createDateShow = true"
- readonly
- clickable
- required
- ></van-field>
- <van-popup v-model="createDateShow" position="bottom" v-if="canEdit">
- <van-datetime-picker
- type="date"
- title="选择填报日期"
- @confirm="createDateChange"
- @cancel="
- createDateShow = false;
- $forceUpdate();
- "
- :min-date="minDate"
- :max-date="maxDate"
- />
- </van-popup>
- <!-- 发票张数 -->
- <van-field label="发票张数" :readonly="!canEdit">
- <template #input>
- <van-stepper v-model="editForm.ticketNum" :disabled="!canEdit" />
- </template>
- </van-field>
- <!-- 费用类型 -->
- <van-field
- v-model="editForm.type"
- label="费用类型"
- @click="typeShow = true"
- readonly
- clickable
- >
- <template #input>{{ typeList[editForm.type] }}</template>
- </van-field>
- <van-popup v-model="typeShow" position="bottom" v-if="canEdit">
- <van-picker
- show-toolbar
- :columns="typeList"
- @confirm="typeChange"
- @cancel="
- typeShow = false;
- $forceUpdate();
- "
- />
- </van-popup>
- <!-- 备注 -->
- <van-field v-model="editForm.remark" label="备注" :readonly="!canEdit" type="textarea"></van-field>
- <!-- 发票 -->
- <van-field label="发票" readonly>
- <template #input
- >总费用:{{ totalCost | numtosum }} 元</template
- >
- </van-field>
- <div class="invoice" v-if="invoiceList.length != 0">
- <div
- v-for="(item, index) in invoiceList"
- :key="item.id"
- style="position: relative"
- :class="index == 0 ? '' : 'invoice_item'"
- >
- <van-icon
- name="delete-o"
- class="deletebtn"
- @click="deleteInvoice(index)"
- v-if="canEdit"
- />
- <van-field
- label="所属项目:"
- v-model="item.projectId"
- @click="(in_projectShow = true), (invoiceIndex = index)"
- readonly
- clickable
- >
- <template #input>{{
- formshowText.inProjectName[index]
- }}</template>
- </van-field>
- <van-field
- label="费用日期:"
- v-model="item.happenDate"
- @click="(in_dateShow = true), (invoiceIndex = index)"
- readonly
- clickable
- ></van-field>
- <van-field
- label="发票种类:"
- v-model="item.invoiceType"
- @click="(in_typeShow = true), (invoiceIndex = index)"
- readonly
- clickable
- >
- <template #input>{{
- inTypeList[item.invoiceType]
- }}</template>
- </van-field>
- <van-field
- label="费用类型:"
- v-model="item.expenseType"
- @click="(in_exTypeShow = true), (invoiceIndex = index)"
- readonly
- clickable
- ></van-field>
- <van-field
- label="费用金额(含税):"
- v-model="item.amount"
- type="number"
- @input="costCount"
- :readonly="!canEdit"
- ></van-field>
- <van-field
- label="发票号:"
- v-model="item.invoiceNo"
- readonly
- ></van-field>
- <van-field
- label="税率%:"
- v-model="item.taxPercent"
- :readonly="!canEdit"
- ></van-field>
- <van-field
- label="税额:"
- readonly
- ><template #input>¥{{getTaxValue(item.amount,item.taxPercent)}}</template></van-field>
- <van-field label="备注:" v-model="item.remark" :readonly="!canEdit"></van-field>
- <van-field
- label="报销凭证:"
- @click="invoiceIndex = index"
- :clickable="!canEdit"
- >
- <template #input>
- <van-uploader
- v-model="uploader[index]"
- :before-read="beforeRead"
- :after-read="afterRead"
- @delete="item.pic = null"
- :max-count="1"
- :disabled="!canEdit"
- :deletable="canEdit"
- />
- </template>
- </van-field>
- </div>
- </div>
- <!-- 发票-popup -->
- <span>
- <!-- 所属项目 -->
- <van-popup v-model="in_projectShow" position="bottom" v-if="canEdit">
- <van-picker
- value-key="projectName"
- show-toolbar
- :columns="inProjectList"
- @confirm="inProjectChange"
- @cancel="
- in_projectShow = false;
- $forceUpdate();
- "
- />
- </van-popup>
- <!-- 费用日期 -->
- <van-popup v-model="in_dateShow" position="bottom" v-if="canEdit">
- <van-datetime-picker
- type="date"
- title="选择费用日期"
- @confirm="inDateChange"
- @cancel="
- in_dateShow = false;
- $forceUpdate();
- "
- :min-date="minDate"
- :max-date="maxDate"
- />
- </van-popup>
- <!-- 发票种类 -->
- <van-popup v-model="in_typeShow" position="bottom" v-if="canEdit">
- <van-picker
- show-toolbar
- :columns="inTypeList"
- @confirm="inTypeChange"
- @cancel="
- in_typeShow = false;
- $forceUpdate();
- "
- />
- </van-popup>
- <!-- 费用类型 -->
- <van-popup v-model="in_exTypeShow" position="bottom" v-if="canEdit">
- <van-picker
- value-key="typeName"
- show-toolbar
- :columns="inexTypeList"
- @confirm="inexTypeChange"
- @cancel="
- in_exTypeShow = false;
- $forceUpdate();
- "
- />
- </van-popup>
- </span>
- </van-form>
- <!-- 提交 -->
- <div class="form_btn" style="position: fixed; bottom: 0px; width: 100%" v-if="canEdit">
- <div style="padding-bottom: 10px">
- <van-button
- square
- block
- type="info"
- @click="submitExpense"
- style="width: 100%; float: left"
- >提交</van-button
- >
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- user: JSON.parse(localStorage.userInfo),
- canEdit: this.$route.params.canEdit,
- canExamine: false,
- minDate: new Date(2020,0,1),
- maxDate: new Date(2025,11,31),
- editForm: {
- ownerId: '',
- createDate: '',
- ticketNum: 0,
- type: 0,
- remark: ''
- },
- invoiceList: [],
- formshowText: {
- name: '',
- inProjectName: []
- },
- ownerIdShow: false,
- userList: [],
- createDateShow: false,
- typeShow: false,
- typeList: ['一般','差旅','外包'],
- totalCost: 0,
- invoiceIndex: 0,
- in_projectShow: false,
- inProjectList: [],
- in_dateShow: false,
- in_typeShow: false,
- inTypeList: ['增值税专用发票','增值税普通发票'],
- in_exTypeShow: false,
- allexTypeList: [],
- inexTypeList: [],
- uploader: [[]],
- }
- },
- filters: {
- numtosum(value) {
- if (value == undefined || !value) return '0.00'
- value = value.toFixed(2)
- const intPart = Math.trunc(value)
- const intPartFormat = intPart.toString().replace(/(\d)(?=(?:\d{3})+$)/g, '$1,')
- let floatPart = '.00'
- const valueArray = value.toString().split('.')
- if (valueArray.length === 2) { // 有小数部分
- floatPart = valueArray[1].toString() // 取得小数部分
- return intPartFormat + '.' + floatPart
- }
- return intPartFormat + floatPart
- },
- },
- mounted() {
- console.log(this.$route.params);
- for(let i in this.user.functionList){
- if(this.user.functionList[i].name == '费用审核'){
- this.canExamine = true
- }
- }
-
- this.getDetail()
- if(this.canEdit){
- // if(this.canExamine){
- // this.getUserList()
- // }
- this.getProjectList()
- }
- },
- methods: {
- back(){
- history.back();
- },
- formatDate(date) {
- let mon = date.getMonth() + 1
- return `${date.getFullYear()}-${mon<10?'0'+mon:mon}-${date.getDate()<10?'0'+date.getDate():date.getDate()}`;
- },
- getTaxValue(amount,percent){
- let per = percent / 100
- let amo = amount / (1 + per)*per
- return amo.toFixed(2)
- },
- costCount(){
- let costnum = 0
- for(let i in this.invoiceList){
- costnum += this.invoiceList[i].amount*1
- }
- this.totalCost = costnum
- },
- ownerIdChange(value,key){
- this.editForm.ownerId = value.id
- this.formshowText.name = value.name
- this.ownerIdShow = false
- },
- createDateChange(value,key){
- this.editForm.createDate = this.formatDate(value)
- this.createDateShow = false
- },
- typeChange(value,key){
- this.editForm.type = key
- this.typeShow = false
- this.inexTypeList = this.allexTypeList.filter(a=>a.mainType == this.editForm.type)
- },
- deleteInvoice(index){
- this.invoiceList.splice(index,1)
- this.uploader.splice(index,1)
- },
- inProjectChange(value,key){
- this.formshowText.inProjectName[this.invoiceIndex] = value.projectName
- this.invoiceList[this.invoiceIndex].projectId = value.id
- this.in_projectShow = false
- },
- inDateChange(value,key){
- this.invoiceList[this.invoiceIndex].happenDate = this.formatDate(value)
- this.in_dateShow = false
- },
- inTypeChange(value,key){
- this.invoiceList[this.invoiceIndex].invoiceType = key
- this.in_typeShow = false
- },
- inexTypeChange(value,key){
- this.invoiceList[this.invoiceIndex].expenseType = value.typeName
- this.in_exTypeShow = false
- },
- beforeRead(file){
- if(file.type != 'image/jpeg' && file.type != 'image/png'){
- this.$toast.fail('请选择jpg或png格式的图片')
- return false
- }
- return true
- },
- afterRead(file){
- let formData = new FormData();
- formData.append("multipartFile", file.file);
- this.$axios.post("/common/uploadFile", formData)
- .then(res => {
- if(res.code == "ok") {
- this.invoiceList[this.invoiceIndex].pic = res.data
- } else {
- this.$toast.fail('上传失败');
- this.uploader[this.invoiceIndex] = []
- }
- }).catch(err=> {this.$toast.clear();console.log(err);this.uploader[this.invoiceIndex]=[]});
- },
- submitExpense(){
- if(!this.editForm.ownerId){
- this.$toast.fail('请选择报销人')
- return
- }
- if(!this.editForm.createDate){
- this.$toast.fail('请选择填报日期')
- return
- }
- if(this.invoiceList.length == 0){
- this.$toast.fail('请添加发票')
- return
- }
- delete this.editForm.invoiceList
- this.editForm.items = JSON.stringify(this.invoiceList)
- this.editForm.totalAmount = this.totalCost
- this.$axios.post("/expense-sheet/add", this.editForm)
- .then(res => {
- if(res.code == "ok") {
- this.$toast.success('提交成功')
- this.back()
- } else {
- this.$toast.fail('获取失败');
- }
- }).catch(err=> {this.$toast.clear();console.log(err)});
- },
- getDetail(){
- this.$axios.post("/expense-sheet/getDetail", {id: this.$route.params.id})
- .then(res => {
- if(res.code == "ok") {
- this.editForm = res.data
- if(this.canEdit){this.getExTypeList()}
- this.formshowText.name = res.data.ownerName
- this.totalCost = res.data.totalAmount
- this.invoiceList = res.data.invoiceList
- for(let i in res.data.invoiceList){
- this.formshowText.inProjectName.push(res.data.invoiceList[i].projectName)
- if(res.data.invoiceList[i].pic){
- this.uploader[i] = [{url:'/upload/' + res.data.invoiceList[i].pic}]
- }else{
- this.uploader[i] = []
- }
-
- }
- } else {
- this.$toast.fail('获取失败');
- }
- }).catch(err=> {this.$toast.clear();console.log(err)});
- },
- getUserList(){
- this.$axios.post("/user/getSimpleActiveUserList", {})
- .then(res => {
- if(res.code == "ok") {
- this.userList = res.data
- } else {
- this.$toast.fail('获取失败');
- }
- }).catch(err=> {this.$toast.clear();console.log(err)});
- },
- getProjectList(){
- this.$axios.post("/project/getProjectList", {})
- .then(res => {
- if(res.code == "ok") {
- this.inProjectList = res.data
- } else {
- this.$toast.fail('获取失败');
- }
- }).catch(err=> {this.$toast.clear();console.log(err)});
- },
- getExTypeList(){
- this.$axios.post("/expense-type/getList", {})
- .then(res => {
- if(res.code == "ok") {
- this.allexTypeList = res.data
- this.inexTypeList = this.allexTypeList.filter(a=>a.mainType == this.editForm.type)
- } else {
- this.$toast.fail('获取失败');
- }
- }).catch(err=> {this.$toast.clear();console.log(err)});
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .edit{
- margin-top: 46px;
- overflow: auto;
- .form_btn{
- z-index: 1000;
- }
- .edit_form{
- .userCheckbox {
- padding: 10px;
- }
- padding-bottom: 46px;
- .invoice{
- border: 0.5px solid rgb(135, 195, 255);
- margin: 0.2rem;
- .deletebtn{
- position: absolute;
- z-index: 1000;
- font-size: 24px;
- right: 0.08rem;
- top: 0.08rem;
- color: #c03131;
- }
- .invoice_item{
- border-top: 0.5px solid rgb(135, 195, 255);
- }
- }
- }
- }
- </style>
- <style>
- .edit_form .invoice .van-field__label{
- color: #999;
- }
- .edit_form .invoice .van-field__control{
- color: #999;
- }
- </style>
|