Merge pull request #3565 from maroux/fix-monthly-date

Fix update monthly_payment_date using the API
This commit is contained in:
James Cole
2020-07-16 04:14:23 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ class AccountStoreRequest extends Request
'opening_balance' => $this->string('opening_balance'), 'opening_balance' => $this->string('opening_balance'),
'opening_balance_date' => $this->date('opening_balance_date'), 'opening_balance_date' => $this->date('opening_balance_date'),
'cc_type' => $this->string('credit_card_type'), 'cc_type' => $this->string('credit_card_type'),
'cc_Monthly_payment_date' => $this->string('monthly_payment_date'), 'cc_monthly_payment_date' => $this->string('monthly_payment_date'),
'notes' => $this->nlString('notes'), 'notes' => $this->nlString('notes'),
'interest' => $this->string('interest'), 'interest' => $this->string('interest'),
'interest_period' => $this->string('interest_period'), 'interest_period' => $this->string('interest_period'),

View File

@@ -75,7 +75,7 @@ class AccountUpdateRequest extends Request
'opening_balance' => $this->nullableString('opening_balance'), 'opening_balance' => $this->nullableString('opening_balance'),
'opening_balance_date' => $this->date('opening_balance_date'), 'opening_balance_date' => $this->date('opening_balance_date'),
'cc_type' => $this->nullableString('credit_card_type'), 'cc_type' => $this->nullableString('credit_card_type'),
'cc_Monthly_payment_date' => $this->nullableString('monthly_payment_date'), 'cc_monthly_payment_date' => $this->nullableString('monthly_payment_date'),
'notes' => $this->nullableNlString('notes'), 'notes' => $this->nullableNlString('notes'),
'interest' => $this->nullableString('interest'), 'interest' => $this->nullableString('interest'),
'interest_period' => $this->nullableString('interest_period'), 'interest_period' => $this->nullableString('interest_period'),