[add] Database and settings

This commit is contained in:
2018-08-13 22:58:49 -06:00
parent b98b4077b4
commit 61eb809204
2 changed files with 30 additions and 0 deletions

View File

@@ -46,6 +46,18 @@ return [
'employee' => [
'codeLength' => '3',
'contractTypes' => array('INTERNO', 'EXTERNO'),
'hoursPerWorkDay' => 8,
'paymentperHour' => 30,
'bonusPerDelivery' => 5,
'perHourBonusDriver' => 10,
'perHourBonusLoader' => 5,
'perHourBonusAux' => 0,
'BaseIsr' => 9,
'extraIsr' => 3,
'taxesAddUp' => true, // If true this will be total/(9 + 3) else they're subtracted separately
'amountForExtraTaxes' => 16000,
'vouchersForAllContractTypes' => false, // Outsourced personal won't get vouchers
'percentOfPaymentForVouchers' => 4,
],
],
];