@if (in_array('commission', $record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('Komisi') }}
|
@endif
@if (in_array('partner_commission', $record->payroll->company->payrollComponent->automatic_calculation_package_partner))
|
{{ __('Komisi') }}
|
@endif
@if (in_array('salary', $record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('Pendapatan') }}
|
@endif
@if (in_array('salary', $record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('Gaji Pokok') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :salary', [
'salary' => $record->salary == 0 ? '-' : number_format($record->salary),
]) }}
|
@endif
@if (in_array('commission', $record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('Komisi') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
{{ __('(periode: :start_date - :end_date)', [
'start_date' => \Carbon\Carbon::parse($record->payroll->start_date)->isoFormat('DD MMM YYYY'),
'end_date' => \Carbon\Carbon::parse($record->payroll->end_date)->isoFormat('DD MMM YYYY'),
]) }}
|
@endif
{{ __(':') }}
|
{{ __('Rp. :commission', [
'commission' => $record->commission == 0 ? '-' : number_format($record->commission),
]) }}
|
@endif
@if (in_array('partner_commission', $record->payroll->company->payrollComponent->automatic_calculation_package_partner))
|
{{ __('Komisi') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :partner_commission', [
'partner_commission' => $record->partner_commission == 0 ? '-' : number_format($record->partner_commission),
]) }}
|
@endif
@if (in_array('total_package', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __('Total Paket') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __(':total_package', [
'total_package' => round($record->total_package),
]) }}
|
@endif
@if (in_array('adjustment', $record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('Rapel Karyawan') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
{{ __('(periode: :start_date - :end_date)', [
'start_date' => \Carbon\Carbon::parse($record->payroll->start_date)->isoFormat('DD MMM YYYY'),
'end_date' => \Carbon\Carbon::parse($record->payroll->end_date)->isoFormat('DD MMM YYYY'),
]) }}
|
@endif
{{ __(':') }}
|
{{ __('Rp. :adjustment', [
'adjustment' => $record->adjustment == 0 ? '-' : number_format($record->adjustment),
]) }}
|
@endif
@if (in_array('overtime', $record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('Overtime') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :overtime', [
'overtime' => $record->overtime == 0 ? '-' : number_format($record->overtime),
]) }}
|
@endif
@if (in_array(
'overtime_allowance',
$record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('Tunjangan Lembur dan HLN') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :overtime_allowance', [
'overtime_allowance' => $record->overtime_allowance == 0 ? '-' : number_format($record->overtime_allowance),
]) }}
|
@endif
@if (in_array('leave_bonus', $record->payroll->company->payrollComponent->excel_import_format_non_package_partner))
|
{{ __('Bonus Hari Libur') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
{{ __('(periode: :start_date - :end_date)', [
'start_date' => \Carbon\Carbon::parse($record->payroll->start_date)->isoFormat('DD MMM YYYY'),
'end_date' => \Carbon\Carbon::parse($record->payroll->end_date)->isoFormat('DD MMM YYYY'),
]) }}
|
@endif
{{ __(':') }}
|
{{ __('Rp. :leave_bonus', [
'leave_bonus' => $record->leave_bonus == 0 ? '-' : number_format($record->leave_bonus),
]) }}
|
@endif
@if (in_array(
'another_allowance_or_incentive_bonus',
$record->payroll->company->payrollComponent->excel_import_format_non_package_partner))
|
{{ __('Tunjangan Lain/Insentif') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
{{ __('(periode: :start_date - :end_date)', [
'start_date' => \Carbon\Carbon::parse($record->payroll->start_date)->isoFormat('DD MMM YYYY'),
'end_date' => \Carbon\Carbon::parse($record->payroll->end_date)->isoFormat('DD MMM YYYY'),
]) }}
|
@endif
{{ __(':') }}
|
{{ __('Rp. :another_allowance_or_incentive_bonus', [
'another_allowance_or_incentive_bonus' =>
$record->another_allowance_or_incentive_bonus == 0
? '-'
: number_format($record->another_allowance_or_incentive_bonus),
]) }}
|
@endif
@if (in_array('incentive_add_a', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_a_text', [
'incentive_add_a_text' => $record->incentive_add_a_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_a', [
'incentive_add_a' => $record->incentive_add_a == 0 ? '-' : number_format($record->incentive_add_a),
]) }}
|
@endif
@if (in_array('incentive_add_b', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_b_text', [
'incentive_add_b_text' => $record->incentive_add_b_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_b', [
'incentive_add_b' => $record->incentive_add_b == 0 ? '-' : number_format($record->incentive_add_b),
]) }}
|
@endif
@if (in_array('incentive_add_c', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_c_text', [
'incentive_add_c_text' => $record->incentive_add_c_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_c', [
'incentive_add_c' => $record->incentive_add_c == 0 ? '-' : number_format($record->incentive_add_c),
]) }}
|
@endif
@if (in_array('incentive_add_d', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_d_text', [
'incentive_add_d_text' => $record->incentive_add_d_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_d', [
'incentive_add_d' => $record->incentive_add_d == 0 ? '-' : number_format($record->incentive_add_d),
]) }}
|
@endif
@if (in_array('incentive_add_e', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_e_text', [
'incentive_add_e_text' => $record->incentive_add_e_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_e', [
'incentive_add_e' => $record->incentive_add_e == 0 ? '-' : number_format($record->incentive_add_e),
]) }}
|
@endif
@if (in_array('incentive_add_f', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_f_text', [
'incentive_add_f_text' => $record->incentive_add_f_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_f', [
'incentive_add_f' => $record->incentive_add_f == 0 ? '-' : number_format($record->incentive_add_f),
]) }}
|
@endif
@if (in_array('incentive_add_g', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_g_text', [
'incentive_add_g_text' => $record->incentive_add_g_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_g', [
'incentive_add_g' => $record->incentive_add_g == 0 ? '-' : number_format($record->incentive_add_g),
]) }}
|
@endif
@if (in_array('incentive_add_h', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_h_text', [
'incentive_add_h_text' => $record->incentive_add_h_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_h', [
'incentive_add_h' => $record->incentive_add_h == 0 ? '-' : number_format($record->incentive_add_h),
]) }}
|
@endif
@if (in_array('incentive_add_i', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_i_text', [
'incentive_add_i_text' => $record->incentive_add_i_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_i', [
'incentive_add_i' => $record->incentive_add_i == 0 ? '-' : number_format($record->incentive_add_i),
]) }}
|
@endif
@if (in_array('incentive_add_j', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_j_text', [
'incentive_add_j_text' => $record->incentive_add_j_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_j', [
'incentive_add_j' => $record->incentive_add_j == 0 ? '-' : number_format($record->incentive_add_j),
]) }}
|
@endif
@if (in_array('incentive_add_k', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_k_text', [
'incentive_add_k_text' => $record->incentive_add_k_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_k', [
'incentive_add_k' => $record->incentive_add_k == 0 ? '-' : number_format($record->incentive_add_k),
]) }}
|
@endif
@if (in_array('incentive_add_l', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_l_text', [
'incentive_add_l_text' => $record->incentive_add_l_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_l', [
'incentive_add_l' => $record->incentive_add_l == 0 ? '-' : number_format($record->incentive_add_l),
]) }}
|
@endif
@if (in_array('incentive_add_m', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_m_text', [
'incentive_add_m_text' => $record->incentive_add_m_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_m', [
'incentive_add_m' => $record->incentive_add_m == 0 ? '-' : number_format($record->incentive_add_m),
]) }}
|
@endif
@if (in_array('incentive_add_n', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_n_text', [
'incentive_add_n_text' => $record->incentive_add_n_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_n', [
'incentive_add_n' => $record->incentive_add_n == 0 ? '-' : number_format($record->incentive_add_n),
]) }}
|
@endif
@if (in_array('incentive_add_o', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_add_o_text', [
'incentive_add_o_text' => $record->incentive_add_o_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_add_o', [
'incentive_add_o' => $record->incentive_add_o == 0 ? '-' : number_format($record->incentive_add_o),
]) }}
|
@endif
@if (in_array('incentive_pph_p', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_pph_p_text', [
'incentive_pph_p_text' => $record->incentive_pph_p_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_pph_p', [
'incentive_pph_p' => $record->incentive_pph_p == 0 ? '-' : number_format($record->incentive_pph_p),
]) }}
|
@endif
@if (in_array('incentive_pph_q', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_pph_q_text', [
'incentive_pph_q_text' => $record->incentive_pph_q_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_pph_q', [
'incentive_pph_q' => $record->incentive_pph_q == 0 ? '-' : number_format($record->incentive_pph_q),
]) }}
|
@endif
@if (in_array('incentive_pph_r', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_pph_r_text', [
'incentive_pph_r_text' => $record->incentive_pph_r_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_pph_r', [
'incentive_pph_r' => $record->incentive_pph_r == 0 ? '-' : number_format($record->incentive_pph_r),
]) }}
|
@endif
@if (in_array('incentive_pph_s', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_pph_s_text', [
'incentive_pph_s_text' => $record->incentive_pph_s_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_pph_s', [
'incentive_pph_s' => $record->incentive_pph_s == 0 ? '-' : number_format($record->incentive_pph_s),
]) }}
|
@endif
@if (in_array('incentive_pph_t', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{ __(':incentive_pph_t_text', [
'incentive_pph_t_text' => $record->incentive_pph_t_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :incentive_pph_t', [
'incentive_pph_t' => $record->incentive_pph_t == 0 ? '-' : number_format($record->incentive_pph_t),
]) }}
|
@endif
@if (in_array('total_commission', $record->payroll->company->payrollComponent->automatic_calculation_package_partner))
|
{{ __('Jumlah Komisi') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :total_commission', [
'total_commission' => $record->total_commission == 0 ? '-' : number_format($record->total_commission),
]) }}
|
@endif
@if (in_array('total_income', $record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('Jumlah Pendapatan') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :total_income', [
'total_income' => $record->total_income == 0 ? '-' : number_format($record->total_income),
]) }}
|
@endif
@if (in_array('total_package', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{-- {{ __('Potongan') }} --}}
|
@else
|
{{ __('Potongan') }}
|
@endif
@if (in_array(
'pension_guarantee',
$record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('TK (JHT) 2%') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :pension_guarantee', [
'pension_guarantee' => $record->pension_guarantee == 0 ? '-' : number_format($record->pension_guarantee),
]) }}
|
@endif
@if (in_array('pension_plan', $record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('TK (JP) 1%') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :pension_plan', [
'pension_plan' => $record->pension_plan == 0 ? '-' : number_format($record->pension_plan),
]) }}
|
@endif
@if (in_array('health_cut', $record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('Kesehatan 1%') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :health_cut', [
'health_cut' => $record->health_cut == 0 ? '-' : number_format($record->health_cut),
]) }}
|
@endif
@if (in_array('labor_cut_pph21', $record->payroll->company->payrollComponent->automatic_calculation_package_partner))
|
{{ __('JKK JKM') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :labor_cut_pph21', [
'labor_cut_pph21' => $record->labor_cut_pph21 == 0 ? '-' : number_format($record->labor_cut_pph21),
]) }}
|
@endif
@if (in_array('absent_cut', $record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('Absensi') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :absent_cut', [
'absent_cut' => $record->absent_cut == 0 ? '-' : number_format($record->absent_cut),
]) }}
|
@endif
@if (in_array('deposit', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __('Deposit') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deposit', [
'deposit' => $record->deposit == 0 ? '-' : number_format($record->deposit),
]) }}
|
@endif
@if (in_array('deposit_to', $record->payroll->company->payrollComponent->excel_import_format_deduction) and
round($record->deposit_to) <= 40)
|
{{ __('Deposit Ke') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __(':deposit_to', [
'deposit_to' => round($record->deposit_to),
]) }}
|
@endif
@if (in_array('debt', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __('Pinjaman Mitra') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :debt', [
'debt' => $record->debt == 0 ? '-' : number_format($record->debt),
]) }}
|
@endif
@if (in_array('deduction_cut_a', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_a_text', [
'deduction_cut_a_text' => $record->deduction_cut_a_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_a', [
'deduction_cut_a' => $record->deduction_cut_a == 0 ? '-' : number_format($record->deduction_cut_a),
]) }}
|
@endif
@if (in_array('deduction_cut_b', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_b_text', [
'deduction_cut_b_text' => $record->deduction_cut_b_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_b', [
'deduction_cut_b' => $record->deduction_cut_b == 0 ? '-' : number_format($record->deduction_cut_b),
]) }}
|
@endif
@if (in_array('deduction_cut_c', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_c_text', [
'deduction_cut_c_text' => $record->deduction_cut_c_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_c', [
'deduction_cut_c' => $record->deduction_cut_c == 0 ? '-' : number_format($record->deduction_cut_c),
]) }}
|
@endif
@if (in_array('deduction_cut_d', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_d_text', [
'deduction_cut_d_text' => $record->deduction_cut_d_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_d', [
'deduction_cut_d' => $record->deduction_cut_d == 0 ? '-' : number_format($record->deduction_cut_d),
]) }}
|
@endif
@if (in_array('deduction_cut_e', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_e_text', [
'deduction_cut_e_text' => $record->deduction_cut_e_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_e', [
'deduction_cut_e' => $record->deduction_cut_e == 0 ? '-' : number_format($record->deduction_cut_e),
]) }}
|
@endif
@if (in_array('deduction_cut_f', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_f_text', [
'deduction_cut_f_text' => $record->deduction_cut_f_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_f', [
'deduction_cut_f' => $record->deduction_cut_f == 0 ? '-' : number_format($record->deduction_cut_f),
]) }}
|
@endif
@if (in_array('deduction_cut_g', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_g_text', [
'deduction_cut_g_text' => $record->deduction_cut_g_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_g', [
'deduction_cut_g' => $record->deduction_cut_g == 0 ? '-' : number_format($record->deduction_cut_g),
]) }}
|
@endif
@if (in_array('deduction_cut_h', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_h_text', [
'deduction_cut_h_text' => $record->deduction_cut_h_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_h', [
'deduction_cut_h' => $record->deduction_cut_h == 0 ? '-' : number_format($record->deduction_cut_h),
]) }}
|
@endif
@if (in_array('deduction_cut_i', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_i_text', [
'deduction_cut_i_text' => $record->deduction_cut_i_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_i', [
'deduction_cut_i' => $record->deduction_cut_i == 0 ? '-' : number_format($record->deduction_cut_i),
]) }}
|
@endif
@if (in_array('deduction_cut_j', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_j_text', [
'deduction_cut_j_text' => $record->deduction_cut_j_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_j', [
'deduction_cut_j' => $record->deduction_cut_j == 0 ? '-' : number_format($record->deduction_cut_j),
]) }}
|
@endif
@if (in_array('deduction_cut_pph_k', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_pph_k_text', [
'deduction_cut_pph_k_text' => $record->deduction_cut_pph_k_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_pph_k', [
'deduction_cut_pph_k' => $record->deduction_cut_pph_k == 0 ? '-' : number_format($record->deduction_cut_pph_k),
]) }}
|
@endif
@if (in_array('deduction_cut_pph_l', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_pph_l_text', [
'deduction_cut_pph_l_text' => $record->deduction_cut_pph_l_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_pph_l', [
'deduction_cut_pph_l' => $record->deduction_cut_pph_l == 0 ? '-' : number_format($record->deduction_cut_pph_l),
]) }}
|
@endif
@if (in_array('deduction_cut_pph_m', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_pph_m_text', [
'deduction_cut_pph_m_text' => $record->deduction_cut_pph_m_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_pph_m', [
'deduction_cut_pph_m' => $record->deduction_cut_pph_m == 0 ? '-' : number_format($record->deduction_cut_pph_m),
]) }}
|
@endif
@if (in_array('deduction_cut_pph_n', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_pph_n_text', [
'deduction_cut_pph_n_text' => $record->deduction_cut_pph_n_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_pph_n', [
'deduction_cut_pph_n' => $record->deduction_cut_pph_n == 0 ? '-' : number_format($record->deduction_cut_pph_n),
]) }}
|
@endif
@if (in_array('deduction_cut_pph_o', $record->payroll->company->payrollComponent->excel_import_format_deduction))
|
{{ __(':deduction_cut_pph_o_text', [
'deduction_cut_pph_o_text' => $record->deduction_cut_pph_o_text,
]) }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :deduction_cut_pph_o', [
'deduction_cut_pph_o' => $record->deduction_cut_pph_o == 0 ? '-' : number_format($record->deduction_cut_pph_o),
]) }}
|
@endif
@if (in_array('pph21', $record->payroll->company->payrollComponent->automatic_calculation_tax))
|
{{ __('PPh Pasal 21') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
payroll->company->payrollComponent->excel_import_format_package_partner)) style="color: #dc2626;" @endif>
{{ __('Rp. :pph21', [
'pph21' => $record->pph21 == 0 ? '-' : number_format($record->pph21),
]) }}
|
@endif
@if (in_array('total_cut', $record->payroll->company->payrollComponent->automatic_calculation_general))
@if (in_array('total_package', $record->payroll->company->payrollComponent->excel_import_format_package_partner))
|
{{-- {{ __('Jumlah Potongan') }} --}}
|
{{-- {{ __(':') }} --}}
|
{{-- {{ __('Rp. :total_cut', [
'total_cut' => $record->total_cut == 0 ? '-' : number_format($record->total_cut),
]) }} --}}
|
@else
|
{{ __('Jumlah Potongan') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :total_cut', [
'total_cut' => $record->total_cut == 0 ? '-' : number_format($record->total_cut),
]) }}
|
@endif
@endif
@if (in_array('net_commission', $record->payroll->company->payrollComponent->automatic_calculation_package_partner))
|
{{ __('Komisi Bersih') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :net_commission', [
'net_commission' => $record->net_commission == 0 ? '-' : number_format($record->net_commission),
]) }}
|
@endif
@if (in_array('net_income', $record->payroll->company->payrollComponent->automatic_calculation_non_package_partner))
|
{{ __('Gaji Bersih') }}
|
@if (in_array('period_detail', $record->payroll->company->payrollComponent->header))
|
@endif
{{ __(':') }}
|
{{ __('Rp. :net_income', [
'net_income' => $record->net_income == 0 ? '-' : number_format($record->net_income),
]) }}
|
@endif