0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
modules
/
Invoice
/
[
Home
]
File: Invoice.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: Defines the Account SugarBean Account entity with the necessary * methods and variables. * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. * All Rights Reserved. * Contributor(s): ______________________________________.. ********************************************************************************/ include_once('config.php'); require_once('include/logging.php'); require_once('include/database/PearDatabase.php'); require_once('data/SugarBean.php'); require_once('data/CRMEntity.php'); require_once('include/utils/utils.php'); require_once('user_privileges/default_module_view.php'); // Account is used to store vtiger_account information. class Invoice extends CRMEntity { var $log; var $db; var $table_name = "vtiger_invoice"; var $module_id = "invoiceid"; var $tab_name = Array('vtiger_crmentity','vtiger_invoice','vtiger_invoicebillads','vtiger_invoiceshipads','vtiger_invoicecf'); var $tab_name_index = Array('vtiger_crmentity'=>'crmid','vtiger_invoice'=>'invoiceid','vtiger_invoicebillads'=>'invoicebilladdressid','vtiger_invoiceshipads'=>'invoiceshipaddressid','vtiger_invoicecf'=>'invoiceid'); var $column_fields = Array(); var $sortby_fields = Array('subject','invoice_no','invoicestatus','smownerid','accountname','lastname'); // This is used to retrieve related vtiger_fields from form posts. var $additional_column_fields = Array('assigned_user_name', 'smownerid', 'opportunity_id', 'case_id', 'contact_id', 'task_id', 'note_id', 'meeting_id', 'call_id', 'email_id', 'parent_name', 'member_id' ); // This is the list of vtiger_fields that are in the lists. var $list_fields = Array( 'Invoice No'=>Array('crmentity'=>'crmid'), 'Subject'=>Array('invoice'=>'subject'), 'Sales Order'=>Array('invoice'=>'salesorderid'), 'Status'=>Array('invoice'=>'invoicestatus'), 'Total'=>Array('invoice'=>'total'), 'Assigned To'=>Array('crmentity'=>'smownerid') ); var $list_fields_name = Array( 'Invoice No'=>'', 'Subject'=>'subject', 'Sales Order'=>'salesorder_id', 'Status'=>'invoicestatus', 'Total'=>'hdnGrandTotal', 'Assigned To'=>'assigned_user_id' ); var $list_link_field= 'subject'; var $search_fields = Array( 'Invoice No'=>Array('crmentity'=>'crmid'), 'Subject'=>Array('purchaseorder'=>'subject'), ); var $search_fields_name = Array( 'Invoice No'=>'', 'Subject'=>'subject', ); // This is the list of vtiger_fields that are required. var $required_fields = array("accountname"=>1); //Added these variables which are used as default order by and sortorder in ListView var $default_order_by = 'crmid'; var $default_sort_order = 'ASC'; var $groupTable = Array('vtiger_invoicegrouprelation','invoiceid'); /** Constructor which will set the column_fields in this object */ function Invoice() { $this->log =LoggerManager::getLogger('Invoice'); $this->log->debug("Entering Invoice() method ..."); $this->db = new PearDatabase(); $this->column_fields = getColumnFields('Invoice'); $this->log->debug("Exiting Invoice method ..."); } /** Function to handle the module specific save operations */ function save_module($module) { //Checking if vtiger_salesorderid is present and updating the quote status if($this->column_fields["salesorder_id"] != '') { $so_id = $this->column_fields["salesorder_id"]; $query1 = "update vtiger_salesorder set sostatus='Approved' where salesorderid=?"; $this->db->pquery($query1, array($so_id)); } //in ajax save we should not call this function, because this will delete all the existing product values if($_REQUEST['action'] != 'InvoiceAjax' && $_REQUEST['ajxaction'] != 'DETAILVIEW') { //Based on the total Number of rows we will save the product relationship with this entity saveInventoryProductDetails(&$this, 'Invoice'); } //Added For Custom Invoice Number //Here we Incrementing the new InvoiceNumber if($this->mode != 'edit') { setInventoryInvoiceNumber("increment_invoiceno"); } } /** Function used to get the sort order for Invoice listview * @return string $sorder - first check the $_REQUEST['sorder'] if request value is empty then check in the $_SESSION['INVOICE_SORT_ORDER'] if this session value is empty then default sort order will be returned. */ function getSortOrder() { global $log; $log->debug("Entering getSortOrder() method ..."); if(isset($_REQUEST['sorder'])) $sorder = $_REQUEST['sorder']; else $sorder = (($_SESSION['INVOICE_SORT_ORDER'] != '')?($_SESSION['INVOICE_SORT_ORDER']):($this->default_sort_order)); $log->debug("Exiting getSortOrder() method ..."); return $sorder; } /** Function used to get the order by value for Invoice listview * @return string $order_by - first check the $_REQUEST['order_by'] if request value is empty then check in the $_SESSION['INVOICE_ORDER_BY'] if this session value is empty then default order by will be returned. */ function getOrderBy() { global $log; $log->debug("Entering getOrderBy() method ..."); if (isset($_REQUEST['order_by'])) $order_by = $_REQUEST['order_by']; else $order_by = (($_SESSION['INVOICE_ORDER_BY'] != '')?($_SESSION['INVOICE_ORDER_BY']):($this->default_order_by)); $log->debug("Exiting getOrderBy method ..."); return $order_by; } /** function used to get the name of the current object * @return string $this->name - name of the current object */ function get_summary_text() { global $log; $log->debug("Entering get_summary_text() method ..."); $log->debug("Exiting get_summary_text method ..."); return $this->name; } /** function used to get the list of activities which are related to the invoice * @param int $id - invoice id * @return array - return an array which will be returned from the function GetRelatedList */ function get_activities($id) { global $log,$singlepane_view; $log->debug("Entering get_activities(".$id.") method ..."); global $app_strings; require_once('modules/Calendar/Activity.php'); $focus = new Activity(); $button = ''; if($singlepane_view == 'true') $returnset = '&return_module=Invoice&return_action=DetailView&return_id='.$id; else $returnset = '&return_module=Invoice&return_action=CallRelatedList&return_id='.$id; $query = "SELECT case when (vtiger_users.user_name not like '') then vtiger_users.user_name else vtiger_groups.groupname end as user_name,vtiger_contactdetails.lastname, vtiger_contactdetails.firstname, vtiger_contactdetails.contactid, vtiger_activity.*,vtiger_seactivityrel.*,vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime from vtiger_activity inner join vtiger_seactivityrel on vtiger_seactivityrel.activityid=vtiger_activity.activityid inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid left join vtiger_cntactivityrel on vtiger_cntactivityrel.activityid= vtiger_activity.activityid left join vtiger_contactdetails on vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_activitygrouprelation on vtiger_activitygrouprelation.activityid=vtiger_crmentity.crmid left join vtiger_groups on vtiger_groups.groupname=vtiger_activitygrouprelation.groupname where vtiger_seactivityrel.crmid=".$id." and activitytype='Task' and vtiger_crmentity.deleted=0 and (vtiger_activity.status is not NULL && vtiger_activity.status != 'Completed') and (vtiger_activity.status is not NULL && vtiger_activity.status != 'Deferred')"; $log->debug("Exiting get_activities method ..."); return GetRelatedList('Invoice','Calendar',$focus,$query,$button,$returnset); } /** function used to get the the activity history related to the quote * @param int $id - invoice id * @return array - return an array which will be returned from the function GetHistory */ function get_history($id) { global $log; $log->debug("Entering get_history(".$id.") method ..."); $query = "SELECT vtiger_contactdetails.lastname, vtiger_contactdetails.firstname, vtiger_contactdetails.contactid,vtiger_activity.*,vtiger_seactivityrel.*,vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime,vtiger_crmentity.createdtime, vtiger_crmentity.description, case when (vtiger_users.user_name not like '') then vtiger_users.user_name else vtiger_groups.groupname end as user_name from vtiger_activity inner join vtiger_seactivityrel on vtiger_seactivityrel.activityid=vtiger_activity.activityid inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid left join vtiger_cntactivityrel on vtiger_cntactivityrel.activityid= vtiger_activity.activityid left join vtiger_contactdetails on vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid left join vtiger_activitygrouprelation on vtiger_activitygrouprelation.activityid=vtiger_activity.activityid left join vtiger_groups on vtiger_groups.groupname=vtiger_activitygrouprelation.groupname left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid where vtiger_activity.activitytype='Task' and (vtiger_activity.status = 'Completed' or vtiger_activity.status = 'Deferred') and vtiger_seactivityrel.crmid=".$id." and vtiger_crmentity.deleted = 0"; //Don't add order by, because, for security, one more condition will be added with this query in include/RelatedListView.php $log->debug("Exiting get_history method ..."); return getHistory('Invoice',$query,$id); } /** function used to get the attachments which are related to the invoice * @param int $id - invoice id to which we want to retrieve the attachments and notes * @return array - return an array which will be returned from the function getAttachmentsAndNotes **/ function get_attachments($id) { global $log; $log->debug("Entering get_attachments(".$id.") method ..."); $query = "select vtiger_notes.title,'Notes ' as ActivityType, vtiger_notes.filename, vtiger_attachments.type as FileType,crm2.modifiedtime as lastmodified, vtiger_seattachmentsrel.attachmentsid as attachmentsid, vtiger_notes.notesid as crmid, vtiger_notes.notecontent as description, vtiger_users.user_name from vtiger_notes inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_senotesrel.crmid inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_notes.notesid and crm2.deleted=0 left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid inner join vtiger_users on crm2.smcreatorid= vtiger_users.id where vtiger_crmentity.crmid=".$id; $query .= ' union all '; $query .= "select vtiger_attachments.subject as title ,'Attachments' as ActivityType, vtiger_attachments.name as filename, vtiger_attachments.type as FileType, crm2.modifiedtime as lastmodified, vtiger_attachments.attachmentsid as attachmentsid, vtiger_seattachmentsrel.attachmentsid as crmid, vtiger_attachments.description, vtiger_users.user_name from vtiger_attachments inner join vtiger_seattachmentsrel on vtiger_seattachmentsrel.attachmentsid= vtiger_attachments.attachmentsid inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_seattachmentsrel.crmid inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_attachments.attachmentsid inner join vtiger_users on crm2.smcreatorid= vtiger_users.id where vtiger_crmentity.crmid=".$id; $log->debug("Exiting get_attachments method ..."); return getAttachmentsAndNotes('Invoice',$query,$id); } /** Function used to get the Status history of the Invoice * @param $id - invoice id * @return $return_data - array with header and the entries in format Array('header'=>$header,'entries'=>$entries_list) where as $header and $entries_list are arrays which contains header values and all column values of all entries */ function get_invoicestatushistory($id) { global $log; $log->debug("Entering get_invoicestatushistory(".$id.") method ..."); global $adb; global $mod_strings; global $app_strings; $query = 'select vtiger_invoicestatushistory.*, vtiger_invoice.subject from vtiger_invoicestatushistory inner join vtiger_invoice on vtiger_invoice.invoiceid = vtiger_invoicestatushistory.invoiceid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_invoice.invoiceid where vtiger_crmentity.deleted = 0 and vtiger_invoice.invoiceid = ?'; $result=$adb->pquery($query, array($id)); $noofrows = $adb->num_rows($result); $header[] = $app_strings['Invoice No']; $header[] = $app_strings['LBL_ACCOUNT_NAME']; $header[] = $app_strings['LBL_AMOUNT']; $header[] = $app_strings['LBL_INVOICE_STATUS']; $header[] = $app_strings['LBL_LAST_MODIFIED']; //Getting the field permission for the current user. 1 - Not Accessible, 0 - Accessible //Account Name , Amount are mandatory fields. So no need to do security check to these fields. global $current_user; //If field is accessible then getFieldVisibilityPermission function will return 0 else return 1 $invoicestatus_access = (getFieldVisibilityPermission('Invoice', $current_user->id, 'invoicestatus') != '0')? 1 : 0; $picklistarray = getAccessPickListValues('Invoice'); $invoicestatus_array = ($invoicestatus_access != 1)? $picklistarray['invoicestatus']: array(); //- ==> picklist field is not permitted in profile //Not Accessible - picklist is permitted in profile but picklist value is not permitted $error_msg = ($invoicestatus_access != 1)? 'Not Accessible': '-'; while($row = $adb->fetch_array($result)) { $entries = Array(); $entries[] = $row['invoiceid']; $entries[] = $row['accountname']; $entries[] = $row['total']; $entries[] = (in_array($row['invoicestatus'], $invoicestatus_array))? $row['invoicestatus']: $error_msg; $entries[] = getDisplayDate($row['lastmodified']); $entries_list[] = $entries; } $return_data = Array('header'=>$header,'entries'=>$entries_list); $log->debug("Exiting get_invoicestatushistory method ..."); return $return_data; } // Function to get column name - Overriding function of base class function get_column_value($columname, $fldvalue, $fieldname, $uitype) { if ($columname == 'salesorderid') { if ($fldvalue == '') return null; } return parent::get_column_value($columname, $fldvalue, $fieldname, $uitype); } } ?>