X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fincludes%2Fui%2Fgl_bank_ui.inc;h=1626657694b0abcba8edacb2f3a764e7a1e4e891;hb=b17df731b4bb055c2fdd568bc4be9e5caa0ee07b;hp=d55d7e2f24932b36e8a28f1ccd5fb47870f4da2f;hpb=e8623dd6746abb8eec4eb3ddd583d208e531b8e7;p=fa-stable.git diff --git a/gl/includes/ui/gl_bank_ui.inc b/gl/includes/ui/gl_bank_ui.inc index d55d7e2f..16266576 100644 --- a/gl/includes/ui/gl_bank_ui.inc +++ b/gl/includes/ui/gl_bank_ui.inc @@ -1,5 +1,14 @@ . +***********************************************************************/ function display_bank_header(&$order) { global $table_style2, $Ajax; @@ -13,7 +22,7 @@ function display_bank_header(&$order) bank_accounts_list_row( $payment ? _("From:") : _("To:"), 'bank_account', null, true); - date_row(_("Date:"), 'date_'); + date_row(_("Date:"), 'date_', '', null, 0, 0, 0, null, true); echo ""; // inner table @@ -67,6 +76,10 @@ function display_bank_header(&$order) hidden('PersonDetailID'); } break; + case payment_person_types::QuickEntry() : + quick_entries_list_row(_("Description:"), 'person_id', null, ($payment ? 0 : 1), 1); + amount_row(_("Total Amount"), 'totamount', null, null, "  ".submit('go', _("Go"), false, false, true)); + break; //case payment_person_types::Project() : // dimensions_list_row(_("Dimension:"), 'person_id', $_POST['person_id'], false, null, true); // break; @@ -83,9 +96,10 @@ function display_bank_header(&$order) echo ""; // inner table - bank_trans_types_list_row(_("Type:"), 'type', null); - - ref_row(_("Reference:"), 'ref', '', references::get_next(systypes::bank_payment())); + if (isset($_GET['NewPayment'])) + ref_row(_("Reference:"), 'ref', '', references::get_next(systypes::bank_payment())); + else + ref_row(_("Reference:"), 'ref', '', references::get_next(systypes::bank_deposit())); echo "
"; // inner table @@ -109,13 +123,13 @@ function display_gl_items($title, &$order) if ($dim == 2) $th = array(_("Account Code"), _("Account Description"), _("Dimension")." 1", - _("Dimension")." 2", _("Amount"), _("Memo")); + _("Dimension")." 2", _("Amount"), _("Memo"), ""); else if ($dim == 1) $th = array(_("Account Code"), _("Account Description"), _("Dimension"), - _("Amount"), _("Memo")); + _("Amount"), _("Memo"), ""); else $th = array(_("Account Code"), _("Account Description"), - _("Amount"), _("Memo")); + _("Amount"), _("Memo"), ""); if (count($order->gl_items)) $th[] = ''; @@ -135,12 +149,16 @@ function display_gl_items($title, &$order) label_cell(get_dimension_string($item->dimension_id, true)); if ($dim > 1) label_cell(get_dimension_string($item->dimension2_id, true)); - amount_cell(abs($item->amount)); + //amount_cell(abs($item->amount)); + if ($order->trans_type == systypes::bank_deposit()) + amount_cell(-$item->amount); + else + amount_cell($item->amount); label_cell($item->reference); edit_button_cell("Edit$item->index", _("Edit"), _('Edit document line')); - edit_button_cell("Delete$item->index", _("Delete"), + delete_button_cell("Delete$item->index", _("Delete"), _('Remove line from document')); end_row(); } @@ -212,10 +230,10 @@ function gl_edit_item_controls(&$order, $dim, $Index=null) elseif ($_POST['PayType'] == payment_person_types::WorkOrder()) $_POST['code_id'] = get_company_pref('default_assembly_act'); else { - $_POST['code_id'] = + $_POST['code_id'] = get_company_pref($payment ? 'default_cogs_act':'default_inv_sales_act'); } - gl_all_accounts_list('code_id', null, true, false, true); + gl_all_accounts_list('code_id', null, false, false, true); if ($dim >= 1) dimensions_list_cells(null, 'dimension_id', null, true, " ", false, 1); if ($dim > 1) @@ -231,10 +249,10 @@ function gl_edit_item_controls(&$order, $dim, $Index=null) if ($id != -1) { - edit_button_cell('UpdateItem', _("Update"), - _('Confirm changes')); - edit_button_cell('CancelItemChanges', _("Cancel"), - _('Cancel changes')); + button_cell('UpdateItem', _("Update"), + _('Confirm changes'), ICON_UPDATE); + button_cell('CancelItemChanges', _("Cancel"), + _('Cancel changes'), ICON_CANCEL); set_focus('amount'); } else