Browse Source

完善代收款申请--选择销售专员(包含离职人员)

zhanglei
yunuo970428 2 years ago
parent
commit
41f842d3d0
  1. 9
      anrui-buscenter/anrui-finmanage-ui/src/api/jichuxinxi/dictcommons.js
  2. 4
      anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/agencyfund/agencyfundAdd.vue

9
anrui-buscenter/anrui-finmanage-ui/src/api/jichuxinxi/dictcommons.js

@ -163,6 +163,15 @@ export function selectOrgList(data) {
}) })
} }
// 根据当前登录用户sid获取本分公司下的销售部门和销售专员(包含离职的销售专员)
export function selectOrgList2(data) {
return request({
url: '//portal/v1/sysorganization/selectOrgList2',
method: 'get',
params: data
})
}
// 获取开票信息(限制有效期内) // 获取开票信息(限制有效期内)
export function selectAllDisList(data) { export function selectAllDisList(data) {
return request({ return request({

4
anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/agencyfund/agencyfundAdd.vue

@ -329,7 +329,7 @@
<script> <script>
import { save, listAll, fetchDetailBySid } from '@/api/anruifinmanagement/paymentConfirmation.js' import { save, listAll, fetchDetailBySid } from '@/api/anruifinmanagement/paymentConfirmation.js'
import Upload from '@/components/uploadFile/filesUpload' // import Upload from '@/components/uploadFile/filesUpload' //
import { selAccountByOrgSid, typeValues, fetchDetailsByUseOrgSid, getOrgSidByPath, selectOrgList } from '@/api/jichuxinxi/dictcommons' import { selAccountByOrgSid, typeValues, fetchDetailsByUseOrgSid, getOrgSidByPath, selectOrgList2 } from '@/api/jichuxinxi/dictcommons'
import amountpledged from '../paymentConfirmation/relation/amountpledged' import amountpledged from '../paymentConfirmation/relation/amountpledged'
export default { export default {
@ -464,7 +464,7 @@ export default {
}) })
} }
}) })
selectOrgList({ userSid: window.sessionStorage.getItem('userSid'), orgPath: window.sessionStorage.getItem('defaultOrgPath') }).then((res) => { selectOrgList2({ userSid: window.sessionStorage.getItem('userSid'), orgPath: window.sessionStorage.getItem('defaultOrgPath') }).then((res) => {
if (res.success) { if (res.success) {
this.staffDept_list = res.data this.staffDept_list = res.data
} }

Loading…
Cancel
Save