public update
This commit is contained in:
@@ -344,7 +344,7 @@ export default function PayrollRuns() {
|
||||
label: t('Frequency'),
|
||||
render: (value: string) => (
|
||||
<span className="inline-flex items-center rounded-md bg-blue-50 px-2 py-1 text-xs font-medium text-blue-700 ring-1 ring-inset ring-blue-700/10">
|
||||
{value === 'weekly' ? t('Weekly') : value === 'biweekly' ? t('Bi-Weekly') : t('Monthly')}
|
||||
{value === 'weekly' ? t('Weekly') : value === 'biweekly' ? t('Bi-Weekly') : value === 'semi-monthly' ? t('Semi-Monthly') : t('Monthly')}
|
||||
</span>
|
||||
)
|
||||
},
|
||||
@@ -561,6 +561,7 @@ export default function PayrollRuns() {
|
||||
options: [
|
||||
{ value: 'weekly', label: t('Weekly') },
|
||||
{ value: 'biweekly', label: t('Bi-Weekly') },
|
||||
{ value: 'semi-monthly', label: t('Semi-Monthly') },
|
||||
{ value: 'monthly', label: t('Monthly') }
|
||||
]
|
||||
},
|
||||
@@ -599,7 +600,7 @@ export default function PayrollRuns() {
|
||||
importRoute="hr.payroll-runs.import"
|
||||
parseRoute="hr.payroll-runs.parse"
|
||||
sampleRoute={hasSampleFile ? 'hr.payroll-runs.download.template' : undefined}
|
||||
importNotes={t('Ensure date formats are correct (YYYY-MM-DD). Payroll frequency must be weekly, biweekly, or monthly.')}
|
||||
importNotes={t('Ensure date formats are correct (YYYY-MM-DD). Payroll frequency must be weekly, biweekly, semi-monthly, or monthly.')}
|
||||
modalSize="xl"
|
||||
databaseFields={[
|
||||
{ key: 'title', required: true },
|
||||
|
||||
Reference in New Issue
Block a user