Fix for invoice date #2449

This commit is contained in:
James Cole 2019-08-21 04:45:00 +02:00
parent d9a2bd3e5f
commit 92a2404b61
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
2 changed files with 5 additions and 2 deletions

2
public/v1/js/app.js vendored

File diff suppressed because one or more lines are too long

View File

@ -35,7 +35,10 @@
<component
:error="error.payment_date"
v-model="value.payment_date" v-if="this.fields.payment_date" name="payment_date[]" title="Payment date" v-bind:is="dateComponent"></component>
<component v-model="value.invoice_date" v-if="this.fields.invoice_date" name="invoice_date[]" title="Invoice date" v-bind:is="dateComponent"></component>
<component
:error="error.invoice_date"
v-model="value.invoice_date" v-if="this.fields.invoice_date" name="invoice_date[]" title="Invoice date" v-bind:is="dateComponent"></component>
<component
:error="error.internal_reference"