Browse Source

完善出纳款项确认--增加当前登录用户sid

zhanglei
yunuo970428 2 years ago
parent
commit
9831beac3f
  1. 3
      anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/cashierConfirmationInfo.vue

3
anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/cashierConfirmationInfo.vue

@ -271,6 +271,7 @@ export default {
fetchDetailBySid(row.sid).then(resp => {
if (resp.code === '200') {
this.formobj = resp.data
this.formobj.userSid = window.sessionStorage.getItem('userSid')
if (this.formobj.paymentVoucherAppendixs.length > 0) {
this.formobj.paymentVoucherAppendixs.forEach((e) => {
this.list1.push({
@ -309,7 +310,7 @@ export default {
this.dialogVisible = true
},
handleConfirm() {
cashierReject({ sid: this.sid, reason: this.reason }).then((res) => {
cashierReject({ sid: this.sid, reason: this.reason, userSid: window.sessionStorage.getItem('userSid') }).then((res) => {
if (res.success) {
this.$message({ showClose: true, message: '已驳回', type: 'success' })
this.handleReturn('true')

Loading…
Cancel
Save