|
@@ -10,7 +10,7 @@
|
|
|
:page-query="{ 'couldEdit': true, 'couldBack': true }" />
|
|
|
<MoreSearchBar business="MAJOR_BUSINESS" @fliterSearch="fliterSearch" @resetParams="resetParams"
|
|
|
:listQuery="listQuery" :nodeCode="false" :financial="false" :clientManager="false" :businessObjectType="false"
|
|
|
- :department="false"></MoreSearchBar>
|
|
|
+ :department="false" :clientName="false"></MoreSearchBar>
|
|
|
</template>
|
|
|
<parentTable :data="pageData.records" slot="table" style="width: 100%;">
|
|
|
<el-table-column label="订单名称" align="center" show-overflow-tooltip width='300'>
|
|
@@ -193,7 +193,7 @@
|
|
|
<el-form-item label="计划开票日期:" prop="planMakeDate"
|
|
|
:rules="{ required: true, message: '计划开票日期不能为空', trigger: 'blur' }" label-width="140px"
|
|
|
class="postInfo-container-item">
|
|
|
- <el-date-picker v-model="invoice.planMakeDate" type="date" placeholder="选择日期" style="width:206px">
|
|
|
+ <el-date-picker v-model="invoice.planMakeDate" type="date" placeholder="选择日期" value-format="yyyy-MM-dd" style="width:206px">
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -877,7 +877,26 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
cleanFinanceInvoiceForm() {
|
|
|
-
|
|
|
+ this.$refs.invoice.resetFields();
|
|
|
+ this.invoice = {
|
|
|
+ id: null,
|
|
|
+ orderFundId: this.invoice.orderFundId,
|
|
|
+ title: null,
|
|
|
+ type: null,
|
|
|
+ taxNo: null,
|
|
|
+ planAmount: null,
|
|
|
+ planMakeDate: null,
|
|
|
+ bankName: null,
|
|
|
+ bankAccount: null,
|
|
|
+ bankAddress: null,
|
|
|
+ bankTel: null,
|
|
|
+ makeItem: null,
|
|
|
+ itemQuantity: null,
|
|
|
+ itemUnit: null,
|
|
|
+ taxRate: null,
|
|
|
+ taxAmount: null,
|
|
|
+ remark: null
|
|
|
+ }
|
|
|
},
|
|
|
invoiceDetail(id) {
|
|
|
this.$api.financeInvoice.detail(id).then(res => {
|