X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fview%2Fview_adjustment.php;h=4b94c7c3866332ba0879a66ea809733b92926bcc;hb=209d19db558ad9994095c4e70e76a45d4d343708;hp=6bc5076480c97ef9bde002211158b9c477aad29a;hpb=ebc600101ceab69c06eac4b1bd4d1782af45de05;p=fa-stable.git diff --git a/inventory/view/view_adjustment.php b/inventory/view/view_adjustment.php index 6bc50764..4b94c7c3 100644 --- a/inventory/view/view_adjustment.php +++ b/inventory/view/view_adjustment.php @@ -38,7 +38,7 @@ while ($adjustment = db_fetch($adjustment_items)) { $adjustment_type = get_movement_type($adjustment['person_id']) ; - start_table("$table_style2 width=90%"); + start_table(TABLESTYLE2, "width='90%'"); start_row(); label_cells(_("At Location"), $adjustment['location_name'], "class='tableheader2'"); label_cells(_("Reference"), $adjustment['reference'], "class='tableheader2'", "colspan=6"); @@ -51,7 +51,7 @@ while ($adjustment = db_fetch($adjustment_items)) $header_shown = true; echo "
"; - start_table("$table_style width=90%"); + start_table(TABLESTYLE, "width='90%'"); $th = array(_("Item"), _("Description"), _("Quantity"), _("Units"), _("Unit Cost")); @@ -64,7 +64,7 @@ while ($adjustment = db_fetch($adjustment_items)) label_cell($adjustment['description']); qty_cell($adjustment['qty'], false, get_qty_dec($adjustment['stock_id'])); label_cell($adjustment['units']); - amount_cell($adjustment['standard_cost']); + amount_decimal_cell($adjustment['standard_cost']); end_row(); } @@ -72,5 +72,5 @@ end_table(1); is_voided_display(ST_INVADJUST, $trans_no, _("This adjustment has been voided.")); -end_page(true); +end_page(true, false, false, ST_INVADJUST, $trans_no); ?> \ No newline at end of file