1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00

Add payment types #1158

This commit is contained in:
Hillel Coren 2017-01-08 13:14:06 +02:00
parent 6e104d7ebe
commit 1b738b3913
2 changed files with 5 additions and 1 deletions

View File

@ -32,6 +32,8 @@ class PaymentTypesSeeder extends Seeder
array('name' => 'Maestro', 'gateway_type_id' => GATEWAY_TYPE_CREDIT_CARD),
array('name' => 'Solo', 'gateway_type_id' => GATEWAY_TYPE_CREDIT_CARD),
array('name' => 'Switch', 'gateway_type_id' => GATEWAY_TYPE_CREDIT_CARD),
array('name' => 'iZettle', 'gateway_type_id' => GATEWAY_TYPE_CREDIT_CARD),
array('name' => 'Swish', 'gateway_type_id' => GATEWAY_TYPE_BANK_TRANSFER),
];
foreach ($paymentTypes as $paymentType) {
@ -48,4 +50,4 @@ class PaymentTypesSeeder extends Seeder
}
}
}
}

View File

@ -1404,6 +1404,8 @@ $LANG = array(
'payment_type_Maestro' => 'Maestro',
'payment_type_Solo' => 'Solo',
'payment_type_Switch' => 'Switch',
'payment_type_iZettle' => 'iZettle',
'payment_type_Swish' => 'Swish',
// Industries
'industry_Accounting & Legal' => 'Accounting & Legal',