1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00

fixes for migration

This commit is contained in:
David Bomba 2021-05-03 13:53:57 +10:00
parent f78443e6d9
commit ff888e8cf2
2 changed files with 6 additions and 0 deletions

View File

@ -889,6 +889,8 @@ info("get company");
'created_at' => $invitation->created_at ? Carbon::parse($invitation->created_at)->toDateString() : null,
'updated_at' => $invitation->updated_at ? Carbon::parse($invitation->updated_at)->toDateString() : null,
'deleted_at' => $invitation->deleted_at ? Carbon::parse($invitation->deleted_at)->toDateString() : null,
'email_status' => '',
'email_error' => '',
];
}

View File

@ -4282,6 +4282,10 @@ $LANG = array(
'notification_credit_created_subject' => 'Credit :invoice was created to :client',
'notification_credit_created_subject' => 'Credit :invoice was created for :client',
'migration_create_account_notice' => 'Please ensure you have created an account on the new platform first <a href="https://invoicing.co">here</a> , please ensure that the credentials are <b>identical</b> to your v4 credentials. Once the account has been created, you can start the migration process here.',
'auth' => 'Authentication',
'companies' => 'Select companies for migration',
);
return $LANG;