add feature Proses Penawaran Ulang

This commit is contained in:
Andy Chaerudin
2024-10-23 14:25:53 +07:00
parent 5a4cff432a
commit 617e6541fa
13 changed files with 1048 additions and 1 deletions

View File

@@ -94,5 +94,17 @@ function checkKelengkapanDetailKJPP($id)
return $allow;
}
// convert
function convertSlug($slug) {
$words = explode('-', $slug);
foreach ($words as $index => $word) {
$words[$index] = strtoupper($word);
}
return implode(' ', $words);
}
// andy add