0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
modules
/
Quotes
/
[
Home
]
File: EditView.php
<?php /********************************************************************************* * The contents of this file are subject to the SugarCRM Public License Version 1.1.2 * ("License"); You may not use this file except in compliance with the * License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for * the specific language governing rights and limitations under the License. * The Original Code is: SugarCRM Open Source * The Initial Developer of the Original Code is SugarCRM, Inc. * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.; * All Rights Reserved. * Contributor(s): ______________________________________. ********************************************************************************/ /********************************************************************************* * $Header$ * Description: TODO To be written. * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. * All Rights Reserved. * Contributor(s): ______________________________________.. ********************************************************************************/ require_once('Smarty_setup.php'); require_once('data/Tracker.php'); require_once('modules/Quotes/Quotes.php'); require_once('include/CustomFieldUtil.php'); require_once('include/ComboUtil.php'); require_once('include/utils/utils.php'); require_once('include/FormValidationUtil.php'); global $app_strings,$mod_strings,$log,$theme,$currentModule,$current_user; $log->debug("Inside Quote EditView"); $focus = new Quotes(); $smarty = new vtigerCRM_Smarty; //added to fix the issue4600 $searchurl = getBasic_Advance_SearchURL(); $smarty->assign("SEARCH", $searchurl); //4600 ends $currencyid=fetchCurrency($current_user->id); $rate_symbol = getCurrencySymbolandCRate($currencyid); $rate = $rate_symbol['rate']; if(isset($_REQUEST['record']) && $_REQUEST['record'] != '') { $focus->id = $_REQUEST['record']; $focus->mode = 'edit'; $log->debug("Mode is Edit. Quoteid is ".$focus->id); $focus->retrieve_entity_info($_REQUEST['record'],"Quotes"); $focus->name=$focus->column_fields['subject']; } if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') { $smarty->assign("DUPLICATE_FROM", $focus->id); $QUOTE_associated_prod = getAssociatedProducts("Quotes",$focus); $log->debug("Mode is Duplicate. Quoteid to be duplicated is ".$focus->id); $focus->id = ""; $focus->mode = ''; } if(isset($_REQUEST['potential_id']) && $_REQUEST['potential_id'] !='') { $focus->column_fields['potential_id'] = $_REQUEST['potential_id']; $_REQUEST['account_id'] = get_account_info($focus->column_fields['potential_id']); $log->debug("Quotes EditView: Potential Id from the request is ".$_REQUEST['potential_id']); $associated_prod = getAssociatedProducts("Potentials",$focus,$focus->column_fields['potential_id']); } if(isset($_REQUEST['product_id']) && $_REQUEST['product_id'] !='') { $focus->column_fields['product_id'] = $_REQUEST['product_id']; $log->debug("Productid Id from the request is ".$_REQUEST['product_id']); $associated_prod = getAssociatedProducts("Products",$focus,$focus->column_fields['product_id']); $smarty->assign("ASSOCIATEDPRODUCTS", $associated_prod); $smarty->assign("AVAILABLE_PRODUCTS", 'true'); } // Get Account address if vtiger_account is given if(isset($_REQUEST['account_id']) && $_REQUEST['account_id']!='' && $_REQUEST['record']==''){ require_once('modules/Accounts/Accounts.php'); $acct_focus = new Accounts(); $acct_focus->retrieve_entity_info($_REQUEST['account_id'],"Accounts"); $focus->column_fields['bill_city']=$acct_focus->column_fields['bill_city']; $focus->column_fields['ship_city']=$acct_focus->column_fields['ship_city']; //added to fix the issue 4526 $focus->column_fields['bill_pobox']=$acct_focus->column_fields['bill_pobox']; $focus->column_fields['ship_pobox']=$acct_focus->column_fields['ship_pobox']; $focus->column_fields['bill_street']=$acct_focus->column_fields['bill_street']; $focus->column_fields['ship_street']=$acct_focus->column_fields['ship_street']; $focus->column_fields['bill_state']=$acct_focus->column_fields['bill_state']; $focus->column_fields['ship_state']=$acct_focus->column_fields['ship_state']; $focus->column_fields['bill_code']=$acct_focus->column_fields['bill_code']; $focus->column_fields['ship_code']=$acct_focus->column_fields['ship_code']; $focus->column_fields['bill_country']=$acct_focus->column_fields['bill_country']; $focus->column_fields['ship_country']=$acct_focus->column_fields['ship_country']; $log->debug("Accountid Id from the request is ".$_REQUEST['account_id']); } $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; //retreiving the combo values array $comboFieldNames = Array('accounttype'=>'account_type_dom' ,'industry'=>'industry_dom'); $comboFieldArray = getComboArray($comboFieldNames); $disp_view = getView($focus->mode); $mode = $focus->mode; if($disp_view == 'edit_view') $smarty->assign("BLOCKS",getBlocks($currentModule,$disp_view,$mode,$focus->column_fields)); else { $bas_block = getBlocks($currentModule,$disp_view,$mode,$focus->column_fields,'BAS'); $adv_block = getBlocks($currentModule,$disp_view,$mode,$focus->column_fields,'ADV'); $blocks['basicTab'] = $bas_block; if(is_array($adv_block )) $blocks['moreTab'] = $adv_block; $smarty->assign("BLOCKS",$blocks); $smarty->assign("BLOCKS_COUNT",count($blocks)); } $smarty->assign("OP_MODE",$disp_view); $smarty->assign("MODULE",$currentModule); $smarty->assign("SINGLE_MOD",'Quote'); $category = getParentTab(); $smarty->assign("CATEGORY",$category); $log->info("Quote view"); $smarty->assign("MOD", $mod_strings); $smarty->assign("APP", $app_strings); if (isset($focus->name)) $smarty->assign("NAME", $focus->name); else $smarty->assign("NAME", ""); if(isset($cust_fld)) { $log->debug("Custom Field is present"); $smarty->assign("CUSTOMFIELD", $cust_fld); } if($focus->mode == 'edit') { $smarty->assign("UPDATEINFO",updateInfo($focus->id)); $associated_prod = getAssociatedProducts("Quotes",$focus);//getProductDetailsBlockInfo('edit','Quotes',$focus); $smarty->assign("ASSOCIATEDPRODUCTS", $associated_prod); $smarty->assign("MODE", $focus->mode); } elseif(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') { $smarty->assign("ASSOCIATEDPRODUCTS", $QUOTE_associated_prod); $smarty->assign("AVAILABLE_PRODUCTS", 'true'); $smarty->assign("MODE", $focus->mode); } elseif((isset($_REQUEST['potential_id']) && $_REQUEST['potential_id'] != '') || (isset($_REQUEST['product_id']) && $_REQUEST['product_id'] != '')) { $smarty->assign("ASSOCIATEDPRODUCTS", $associated_prod); $smarty->assign("MODE", $focus->mode); //this is to display the Product Details in first row when we create new PO from Product relatedlist if($_REQUEST['return_module'] == 'Products') { $smarty->assign("PRODUCT_ID",$_REQUEST['product_id']); $smarty->assign("PRODUCT_NAME",getProductName($_REQUEST['product_id'])); $smarty->assign("UNIT_PRICE",getUnitPrice($_REQUEST['product_id'])); $smarty->assign("QTY_IN_STOCK",getPrdQtyInStck($_REQUEST['product_id'])); $smarty->assign("VAT_TAX",getProductTaxPercentage("VAT",$_REQUEST['product_id'])); $smarty->assign("SALES_TAX",getProductTaxPercentage("Sales",$_REQUEST['product_id'])); $smarty->assign("SERVICE_TAX",getProductTaxPercentage("Service",$_REQUEST['product_id'])); } } else { $smarty->assign("ROWCOUNT", '1'); } if(isset($_REQUEST['return_module'])) $smarty->assign("RETURN_MODULE", $_REQUEST['return_module']); else $smarty->assign("RETURN_MODULE","Quotes"); if(isset($_REQUEST['return_action'])) $smarty->assign("RETURN_ACTION", $_REQUEST['return_action']); else $smarty->assign("RETURN_ACTION","index"); if(isset($_REQUEST['return_id'])) $smarty->assign("RETURN_ID", $_REQUEST['return_id']); if(isset($_REQUEST['return_viewname'])) $smarty->assign("RETURN_VIEWNAME", $_REQUEST['return_viewname']); $smarty->assign("THEME", $theme); $smarty->assign("IMAGE_PATH", $image_path);$smarty->assign("PRINT_URL", "phprint.php?jt=".session_id().$GLOBALS['request_string']); $smarty->assign("ID", $focus->id); $smarty->assign("CALENDAR_LANG", $app_strings['LBL_JSCALENDAR_LANG']); $smarty->assign("CALENDAR_DATEFORMAT", parse_calendardate($app_strings['NTC_DATE_FORMAT'])); //in create new Quote, get all available product taxes and shipping & Handling taxes if($focus->mode != 'edit') { $tax_details = getAllTaxes('available'); $sh_tax_details = getAllTaxes('available','sh'); } else { $tax_details = getAllTaxes('available','',$focus->mode,$focus->id); $sh_tax_details = getAllTaxes('available','sh','edit',$focus->id); } $smarty->assign("GROUP_TAXES",$tax_details); $smarty->assign("SH_TAXES",$sh_tax_details); $tabid = getTabid("Quotes"); $validationData = getDBValidationData($focus->tab_name,$tabid); $data = split_validationdataArray($validationData); $smarty->assign("VALIDATION_DATA_FIELDNAME",$data['fieldname']); $smarty->assign("VALIDATION_DATA_FIELDDATATYPE",$data['datatype']); $smarty->assign("VALIDATION_DATA_FIELDLABEL",$data['fieldlabel']); $smarty->assign("MODULE", $module); $check_button = Button_Check($module); $smarty->assign("CHECK", $check_button); $smarty->assign("DUPLICATE", $_REQUEST['isDuplicate']); if($focus->mode == 'edit') $smarty->display("Inventory/InventoryEditView.tpl"); else $smarty->display('Inventory/InventoryCreateView.tpl'); ?>