X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fcustomer_credit_invoice.php;h=ff6e45797e0c14534051686c21f71a594f42dfa1;hb=f36a75347f4940099744e978acb5f043785a4fea;hp=a88cdabed2aab5159d5070c458a9aa392b9bd28e;hpb=e0e9bd8bd00ee6d601be62991d5e59fe03d07f80;p=fa-stable.git diff --git a/sales/customer_credit_invoice.php b/sales/customer_credit_invoice.php index a88cdabe..ff6e4579 100644 --- a/sales/customer_credit_invoice.php +++ b/sales/customer_credit_invoice.php @@ -173,7 +173,7 @@ function copy_to_cart() $cart->ship_via = $_POST['ShipperID']; $cart->freight_cost = input_num('ChargeFreightCost'); $cart->document_date = $_POST['CreditDate']; - $cart->Location = $_POST['Location']; + $cart->Location = (isset($_POST['Location']) ? $_POST['Location'] : ""); $cart->Comments = $_POST['CreditText']; if ($_SESSION['Items']->trans_no == 0) $cart->reference = $_POST['ref']; @@ -204,11 +204,13 @@ if (isset($_POST['ProcessCredit']) && can_process()) { if ($new_credit) new_doc_date($_SESSION['Items']->document_date); $credit_no = $_SESSION['Items']->write($_POST['WriteOffGLCode']); - processing_end(); - if ($new_credit) { - meta_forward($_SERVER['PHP_SELF'], "AddedID=$credit_no"); - } else { - meta_forward($_SERVER['PHP_SELF'], "UpdatedID=$credit_no"); + if($credit_no) { + processing_end(); + if ($new_credit) { + meta_forward($_SERVER['PHP_SELF'], "AddedID=$credit_no"); + } else { + meta_forward($_SERVER['PHP_SELF'], "UpdatedID=$credit_no"); + } } }