X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fcredit_note_entry.php;h=5d2ebb8d4ea17455f567d06cdc76af43ff609413;hb=af78fbb535a6fedbc2eb70a26ddc39739be2b986;hp=7dcc461dd3c132541447de6df5d96c1451bf58c0;hpb=80dd97a37f674cc3691fa04af4c29607067566b2;p=fa-stable.git diff --git a/sales/credit_note_entry.php b/sales/credit_note_entry.php index 7dcc461d..5d2ebb8d 100644 --- a/sales/credit_note_entry.php +++ b/sales/credit_note_entry.php @@ -61,14 +61,14 @@ if (list_updated('branch_id')) { if (isset($_GET['AddedID'])) { $credit_no = $_GET['AddedID']; - $trans_type = 11; + $trans_type = ST_CUSTCREDIT; display_notification_centered(sprintf(_("Credit Note # %d has been processed"),$credit_no)); display_note(get_customer_trans_view_str($trans_type, $credit_no, _("&View this credit note")), 0, 1); - display_note(print_document_link($credit_no, _("&Print This Credit Invoice"), true, 11),0, 1); - display_note(print_document_link($credit_no, _("&Email This Credit Invoice"), true, 11, false, "", "", 1),0, 1); + display_note(print_document_link($credit_no, _("&Print This Credit Invoice"), true, ST_CUSTCREDIT),0, 1); + display_note(print_document_link($credit_no, _("&Email This Credit Invoice"), true, ST_CUSTCREDIT, false, "", "", 1),0, 1); display_note(get_gl_view_str($trans_type, $credit_no, _("View the GL &Journal Entries for this Credit Note"))); @@ -143,7 +143,7 @@ function can_process() display_error( _("You must enter a reference.")); set_focus('ref'); $input_error = 1; - } elseif (!is_new_reference($_POST['ref'], 11)) { + } elseif (!is_new_reference($_POST['ref'], ST_CUSTCREDIT)) { display_error( _("The entered reference is already in use.")); set_focus('ref'); $input_error = 1;