X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fcustomer_delivery.php;h=c160d6d8725979197778f45b0590ab29f7dba620;hb=9561c66909d960cd75bcbb08bae2132f3de7e6da;hp=603ba1d74220e2c7ebee0c478c79adaa3b984a61;hpb=22cecf450b82a45ee299111d093b1da662806a2d;p=fa-stable.git diff --git a/sales/customer_delivery.php b/sales/customer_delivery.php index 603ba1d7..c160d6d8 100644 --- a/sales/customer_delivery.php +++ b/sales/customer_delivery.php @@ -62,6 +62,8 @@ if (isset($_GET['AddedID'])) { hyperlink_params("$path_to_root/sales/inquiry/sales_orders_view.php", _("Select Another Order For Dispatch"), "OutstandingOnly=1"); + hyperlink_params("$path_to_root/admin/attachments.php", _("Add an Attachment"), "filterType=".ST_CUSTDELIVERY."&trans_no=$dispatch_no"); + display_footer_exit(); } elseif (isset($_GET['UpdatedID'])) { @@ -252,11 +254,9 @@ function check_quantities() $min = $itm->qty_done; $max = $itm->quantity; } else { - global $path_to_root; $min = 0; // Fixing floating point problem in PHP. - include_once($path_to_root . "/inventory/includes/db/items_units_db.inc"); - $max = round2($itm->quantity - $itm->qty_done, get_unit_dec($itm->stock_id)); + $max = round2($itm->quantity - $itm->qty_done, get_qty_dec($itm->stock_id)); } if (check_num('Line'.$line, $min, $max)) { @@ -266,7 +266,6 @@ function check_quantities() set_focus('Line'.$line); $ok = 0; } - } if (isset($_POST['Line'.$line.'Desc'])) {