|
|
Pastikan Kombinasi Kode Departemen dan Kode Perusahaan Tersedia Di Dalam Data Format Kode Buget
|
|
Pastikan mengisi setiap kolom dengan format yang benar
|
|
Sistem tidak akan memasukan data jika formatnya tidak sesuai, data dengan bulan, tahun serta kode departemen dan perusahan yang sudah ada di sistem
|
|
|
|
|
FORMAT KODE : |
@php
$count_column = max(1,abs(count($formats)/10));
$count_row = min(count($formats),10);
@endphp
|
@for ($i = 0; $i < $count_column; $i++)
|
No
|
DEPT
|
KODE PT
|
KODE DEPT
|
@endfor
@for ($i = 0; $i < $count_row; $i++)
|
@for ($x = 0; $x < $count_column; $x++)
@php
$index = $i + ($x * 10);
@endphp
@if (isset($formats[$index]))
{{ $index+1 }}
|
{{ $formats[$index]->divisi->name }}
|
{{ implode('-',$formats[$index]->perusahaans->pluck('kode_perusahaan')->toArray()) }}
|
{{ $formats[$index]->divisi->kode_divisi }}
|
|
@endif
@endfor
@endfor
|
|
--}}