307 lines
13 KiB
Java
307 lines
13 KiB
Java
<template>
|
||
<j-modal
|
||
:title="title"
|
||
:width="width"
|
||
:visible="visible"
|
||
:confirmLoading="confirmLoading"
|
||
:keyboard="false"
|
||
:forceRender="true"
|
||
fullscreen
|
||
switchFullscreen
|
||
@cancel="handleCancel"
|
||
:id="prefixNo"
|
||
style="top:20px;height: 95%;">
|
||
<template slot="footer">
|
||
<a-button @click="handleCancel">取消</a-button>
|
||
<a-button v-if="checkFlag && isCanCheck" :loading="confirmLoading" @click="handleOkAndCheck">保存并审核</a-button>
|
||
<a-button type="primary" :loading="confirmLoading" @click="handleOk">保存(Ctrl+S)</a-button>
|
||
<!--发起多级审核-->
|
||
<a-button v-if="!checkFlag" @click="handleWorkflow()" type="primary">提交流程</a-button>
|
||
</template>
|
||
<a-spin :spinning="confirmLoading">
|
||
<a-form :form="form">
|
||
<a-row class="form-row" :gutter="24">
|
||
<a-col :lg="6" :md="12" :sm="24">
|
||
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="客户">
|
||
<a-select placeholder="请选择客户" v-decorator="[ 'organId', validatorRules.organId ]"
|
||
:dropdownMatchSelectWidth="false" showSearch optionFilterProp="children" @change="onChangeOrgan">
|
||
<div slot="dropdownRender" slot-scope="menu">
|
||
<v-nodes :vnodes="menu" />
|
||
<a-divider style="margin: 4px 0;" />
|
||
<div v-if="quickBtn.customer" style="padding: 4px 8px; cursor: pointer;"
|
||
@mousedown="e => e.preventDefault()" @click="addCustomer"><a-icon type="plus" /> 新增客户</div>
|
||
</div>
|
||
<a-select-option v-for="(item,index) in cusList" :key="index" :value="item.id">
|
||
{{ item.supplier }}
|
||
</a-select-option>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="6" :md="12" :sm="24">
|
||
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
||
<j-date v-decorator="['billTime', validatorRules.billTime]" :show-time="true"/>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="6" :md="12" :sm="24">
|
||
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
||
<a-input placeholder="请输入单据编号" v-decorator.trim="[ 'billNo' ]" />
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="6" :md="12" :sm="24">
|
||
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="财务人员">
|
||
<a-select placeholder="请选择财务人员" v-decorator="[ 'handsPersonId' ]"
|
||
:dropdownMatchSelectWidth="false" showSearch optionFilterProp="children">
|
||
<div slot="dropdownRender" slot-scope="menu">
|
||
<v-nodes :vnodes="menu" />
|
||
<a-divider style="margin: 4px 0;" />
|
||
<div v-if="quickBtn.person" style="padding: 4px 8px; cursor: pointer;"
|
||
@mousedown="e => e.preventDefault()" @click="addPerson"><a-icon type="plus" /> 新增经手人</div>
|
||
</div>
|
||
<a-select-option v-for="(item,index) in personList" :key="index" :value="item.id">
|
||
{{ item.name }}
|
||
</a-select-option>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row class="form-row" :gutter="24">
|
||
<a-col :lg="12" :md="12" :sm="24">
|
||
<!-- 操作按钮 -->
|
||
<div class="action-button">
|
||
<a-button type="primary" icon="plus" @click="handleClickAdd">选择单据</a-button>
|
||
<span class="gap"></span>
|
||
<a-button type="primary" icon="plus" @click="selectBeginNeed('客户')">选择期初</a-button>
|
||
<span class="gap"></span>
|
||
<a-button icon="minus" @click="handleClear">清空</a-button>
|
||
</div>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row class="form-row" :gutter="24">
|
||
<a-col :span="24">
|
||
<j-editable-table
|
||
:ref="refKeys[0]"
|
||
:loading="accountTable.loading"
|
||
:columns="accountTable.columns"
|
||
:dataSource="accountTable.dataSource"
|
||
:minWidth="minWidth"
|
||
:maxHeight="300"
|
||
:rowNumber="true"
|
||
:rowSelection="false"
|
||
:actionButton="false"
|
||
@valueChange="onValueChange" />
|
||
</a-col>
|
||
</a-row>
|
||
<a-row class="form-row" :gutter="24">
|
||
<a-col :lg="24" :md="24" :sm="24">
|
||
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="">
|
||
<a-textarea :rows="2" placeholder="请输入备注" v-decorator="[ 'remark' ]" style="margin-top:8px;"/>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row class="form-row" :gutter="24">
|
||
<a-col :lg="6" :md="12" :sm="24">
|
||
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="收款账户">
|
||
<a-select placeholder="请选择收款账户" v-decorator="[ 'accountId', validatorRules.accountId ]"
|
||
:dropdownMatchSelectWidth="false" showSearch optionFilterProp="children">
|
||
<div slot="dropdownRender" slot-scope="menu">
|
||
<v-nodes :vnodes="menu" />
|
||
<a-divider style="margin: 4px 0;" />
|
||
<div v-if="quickBtn.account" style="padding: 4px 8px; cursor: pointer;"
|
||
@mousedown="e => e.preventDefault()" @click="addAccount"><a-icon type="plus" /> 新增结算账户</div>
|
||
</div>
|
||
<a-select-option v-for="(item,index) in accountList" :key="index" :value="item.id">
|
||
{{ item.name }}
|
||
</a-select-option>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="6" :md="12" :sm="24">
|
||
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="合计收款">
|
||
<a-input placeholder="请输入合计收款" v-decorator.trim="[ 'totalPrice' ]" :readOnly="true"/>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="6" :md="12" :sm="24">
|
||
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="优惠金额">
|
||
<a-input placeholder="请输入优惠金额" v-decorator.trim="[ 'discountMoney', validatorRules.discountMoney ]" @change="onChangeDiscountMoney" />
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="6" :md="12" :sm="24">
|
||
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="实际收款">
|
||
<a-input placeholder="请输入实际收款" v-decorator.trim="[ 'changeAmount' ]" :readOnly="true"/>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row class="form-row" :gutter="24">
|
||
<a-col :lg="6" :md="12" :sm="24">
|
||
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="附件">
|
||
<j-upload v-model="fileList" bizPath="financial"></j-upload>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
</a-form>
|
||
</a-spin>
|
||
<debt-bill-list ref="debtBillList" @ok="debtBillListOk"></debt-bill-list>
|
||
<customer-modal ref="customerModalForm" @ok="customerModalFormOk"></customer-modal>
|
||
<account-modal ref="accountModalForm" @ok="accountModalFormOk"></account-modal>
|
||
<person-modal ref="personModalForm" @ok="personModalFormOk"></person-modal>
|
||
<workflow-iframe ref="modalWorkflow" @ok="workflowModalFormOk"></workflow-iframe>
|
||
</j-modal>
|
||
</template>
|
||
<script>
|
||
import pick from 'lodash.pick'
|
||
import DebtBillList from '../dialog/DebtBillList'
|
||
import CustomerModal from '../../system/modules/CustomerModal'
|
||
import AccountModal from '../../system/modules/AccountModal'
|
||
import PersonModal from '../../system/modules/PersonModal'
|
||
import WorkflowIframe from '@/components/tools/WorkflowIframe'
|
||
import { FormTypes } from '@/utils/JEditableTableUtil'
|
||
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
|
||
import { FinancialModalMixin } from '../mixins/FinancialModalMixin'
|
||
import JUpload from '@/components/jeecg/JUpload'
|
||
import JDate from '@/components/jeecg/JDate'
|
||
export default {
|
||
name: "MoneyInModal",
|
||
mixins: [JEditableTableMixin, FinancialModalMixin],
|
||
components: {
|
||
DebtBillList,
|
||
CustomerModal,
|
||
AccountModal,
|
||
PersonModal,
|
||
WorkflowIframe,
|
||
JUpload,
|
||
JDate,
|
||
VNodes: {
|
||
functional: true,
|
||
render: (h, ctx) => ctx.props.vnodes,
|
||
}
|
||
},
|
||
data () {
|
||
return {
|
||
title:"操作",
|
||
width: '1600px',
|
||
moreStatus: false,
|
||
// 新增时子表默认添加几行空数据
|
||
addDefaultRowNum: 0,
|
||
visible: false,
|
||
prefixNo: 'SK',
|
||
model: {},
|
||
fileList:[],
|
||
labelCol: {
|
||
xs: { span: 24 },
|
||
sm: { span: 8 },
|
||
},
|
||
wrapperCol: {
|
||
xs: { span: 24 },
|
||
sm: { span: 16 },
|
||
},
|
||
refKeys: ['accountDataTable', ],
|
||
activeKey: 'accountDataTable',
|
||
accountTable: {
|
||
loading: false,
|
||
dataSource: [],
|
||
columns: [
|
||
{ title: '销售单据编号',key: 'billNumber',width: '20%', type: FormTypes.input, readonly: true },
|
||
{ title: '应收欠款',key: 'needDebt', width: '10%', type: FormTypes.inputNumber, statistics: true, readonly: true },
|
||
{ title: '已收欠款', key: 'finishDebt', width: '10%', type: FormTypes.inputNumber, statistics: true, readonly: true },
|
||
{ title: '本次收款',key: 'eachAmount', width: '10%', type: FormTypes.inputNumber, statistics: true, placeholder: '请输入${title}',
|
||
validateRules: [{ required: true, message: '${title}不能为空' }]
|
||
},
|
||
{ title: '备注',key: 'remark', width: '20%', type: FormTypes.input, placeholder: '请输入${title}'}
|
||
]
|
||
},
|
||
confirmLoading: false,
|
||
validatorRules:{
|
||
organId:{
|
||
rules: [{ required: true, message: '请选择客户!' }]
|
||
},
|
||
billTime:{
|
||
rules: [{ required: true, message: '请选择单据日期!' }]
|
||
},
|
||
accountId:{
|
||
rules: [{ required: true, message: '请选择收款账户!' }]
|
||
},
|
||
discountMoney:{
|
||
rules: [{ required: true, message: '请输入优惠金额!' }]
|
||
}
|
||
},
|
||
url: {
|
||
add: '/accountHead/addAccountHeadAndDetail',
|
||
edit: '/accountHead/updateAccountHeadAndDetail',
|
||
detailList: '/accountItem/getDetailList'
|
||
}
|
||
}
|
||
},
|
||
created () {
|
||
},
|
||
methods: {
|
||
//调用完edit()方法之后会自动调用此方法
|
||
editAfter() {
|
||
this.billStatus = '0'
|
||
if (this.action === 'add') {
|
||
this.addInit(this.prefixNo)
|
||
this.fileList = []
|
||
} else {
|
||
this.model.billTime = this.model.billTimeStr
|
||
this.$nextTick(() => {
|
||
this.form.setFieldsValue(pick(this.model,'organId', 'handsPersonId', 'billTime', 'billNo', 'remark',
|
||
'accountId', 'totalPrice', 'discountMoney', 'changeAmount'))
|
||
});
|
||
this.fileList = this.model.fileName
|
||
// 加载子表数据
|
||
let params = {
|
||
headerId: this.model.id
|
||
}
|
||
let url = this.readOnly ? this.url.detailList : this.url.detailList;
|
||
this.requestSubTableData(url, params, this.accountTable);
|
||
}
|
||
this.initSystemConfig()
|
||
this.initCustomer()
|
||
this.initPerson()
|
||
this.initAccount()
|
||
this.initQuickBtn()
|
||
},
|
||
//提交单据时整理成formData
|
||
classifyIntoFormData(allValues) {
|
||
let totalPrice = 0
|
||
let billMain = Object.assign(this.model, allValues.formValue)
|
||
let detailArr = allValues.tablesValue[0].values
|
||
billMain.type = '收款'
|
||
for(let item of detailArr){
|
||
totalPrice += item.eachAmount-0
|
||
}
|
||
billMain.totalPrice = totalPrice
|
||
if(this.fileList && this.fileList.length > 0) {
|
||
billMain.fileName = this.fileList
|
||
}
|
||
if(this.model.id){
|
||
billMain.id = this.model.id
|
||
}
|
||
billMain.status = this.billStatus
|
||
return {
|
||
info: JSON.stringify(billMain),
|
||
rows: JSON.stringify(detailArr),
|
||
}
|
||
},
|
||
handleClickAdd() {
|
||
let organId = this.form.getFieldValue('organId')
|
||
if(organId){
|
||
this.$refs.debtBillList.show(organId, '出库', '销售', '客户', "")
|
||
this.$refs.debtBillList.title = "请选择销售欠款单据"
|
||
} else {
|
||
this.$message.warning('请选择客户!');
|
||
}
|
||
},
|
||
handleClear() {
|
||
this.accountTable.dataSource = []
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
<style scoped>
|
||
.action-button {
|
||
margin-bottom: 8px;
|
||
}
|
||
.gap {
|
||
padding-left: 8px;
|
||
}
|
||
</style> |