72 lines
2.8 KiB
PHP
72 lines
2.8 KiB
PHP
|
|
<?php
|
||
|
|
if (! defined ( 'sugarEntry' ) || ! sugarEntry)
|
||
|
|
die ( 'NotAValidEntryPoint' );
|
||
|
|
|
||
|
|
global $sugar_version, $sugar_config, $current_user, $app_strings, $mod_strings, $current_user, $app_list_strings;
|
||
|
|
require_once ('modules/EcmQuotes/EcmQuote.php');
|
||
|
|
require_once ('include/time.php');
|
||
|
|
|
||
|
|
//add jquery
|
||
|
|
echo '<link rel="stylesheet" type="text/css" href="include/jQuery/jquery-table/jquery.appendGrid-1.3.1.css"/>';
|
||
|
|
echo '<link rel="stylesheet" type="text/css" href="include/jQuery/jquery-ui/themes/base/jquery-ui.css"/>';
|
||
|
|
echo '<script type="text/javascript"
|
||
|
|
src="include/jQuery/jquery-2.1.0.min.js"></script>';
|
||
|
|
echo '<script type="text/javascript"
|
||
|
|
src="include/jQuery/jquery-table/jquery.appendGrid-1.3.1.js"></script>';
|
||
|
|
echo '<script type="text/javascript"
|
||
|
|
src="include/jQuery/jquery-ui/ui/jquery-ui.js"></script>';
|
||
|
|
|
||
|
|
// $cq=$current_user->getPreference('confirm_quotes');
|
||
|
|
|
||
|
|
$new_number = false;
|
||
|
|
$duplicate = false;
|
||
|
|
$focus = new EcmQuote ();
|
||
|
|
|
||
|
|
if (isset ( $_REQUEST ['record'] ) && $_REQUEST['isDuplicate']=="false" ) {
|
||
|
|
$focus->retrieve ( $_REQUEST ['record'] );
|
||
|
|
if (isset ( $focus->id ) && $focus->id != '') {
|
||
|
|
$focus->format_all_fields ();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
else if ($_REQUEST['isDuplicate']=="true") {
|
||
|
|
$new_number=true;
|
||
|
|
$duplicate=true;
|
||
|
|
//get data
|
||
|
|
$focus->retrieve($_REQUEST['return_id']);
|
||
|
|
$focus->register_date = date("d.m.Y");
|
||
|
|
$focus->validtill_date = date("d.m.Y");
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
$new_number=true;
|
||
|
|
//dates
|
||
|
|
$focus->register_date = date("d.m.Y");
|
||
|
|
$focus->validtill_date = date("d.m.Y");
|
||
|
|
//for subpanels??
|
||
|
|
if (isset ( $_REQUEST ['contact_id'] ) && $_REQUEST ['contact_id'] != '' && isset ( $_REQUEST ['contact_name'] ) && $_REQUEST ['contact_name'] != '') {
|
||
|
|
$_REQUEST ['parent_type'] = 'Contacts';
|
||
|
|
$_REQUEST ['parent_name'] = $_REQUEST ['contact_name'];
|
||
|
|
$_REQUEST ['parent_id'] = $_REQUEST ['contact_id'];
|
||
|
|
$OPT ['check_parent_id'] = false;
|
||
|
|
}
|
||
|
|
|
||
|
|
if (isset ( $_REQUEST ['account_id'] ) && $_REQUEST ['account_id'] != '' && isset ( $_REQUEST ['account_name'] ) && $_REQUEST ['account_name'] != '') {
|
||
|
|
$_REQUEST ['parent_type'] = 'Accounts';
|
||
|
|
$_REQUEST ['parent_name'] = $_REQUEST ['account_name'];
|
||
|
|
$_REQUEST ['parent_id'] = $_REQUEST ['account_id'];
|
||
|
|
$OPT ['check_parent_id'] = false;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
require_once ('include/MVC/View/SugarView.php');
|
||
|
|
require_once ('modules/EcmQuotes/views/EditView/view.edit.ecmquotes.php');
|
||
|
|
$edit = new ViewEditEcmQuotes ();
|
||
|
|
$edit->ss = new Sugar_Smarty ();
|
||
|
|
$edit->module = 'EcmQuotes';
|
||
|
|
$edit->bean = $focus;
|
||
|
|
$edit->tplFile = 'include/ECM/EcmViews/EditView/Tabs/EditView.tpl';
|
||
|
|
$edit->preDisplay ();
|
||
|
|
$edit->ss->assign ( "NEW_NUMBER", $new_number );
|
||
|
|
$edit->ss->assign("DUPLICATE", $duplicate);
|
||
|
|
echo $edit->display ();
|
||
|
|
//loading view
|
||
|
|
echo '<link rel="stylesheet" type="text/css" href="modules/EcmQuotes/javascript/helper.css" media="screen" /><div class="loading_panel"></div>';
|