set_strings(); //var_dump($focus); if(isset($_REQUEST['record']) && isset($_REQUEST['record'])) { $focus->retrieve_entity_info($_REQUEST['record'],"Invoice"); $focus->id = $_REQUEST['record']; $focus->name=$focus->column_fields['subject']; } if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') { $focus->id = ""; } global $theme; $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; require_once($theme_path.'layout_utils.php'); $log->info("Order detail view"); $xtpl=new XTemplate ('modules/Invoice/DetailView.html'); $xtpl->assign("MOD", $mod_strings); $xtpl->assign("APP", $app_strings); $xtpl->assign("THEME", $theme); $xtpl->assign("IMAGE_PATH", $image_path); $xtpl->assign("PRINT_URL", "phprint.php?jt=".session_id().$GLOBALS['request_string']); if (isset($focus->name)) $xtpl->assign("NAME", $focus->name); else $xtpl->assign("NAME", ""); //get Block 1 Information $block_1_header = getBlockTableHeader("LBL_INVOICE_INFORMATION"); $block_1 = getDetailBlockInformation("Invoice",1,$focus->column_fields); $xtpl->assign("BLOCK1_HEADER", $block_1_header); $xtpl->assign("BLOCK1", $block_1); //get Address Information $block_2_header = getBlockTableHeader("LBL_ADDRESS_INFORMATION"); $block_2 = getDetailBlockInformation("Invoice",2,$focus->column_fields); $xtpl->assign("BLOCK2_HEADER", $block_2_header); $xtpl->assign("BLOCK2", $block_2); //get Description Information $block_3_header = getBlockTableHeader("LBL_DESCRIPTION_INFORMATION"); $block_3 = getDetailBlockInformation("Invoice",3,$focus->column_fields); $xtpl->assign("BLOCK3_HEADER", $block_3_header); $xtpl->assign("BLOCK3", $block_3); //$block_4_header = getBlockTableHeader("LBL_RELATED_PRODUCTS"); $block_4 = getDetailAssociatedProducts('Invoice',$focus); //$xtpl->assign("BLOCK4_HEADER", $block_4_header); $xtpl->assign("BLOCK4", $block_4); $block_6_header = getBlockTableHeader("LBL_TERMS_INFORMATION"); $block_6 = getDetailBlockInformation("Invoice",6,$focus->column_fields); $xtpl->assign("BLOCK6_HEADER", $block_6_header); $xtpl->assign("BLOCK6", $block_6); $block_5 = getDetailBlockInformation("Invoice",5,$focus->column_fields); if(trim($block_5) != '') { $cust_fld = ''; $cust_fld .= '
'; $block_5_header = getBlockTableHeader("LBL_CUSTOM_INFORMATION"); $cust_fld .= $block_5_header; $cust_fld .= ''; $cust_fld .= $block_5; $cust_fld .= '
'; $cust_fld .= '
'; $cust_fld .= '
'; } $xtpl->assign("CUSTOMFIELD", $cust_fld); $xtpl->assign("ID", $_REQUEST['record']); $permissionData = $_SESSION['action_permission_set']; if(isPermitted("Invoice",1,$_REQUEST['record']) == 'yes') { $xtpl->assign("EDITBUTTON",""); $xtpl->assign("DUPLICATEBUTTON",""); } $xtpl->assign("CREATEPDF",""); if(isPermitted("Invoice",2,$_REQUEST['record']) == 'yes') { $xtpl->assign("DELETEBUTTON",""); } $xtpl->parse("main"); $xtpl->out("main"); //Security check for related list global $profile_id; $tab_per_Data = getAllTabsPermission($profile_id); $permissionData = $_SESSION['action_permission_set']; getRelatedLists("Invoice",$focus); echo "
\n"; ?>