Log 2024
03/09/2023 2023-09-03 8:55// Assuming #סוג המסמך# is provided as a variable named $documentType
if (strpos($documentType, “חשבונית מס/קבלה”) !== false) {
return “320”;
} elseif (strpos($documentType, “הזמנה”) !== false) {
return “100”;
} elseif (strpos($documentType, “חשבונית מס”) !== false) {
return “305”;
} elseif (strpos($documentType, “חשבונית זיכוי”) !== false) {
return “330”;
} else {
// Default value when no match found
return ;
}