X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fallocations%2Fsupplier_allocation_main.php;h=f13b7593e09e2cff40e7c57ae2c039fdf1cc21a7;hb=a5242af68e65661edb7175412444dce536a7f311;hp=b52f9ada86018edd000c88dc19f89e14790dc8bd;hpb=e000d0b3fb245b02de604356b1f60c65b5f4962f;p=fa-stable.git diff --git a/purchasing/allocations/supplier_allocation_main.php b/purchasing/allocations/supplier_allocation_main.php index b52f9ada..f13b7593 100644 --- a/purchasing/allocations/supplier_allocation_main.php +++ b/purchasing/allocations/supplier_allocation_main.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $path_to_root="../.."; $page_security = 3; include($path_to_root . "/includes/db_pager.inc"); @@ -74,12 +83,12 @@ function alloc_link($row) { return pager_link(_("Allocate"), "/purchasing/allocations/supplier_allocate.php?trans_no=" - .$row["trans_no"] . "&trans_type=" . $row["type"] ); + .$row["trans_no"] . "&trans_type=" . $row["type"], ICON_MONEY ); } function amount_left($row) { - return -$row["Total"]-$row["alloc"]; + return price_format(-$row["Total"]-$row["alloc"]); } function amount_total($row) @@ -99,7 +108,7 @@ $cols = array( _("Transaction Type") => array('fun'=>'systype_name'), _("#") => array('fun'=>'trans_view'), _("Reference"), - _("Date") => array('type'=>'date', 'ord'=>'asc'), + _("Date") => array('name'=>'tran_date', 'type'=>'date', 'ord'=>'asc'), _("Supplier") => array('ord'=>''), _("Currency") => array('align'=>'center'), _("Total") => 'amount', @@ -119,6 +128,7 @@ if (get_post('_ShowSettled_update') || get_post('_supplier_id_update') ) { $table->set_sql($sql); $table->set_columns($cols); } +$table->width = "80%"; start_form(); display_db_pager($table);