修改财务单据的往来单位的描述

This commit is contained in:
季圣华
2021-06-27 23:35:04 +08:00
parent 7af7c3cac0
commit 5df8c12e43
5 changed files with 10 additions and 10 deletions

View File

@@ -119,7 +119,7 @@
return parseInt(index)+1; return parseInt(index)+1;
} }
}, },
{ title: '付款单位', dataIndex: 'organName',width:140}, { title: '客户', dataIndex: 'organName',width:140},
{ title: '单据编号', dataIndex: 'billNo',width:160}, { title: '单据编号', dataIndex: 'billNo',width:160},
{ title: '操作员', dataIndex: 'userName',width:80}, { title: '操作员', dataIndex: 'userName',width:80},
{ title: '单据日期 ', dataIndex: 'billTimeStr',width:160}, { title: '单据日期 ', dataIndex: 'billTimeStr',width:160},

View File

@@ -119,7 +119,7 @@
return parseInt(index)+1; return parseInt(index)+1;
} }
}, },
{ title: '收款单位', dataIndex: 'organName',width:140}, { title: '供应商', dataIndex: 'organName',width:140},
{ title: '单据编号', dataIndex: 'billNo',width:160}, { title: '单据编号', dataIndex: 'billNo',width:160},
{ title: '操作员', dataIndex: 'userName',width:80}, { title: '操作员', dataIndex: 'userName',width:80},
{ title: '单据日期 ', dataIndex: 'billTimeStr',width:160}, { title: '单据日期 ', dataIndex: 'billTimeStr',width:160},

View File

@@ -250,7 +250,7 @@
<section ref="print" id="moneyInPrint"> <section ref="print" id="moneyInPrint">
<a-row class="form-row" :gutter="24"> <a-row class="form-row" :gutter="24">
<a-col :span="6"> <a-col :span="6">
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="付款单位"> <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="客户">
<a-input v-decorator="['id']" hidden/> <a-input v-decorator="['id']" hidden/>
{{model.organName}} {{model.organName}}
</a-form-item> </a-form-item>
@@ -304,7 +304,7 @@
<section ref="print" id="moneyOutPrint"> <section ref="print" id="moneyOutPrint">
<a-row class="form-row" :gutter="24"> <a-row class="form-row" :gutter="24">
<a-col :span="6"> <a-col :span="6">
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="收款单位"> <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="供应商">
<a-input v-decorator="['id']" hidden/> <a-input v-decorator="['id']" hidden/>
{{model.organName}} {{model.organName}}
</a-form-item> </a-form-item>

View File

@@ -16,8 +16,8 @@
<a-form :form="form"> <a-form :form="form">
<a-row class="form-row" :gutter="24"> <a-row class="form-row" :gutter="24">
<a-col :lg="6" :md="12" :sm="24"> <a-col :lg="6" :md="12" :sm="24">
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="付款单位"> <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="客户">
<a-select placeholder="选择付款单位" v-decorator="[ 'organId', validatorRules.organId ]" :dropdownMatchSelectWidth="false"> <a-select placeholder="选择客户" v-decorator="[ 'organId', validatorRules.organId ]" :dropdownMatchSelectWidth="false">
<a-select-option v-for="(item,index) in cusList" :key="index" :value="item.id"> <a-select-option v-for="(item,index) in cusList" :key="index" :value="item.id">
{{ item.supplier }} {{ item.supplier }}
</a-select-option> </a-select-option>
@@ -125,7 +125,7 @@
validatorRules:{ validatorRules:{
organId:{ organId:{
rules: [ rules: [
{ required: true, message: '请选择付款单位!' } { required: true, message: '请选择客户!' }
] ]
}, },
handsPersonId:{ handsPersonId:{

View File

@@ -16,8 +16,8 @@
<a-form :form="form"> <a-form :form="form">
<a-row class="form-row" :gutter="24"> <a-row class="form-row" :gutter="24">
<a-col :lg="6" :md="12" :sm="24"> <a-col :lg="6" :md="12" :sm="24">
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="收款单位"> <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="供应商">
<a-select placeholder="选择收款单位" v-decorator="[ 'organId', validatorRules.organId ]" :dropdownMatchSelectWidth="false"> <a-select placeholder="选择供应商" v-decorator="[ 'organId', validatorRules.organId ]" :dropdownMatchSelectWidth="false">
<a-select-option v-for="(item,index) in supList" :key="index" :value="item.id"> <a-select-option v-for="(item,index) in supList" :key="index" :value="item.id">
{{ item.supplier }} {{ item.supplier }}
</a-select-option> </a-select-option>
@@ -125,7 +125,7 @@
validatorRules:{ validatorRules:{
organId:{ organId:{
rules: [ rules: [
{ required: true, message: '请选择收款单位!' } { required: true, message: '请选择供应商!' }
] ]
}, },
handsPersonId:{ handsPersonId:{