X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fvoid_transaction.php;h=55c6a9f0e3bc51c4f46e432e9da43492fff7575b;hb=3ff9ed87cb909f19c8fe3e7dfda5df79d0c01a6c;hp=23cb4237f3e0699ca84103f39b70f95bafb54478;hpb=80dd97a37f674cc3691fa04af4c29607067566b2;p=fa-stable.git diff --git a/admin/void_transaction.php b/admin/void_transaction.php index 23cb4237..55c6a9f0 100644 --- a/admin/void_transaction.php +++ b/admin/void_transaction.php @@ -36,22 +36,22 @@ function exist_transaction($type, $type_no) switch ($type) { - case 0 : // it's a journal entry + case ST_JOURNAL : // it's a journal entry if (!exists_gl_trans($type, $type_no)) return false; break; - case 1 : // it's a payment - case 2 : // it's a deposit - case 4 : // it's a transfer + case ST_BANKPAYMENT : // it's a payment + case ST_BANKDEPOSIT : // it's a deposit + case ST_BANKTRANSFER : // it's a transfer if (!exists_bank_trans($type, $type_no)) return false; break; - case 10 : // it's a customer invoice - case 11 : // it's a customer credit note - case 12 : // it's a customer payment - case 13 : // it's a customer dispatch + case ST_SALESINVOICE : // it's a customer invoice + case ST_CUSTCREDIT : // it's a customer credit note + case ST_CUSTPAYMENT : // it's a customer payment + case ST_CUSTDELIVERY : // it's a customer dispatch if (!exists_customer_trans($type, $type_no)) return false; break; @@ -66,12 +66,12 @@ function exist_transaction($type, $type_no) return false; break; - case 18 : // it's a PO - case 25 : // it's a GRN + case ST_PURCHORDER : // it's a PO + case ST_SUPPRECEIVE : // it's a GRN return false; - case 20 : // it's a suppler invoice - case 21 : // it's a supplier credit note - case 22 : // it's a supplier payment + case ST_SUPPINVOICE : // it's a suppler invoice + case ST_SUPPCREDIT : // it's a supplier credit note + case ST_SUPPAYMENT : // it's a supplier payment if (!exists_supp_trans($type, $type_no)) return false; break; @@ -81,18 +81,18 @@ function exist_transaction($type, $type_no) return false; break; - case 28 : // it's a work order issue + case ST_MANUISSUE : // it's a work order issue if (!exists_work_order_issue($type_no)) return false; break; - case 29 : // it's a work order production + case ST_MANURECEIVE : // it's a work order production if (!exists_work_order_produce($type_no)) return false; break; - case 30: // it's a sales order - case 32: // it's a sales quotation + case ST_SALESORDER: // it's a sales order + case ST_SALESQUOTE: // it's a sales quotation return false; case ST_COSTUPDATE : // it's a stock cost update return false; @@ -135,7 +135,7 @@ function voiding_controls() else { display_warning(_("Are you sure you want to void this transaction ? This action cannot be undone."), 0, 1); - if ($_POST['filterType'] == 0) // GL transaction are not included in get_trans_view_str + if ($_POST['filterType'] == ST_JOURNAL) // GL transaction are not included in get_trans_view_str $view_str = get_gl_view_str($_POST['filterType'],$_POST['trans_no'], _("View Transaction")); else $view_str = get_trans_view_str($_POST['filterType'],$_POST['trans_no'], _("View Transaction"));