Fixes for migration designs

This commit is contained in:
David Bomba 2021-05-12 17:28:17 +10:00
parent e63b3cb76a
commit 136e8bf98b
2 changed files with 12 additions and 2 deletions

View File

@ -538,8 +538,14 @@ info("get company");
elseif($design_id == 1) elseif($design_id == 1)
return 2; return 2;
elseif($design_id == 2) elseif($design_id == 2)
return 3;
elseif($design_id == 3)
return 4;
elseif($design_id == 4)
return 1; return 1;
elseif($design_id == 10)
return 2;
return $design_id; return $design_id;
} }

View File

@ -4284,7 +4284,11 @@ $LANG = array(
'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.', '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', 'auth' => 'Authentication',
'companies' => 'Select companies for migration', 'companies' => 'Select companies for migration',
'activity_100' => ':user created recurring invoice :recurring_invoice',
'activity_101' => ':user updated recurring invoice :recurring_invoice',
'activity_102' => ':user archived recurring invoice :recurring_invoice',
'activity_103' => ':user deleted recurring invoice :recurring_invoice',
'activity_104' => ':user restored recurring invoice :recurring_invoice',
); );