mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
274 lines
11 KiB
PHP
274 lines
11 KiB
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
/* crmv@161211 */
|
|
require_once('data/Tracker.php');
|
|
require_once('include/CustomFieldUtil.php');
|
|
require_once('include/utils/utils.php');
|
|
|
|
global $app_strings,$mod_strings,$log,$theme,$currentModule,$processMakerView;
|
|
global $table_prefix;
|
|
$focus = CRMEntity::getInstance($currentModule);
|
|
$smarty = new VteSmarty();
|
|
//added to fix the issue4600
|
|
$searchurl = getBasic_Advance_SearchURL();
|
|
$smarty->assign("SEARCH", $searchurl);
|
|
//4600 ends
|
|
|
|
$InventoryUtils = InventoryUtils::getInstance(); // crmv@42024
|
|
|
|
global $current_user;
|
|
$currencyid=fetchCurrency($current_user->id);
|
|
$rate_symbol = getCurrencySymbolandCRate($currencyid);
|
|
$rate = $rate_symbol['rate'];
|
|
|
|
if (!$processMakerView) {
|
|
if(isset($_REQUEST['record']) && $_REQUEST['record'] != '')
|
|
{
|
|
$focus->id = $_REQUEST['record'];
|
|
$focus->mode = 'edit';
|
|
$focus->retrieve_entity_info($_REQUEST['record'],"PurchaseOrder");
|
|
$focus->name=$focus->column_fields['subject'];
|
|
}
|
|
if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') {
|
|
$duplicate_from = $focus->id; //crmv@38845
|
|
$smarty->assign("DUPLICATE_FROM", $focus->id);
|
|
$PO_final_details = $InventoryUtils->getFinalDetails("PurchaseOrder",$focus); //crmv@30721
|
|
$focus->id = "";
|
|
$focus->mode = '';
|
|
}
|
|
}
|
|
if(empty($_REQUEST['record']) && $focus->mode != 'edit'){
|
|
setObjectValuesFromRequest($focus);
|
|
}
|
|
if (!$processMakerView) {
|
|
if(isset($_REQUEST['product_id']) && $_REQUEST['product_id'] !='')
|
|
{
|
|
$focus->column_fields['product_id'] = $_REQUEST['product_id'];
|
|
$log->debug("Purchase Order EditView: Product Id from the request is ".$_REQUEST['product_id']);
|
|
$final_details = $InventoryUtils->getFinalDetails("Products",$focus,$focus->column_fields['product_id']); //crmv@30721
|
|
}
|
|
if(!empty($_REQUEST['parent_id']) && !empty($_REQUEST['return_module']))
|
|
{
|
|
if ($_REQUEST['return_module'] == 'Services') {
|
|
$focus->column_fields['product_id'] = $_REQUEST['parent_id'];
|
|
$log->debug("Service Id from the request is ".$_REQUEST['parent_id']);
|
|
$final_details = $InventoryUtils->getFinalDetails("Services",$focus,$focus->column_fields['product_id']); //crmv@30721
|
|
}
|
|
}
|
|
|
|
// Get vte_vendor address if vte_vendorid is given
|
|
if(isset($_REQUEST['vendor_id']) && $_REQUEST['vendor_id'] != '' && is_numeric($_REQUEST['vendor_id']) && $_REQUEST['record'] == ''){ //crmv@160371
|
|
$vend_focus = CRMEntity::getInstance('Vendors');
|
|
$vend_focus->retrieve_entity_info($_REQUEST['vendor_id'],"Vendors",true);
|
|
$focus->column_fields['bill_city']=$vend_focus->column_fields['city'];
|
|
$focus->column_fields['ship_city']=$vend_focus->column_fields['city'];
|
|
$focus->column_fields['bill_street']=$vend_focus->column_fields['street'];
|
|
$focus->column_fields['ship_street']=$vend_focus->column_fields['street'];
|
|
$focus->column_fields['bill_state']=$vend_focus->column_fields['state'];
|
|
$focus->column_fields['ship_state']=$vend_focus->column_fields['state'];
|
|
$focus->column_fields['bill_code']=$vend_focus->column_fields['postalcode'];
|
|
$focus->column_fields['ship_code']=$vend_focus->column_fields['postalcode'];
|
|
$focus->column_fields['bill_country']=$vend_focus->column_fields['country'];
|
|
$focus->column_fields['ship_country']=$vend_focus->column_fields['country'];
|
|
$focus->column_fields['bill_pobox']=$vend_focus->column_fields['pobox'];
|
|
$focus->column_fields['ship_pobox']=$vend_focus->column_fields['pobox'];
|
|
}
|
|
}
|
|
$theme_path="themes/".$theme."/";
|
|
$image_path=$theme_path."images/";
|
|
|
|
$disp_view = getView($focus->mode);
|
|
//crmv@9434
|
|
$mode = $focus->mode;
|
|
//crmv@9434 end
|
|
|
|
// crmv@104568
|
|
$panelid = getCurrentPanelId($currentModule);
|
|
$smarty->assign("PANELID", $panelid);
|
|
$panelsAndBlocks = getPanelsAndBlocks($currentModule);
|
|
$smarty->assign("PANEL_BLOCKS", Zend_Json::encode($panelsAndBlocks));
|
|
if ($InventoryUtils) {
|
|
$binfo = $InventoryUtils->getInventoryBlockInfo($currentModule);
|
|
$smarty->assign('PRODBLOCKINFO', $binfo);
|
|
}
|
|
|
|
$smarty->assign("BLOCKS",getBlocks($currentModule,$disp_view,$mode,$focus->column_fields,'',$blockVisibility)); //crmv@99316
|
|
$smarty->assign('BLOCKVISIBILITY', $blockVisibility); //crmv@99316
|
|
// crmv@104568
|
|
|
|
$smarty->assign("OP_MODE",$disp_view);
|
|
|
|
$smarty->assign("MODULE",$currentModule);
|
|
$smarty->assign("SINGLE_MOD",'PurchaseOrder');
|
|
$category = getParentTab();
|
|
$smarty->assign("CATEGORY",$category);
|
|
|
|
|
|
$smarty->assign("MOD", $mod_strings);
|
|
$smarty->assign("APP", $app_strings);
|
|
|
|
$log->info("Order view");
|
|
|
|
if (isset($focus->name)) $smarty->assign("NAME", $focus->name);
|
|
else $smarty->assign("NAME", "");
|
|
|
|
if($focus->mode == 'edit')
|
|
{
|
|
$smarty->assign("UPDATEINFO",updateInfo($focus->id));
|
|
$smarty->assign("MODE", $focus->mode);
|
|
$final_details = $InventoryUtils->getFinalDetails("PurchaseOrder",$focus); //crmv@30721
|
|
}
|
|
elseif(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true')
|
|
{
|
|
$smarty->assign("MODE", $focus->mode);
|
|
$final_details = $PO_final_details; //crmv@30721
|
|
}
|
|
elseif((isset($_REQUEST['product_id']) && $_REQUEST['product_id'] != '')) {
|
|
$InvTotal = getInventoryTotal($_REQUEST['return_module'],$_REQUEST['return_id']);
|
|
$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",vtlib_purify($_REQUEST['product_id']));
|
|
$smarty->assign("PRODUCT_NAME",getProductName($_REQUEST['product_id']));
|
|
$smarty->assign("UNIT_PRICE",vtlib_purify($_REQUEST['product_id']));
|
|
$smarty->assign("QTY_IN_STOCK",$InventoryUtils->getPrdQtyInStck($_REQUEST['product_id'])); // crmv@42024
|
|
$smarty->assign("VAT_TAX",$InventoryUtils->getProductTaxPercentage("VAT",$_REQUEST['product_id']));
|
|
$smarty->assign("SALES_TAX",$InventoryUtils->getProductTaxPercentage("Sales",$_REQUEST['product_id']));
|
|
$smarty->assign("SERVICE_TAX",$InventoryUtils->getProductTaxPercentage("Service",$_REQUEST['product_id']));
|
|
$smarty->assign("row_no",1); //crmv@47104
|
|
}
|
|
}
|
|
|
|
if(isset($cust_fld))
|
|
{
|
|
$smarty->assign("CUSTOMFIELD", $cust_fld);
|
|
}
|
|
|
|
if(isset($_REQUEST['return_module'])) $smarty->assign("RETURN_MODULE", vtlib_purify($_REQUEST['return_module']));
|
|
else $smarty->assign("RETURN_MODULE","PurchaseOrder");
|
|
if(isset($_REQUEST['return_action'])) $smarty->assign("RETURN_ACTION", vtlib_purify($_REQUEST['return_action']));
|
|
if(isset($_REQUEST['return_id'])) $smarty->assign("RETURN_ID", vtlib_purify($_REQUEST['return_id']));
|
|
if (isset($_REQUEST['return_viewname'])) $smarty->assign("RETURN_VIEWNAME", vtlib_purify($_REQUEST['return_viewname']));
|
|
$smarty->assign("THEME", $theme);
|
|
$smarty->assign("IMAGE_PATH", $image_path);
|
|
$smarty->assign("MODULE","PurchaseOrder");
|
|
$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']));
|
|
|
|
//crmv@30721
|
|
if (empty($final_details)) {
|
|
$final_details = $InventoryUtils->getFinalDetails($currentModule, $focus);
|
|
}
|
|
$smarty->assign("FINAL_DETAILS", $final_details);
|
|
//crmv@30721e
|
|
|
|
// crmv@83877 crmv@112297
|
|
// Field Validation Information
|
|
$tabid = getTabid($currentModule);
|
|
$otherInfo = array();
|
|
$validationData = getDBValidationData($focus->tab_name,$tabid,$otherInfo,$focus); //crmv@96450
|
|
$validationArray = split_validationdataArray($validationData, $otherInfo);
|
|
$smarty->assign("VALIDATION_DATA_FIELDNAME",$validationArray['fieldname']);
|
|
$smarty->assign("VALIDATION_DATA_FIELDDATATYPE",$validationArray['datatype']);
|
|
$smarty->assign("VALIDATION_DATA_FIELDLABEL",$validationArray['fieldlabel']);
|
|
$smarty->assign("VALIDATION_DATA_FIELDUITYPE",$validationArray['fielduitype']);
|
|
$smarty->assign("VALIDATION_DATA_FIELDWSTYPE",$validationArray['fieldwstype']);
|
|
// crmv@83877e crmv@112297e
|
|
|
|
//crmv@45699 crmv@104568
|
|
if (method_exists($focus, 'getEditTabs')) {
|
|
$smarty->assign("EDITTABS", $focus->getEditTabs());
|
|
}
|
|
//crmv@45699e crmv@104568e
|
|
|
|
// crmv@140887
|
|
// $check_button = Button_Check($module);
|
|
// $smarty->assign("CHECK", $check_button);
|
|
// crmv@140887e
|
|
|
|
$smarty->assign("DUPLICATE",vtlib_purify($_REQUEST['isDuplicate']));
|
|
|
|
global $adb;
|
|
// Module Sequence Numbering
|
|
$mod_seq_field = getModuleSequenceField($currentModule);
|
|
if($focus->mode != 'edit' && $mod_seq_field != null) {
|
|
$autostr = getTranslatedString('MSG_AUTO_GEN_ON_SAVE');
|
|
//crmv@154715
|
|
if ($focus->isBUMCInstalled($currentModule)) {
|
|
$smarty->assign("MOD_SEQ_ID",$autostr);
|
|
} else {
|
|
//crmv@154715e
|
|
$mod_seq_string = $adb->pquery("SELECT prefix, cur_id from ".$table_prefix."_modentity_num where semodule = ? and active=1",array($currentModule));
|
|
$mod_seq_prefix = $adb->query_result($mod_seq_string,0,'prefix');
|
|
$mod_seq_no = $adb->query_result($mod_seq_string,0,'cur_id');
|
|
if ($adb->num_rows($mod_seq_string) == 0 || $focus->checkModuleSeqNumber($focus->table_name, $mod_seq_field['column'], $mod_seq_prefix.$mod_seq_no)) {
|
|
//crmv@122082
|
|
$error_str = getTranslatedString('LBL_DUPLICATE').' '.getTranslatedString($mod_seq_field['label'],$currentModule).'. '.sprintf(getTranslatedString('LBL_CLICK_TO_CONFIGURE_MODENTITYNUM'),'index.php?module=Settings&action=CustomModEntityNo&parenttab=Settings&selmodule='.$currentModule,getTranslatedString('LBL_HERE'),getTranslatedString($mod_seq_field['label'],$currentModule));
|
|
$smarty->assign("ERROR_STR",$error_str);
|
|
//crmv@122082e
|
|
} else {
|
|
$smarty->assign("MOD_SEQ_ID",$autostr);
|
|
}
|
|
} //crmv@154715
|
|
} else {
|
|
$smarty->assign("MOD_SEQ_ID", $focus->column_fields[$mod_seq_field['name']]);
|
|
}
|
|
// END
|
|
|
|
$smarty->assign("CURRENCIES_LIST", $InventoryUtils->getAllCurrencies());
|
|
//crmv@38845
|
|
if($focus->mode == 'edit') {
|
|
$inventory_cur_info = $InventoryUtils->getInventoryCurrencyInfo('PurchaseOrder', $focus->id);
|
|
$smarty->assign("INV_CURRENCY_ID", $inventory_cur_info['currency_id']);
|
|
} elseif($_REQUEST['isDuplicate'] == 'true') {
|
|
$inventory_cur_info = $InventoryUtils->getInventoryCurrencyInfo('PurchaseOrder', $duplicate_from);
|
|
$smarty->assign("INV_CURRENCY_ID", $inventory_cur_info['currency_id']);
|
|
} else {
|
|
$smarty->assign("INV_CURRENCY_ID", $currencyid);
|
|
}
|
|
//crmv@38845e
|
|
|
|
// crmv@43864
|
|
if ($_REQUEST['hide_button_list'] == '1') {
|
|
$smarty->assign('HIDE_BUTTON_LIST', '1');
|
|
}
|
|
// crmv@43864e
|
|
|
|
$smarty->assign('FIELDHELPINFO', vtlib_getFieldHelpInfo($currentModule));
|
|
|
|
//crmv@57221
|
|
$CU = CRMVUtils::getInstance();
|
|
$smarty->assign("OLD_STYLE", $CU->getConfigurationLayout('old_style'));
|
|
//crmv@57221e
|
|
|
|
//crmv@124836
|
|
if ($_REQUEST['mass_edit_mode'] == '1') {
|
|
$smarty->assign('MASS_EDIT','1');
|
|
}
|
|
//crmv@124836e
|
|
|
|
//crmv@100495
|
|
require_once('modules/Settings/ProcessMaker/ProcessMakerUtils.php');
|
|
$PMUtils = ProcessMakerUtils::getInstance();
|
|
if ($PMUtils->showRunProcessesButton($currentModule, $focus->id)) $smarty->assign('SHOW_RUN_PROCESSES_BUTTON',true);
|
|
//crmv@100495e
|
|
|
|
//crmv@112297 crmv@134058
|
|
if ($_REQUEST['disable_conditionals'] != '1') {
|
|
$conditionalsFocus = CRMEntity::getInstance('Conditionals');
|
|
$condFields = array();
|
|
$smarty->assign('ENABLE_CONDITIONALS', $conditionalsFocus->existsConditionalPermissions($currentModule, $focus, $condFields));
|
|
$smarty->assign('CONDITIONAL_FIELDS', $condFields);
|
|
}
|
|
//crmv@112297e crmv@134058e
|
|
|
|
$smarty->assign('SHOWPROTAB', !$processMakerView);
|
|
|
|
$smarty->display('Inventory/InventoryEditView.tpl'); |