TimeTrex/interface/html5/views/BaseViewController.js

9167 lines
304 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { TTBackboneView } from '@/views/TTBackboneView';
import { TTAPI } from '@/services/TimeTrexClientAPI';
import { FormItemType, WidgetNamesDic } from '@/global/widgets/search_panel/FormItemType'; // TODO: duplicated in merged js files.
import '@/global/widgets/paging/Paging2.js';
import { Global } from '@/global/Global';
import { HtmlTemplatesGlobal } from '@/services/HtmlTemplates';
window.FormItemType = FormItemType; // TODO: Eventually refactor to import only where these are used.
window.WidgetNamesDic = WidgetNamesDic; // TODO: Eventually refactor to import only where these are used.
/* jshint ignore:start */
//Don't check this file for now. Too many issues.
export class BaseViewController extends TTBackboneView {
constructor( options = {} ) {
_.defaults( options, {
real_this: null, //For super call in second level sub class
sub_view_mode: false,
edit_only_mode: false,
can_cache_controller: true, //if allow to cache current controller
permission_id: '',
api: null,
user_generic_data_api: null,
all_columns: [],
display_columns: [],
default_display_columns: [],
script_name: '',
filter_data: null, //current Filter data get from Search panel
temp_basic_filter_data: null,
temp_adv_filter_data: null,
sortData: null, //Current Sort data get from search panel
select_layout: null,
layout_changed: false,
search_panel: null,
grid: null,
context_menu_name: '',
navigation_label: '',
context_menu_array: [],
t_grid_header_array: [],
//Column Selector in search panel
column_selector: null,
sort_by_selector: null,
save_search_as_input: null,
previous_saved_layout_selector: null,
previous_saved_layout_div: null,
need_select_layout_name: '', //Set this when save new layout to choose the new layout
search_fields: null,
basic_search_field_ui_dic: {}, //Save AwesomeBox when they created
adv_search_field_ui_dic: {}, //Save AwesomeBox when they created
edit_view_ui_dic: {},
edit_view_ui_validation_field_dic: {},
edit_view_form_item_dic: {}, //Whole FormItem
edit_view_error_ui_dic: {},
edit_view: null,
edit_view_tab: null,
current_edit_record: null, //Current edit record
refresh_id: null, //Set this to refresh one record in grid view.
navigation: null, // Navigation widget in edit view
is_mass_editing: false, //Set when mass edit
is_viewing: false,
is_viewing_detail: false,
is_edit: false,
is_add: false,
unique_columns: [], //Set when Mass edit, mark which fields need to be disable
linked_fields: [],
mass_edit_record_ids: [], // Mass edit records
edit_view_tabs: [],
refresh_sub_view: false,
parent_key: null, //default filter when search
parent_value: null, //default filter when search
parent_edit_record: null,
total_display_span: null,
paging_widget: null,
paging_widget_2: null, //Put in the bottom of data grid
pager_data: null,
viewId: null,
init_options_complete: false,
no_result_box: null, // No Result Found Black cover when no result in grid
table_name_key: null,
sub_log_view_controller: null,
parent_view_controller: null, //Add this to call parent_view_controll cancel action when cancel from sub view
ui_id: '',
is_changed: false, // Track if modified any fields in edit view
confirm_on_exit: false, //confirm before leaving the edit view even if no changes have been made
edit_view_tpl: '', //Edit view html name
subMenuNavMap: null,
trySetGridSizeWhenTabShow: false, // Set sub view grid size when tab show instead when tab select
copied_record_id: '', // When copy as new, save copied reord's id
custom_field_api: null,
last_select_ids: null,
saving_layout_in_layout_tab: false, //Mark if save layout from Saved and layout tab. if so, don't switch tabs when set values to search panel
need_switch_to_context_menu: false,
show_search_tab: true,
grid_total_width: null,
show_warning_when_validation: false,
pulse_time_dic: false,
edit_view_close_icon: null,
enable_validation: true,
// _required_files: null,
tab_model: null, //Tab definitions and a map to their callbacks.
grid_parent: null,
custom_fields: []
} );
super( options );
}
// getRequiredFiles() {
// //override in child class
// return [];
// }
/**
* When changing this function, you need to look for all occurences of this function because it was needed in several bases
* BaseViewController, HomeViewController, BaseWizardController, QuickPunchBaseViewControler
*
* @returns {Array}
*/
// filterRequiredFiles() {
// Debug.Warn( 'Deprecated requirejs function. Replace usage immediately with webpack loaders.', 'BaseViewController.js', 'BaseViewController', 'filterRequiredFiles', 2 );
//
// var retval = [];
// var required_files;
//
// if ( typeof this._required_files == 'object' ) {
// required_files = this._required_files;
// } else {
// required_files = this.getRequiredFiles();
// }
//
// if ( required_files && required_files[0] ) {
// retval = required_files;
// } else {
// for ( var edition_id in required_files ) {
// if ( Global.getProductEdition() >= edition_id ) {
// retval = retval.concat( required_files[edition_id] );
// }
// }
// }
//
// Debug.Arr( retval, 'RETVAL', 'BaseViewController.js', 'BaseViewController', 'filterRequiredFiles', 10 );
// return retval;
// }
preInit() {
//override in child class
}
initialize( options ) {
Debug.Text( 'INITIALIZE', 'BaseViewController.js', 'BaseViewController', 'initialize', 10 );
Global.setUINotready();
super.initialize( options );
TTPromise.add( 'init', 'init' );
TTPromise.add( 'BaseViewController', 'initialize' );
//trigger readystate update
TTPromise.wait();
var $this = this;
this.layout_changed = false;
// var required_files = this.filterRequiredFiles();
// __non_webpack_require__( required_files, function() { // This is to prevent conflict with the Webpack Node require calls.
// Debug.Warn( 'Deprecated requirejs function. Replace usage immediately with webpack loaders.', 'BaseViewController.js', 'BaseViewController', 'initialize', 2 );
setTimeout(function() { // #2662 This setTimeout is essential in keeping the code flow the same as when this code block has a requirejs callback. Otherwise it causes issues in many areas like Audit logs going blank, as the subview postInit function is called before its set in afterLoadView().
$this.preInit( options );
$this.options = options;
if ( $this.options && Global.isSet( $this.options.can_cache_controller ) ) {
$this.can_cache_controller = $this.options.can_cache_controller;
}
if ( $this.options && Global.isSet( $this.options.edit_only_mode ) ) {
$this.edit_only_mode = $this.options.edit_only_mode;
}
if ( $this.options && Global.isSet( $this.options.sub_view_mode ) ) {
$this.sub_view_mode = $this.options.sub_view_mode;
} else {
$this.sub_view_mode = false;
}
if ( $this.options && Global.isSet( $this.options.parent_view ) ) {
$this.parent_view = $this.options.parent_view;
}
if ( $this.options && Global.isSet( $this.options.parent_view_controller ) ) {
$this.parent_view_controller = $this.options.parent_view_controller;
}
if ( !$this.edit_only_mode ) {
if ( $this.can_cache_controller ) {
if ( !$this.sub_view_mode ) {
LocalCacheData.current_open_primary_controller = $this;
} else {
LocalCacheData.current_open_sub_controller = $this;
}
}
//Reset main container id so it won't duplicate when in sub view. Like Audit view.
var root_container = $( $this.el );
var new_id = root_container.attr( 'id' ) + '_' + Global.getRandomNum();
root_container.attr( 'id', new_id );
$this.el = '#' + new_id;
$this.ui_id = new_id;
$this.user_generic_data_api = TTAPI.APIUserGenericData;
$this.total_display_span = $( $( $this.el ).find( '.total-number-span' )[0] );
//$this shouldn't be displayed as it caused "flashing" of text and it wasn't translated either.
//if ( $this.total_display_span ) {
//$this.total_display_span.text( 'Displaying 0 - 0 of 0 total. Selected: 0' );
//}
//JS load Optimize
if ( LocalCacheData.loadViewRequiredJSReady ) {
//Init paging widget, next step, add widget to UI and bind events in setSelectLayout
if ( LocalCacheData.paging_type === 0 ) {
$this.paging_widget = Global.loadWidgetByName( WidgetNamesDic.PAGING );
} else {
$this.paging_widget = Global.loadWidgetByName( WidgetNamesDic.PAGING_2 );
$this.paging_widget_2 = Global.loadWidgetByName( WidgetNamesDic.PAGING_2 );
$this.paging_widget = $this.paging_widget.Paging2();
$this.paging_widget_2 = $this.paging_widget_2.Paging2();
}
}
} else {
$this.ui_id = Global.getRandomNum();
}
//init all dic or array, or it will extends last viewcontroller's value. Why?
$this.sub_log_view_controller = null;
$this.edit_view_ui_dic = {};
$this.edit_view_ui_validation_field_dic = {};
$this.basic_search_field_ui_dic = {};
$this.adv_search_field_ui_dic = {};
$this.edit_view_tabs = [];
$this.custom_field_api = TTAPI.APICustomField;
$this.initKeyboardEvent(); // register keyboard events if it's a main view
$this.init( options );
$this.postInit( options );
TTPromise.resolve( 'BaseViewController', 'initialize' );
TTPromise.resolve( 'init', 'init' );
}, 1);
}
init() {
//override in child class
}
postInit() {
//override in child class
}
initKeyboardEvent() {
var $this = this;
if ( this.sub_view_mode || this.edit_only_mode ) {
return;
}
// $( this.el ).unbind( 'keydown' ).bind( 'keydown', function( e ) {
//
// if ( e.keyCode === 13 && !$this.search_panel.isCollapsed() ) {
// $this.onSearch();
// }
//
// } );
$( this.el ).unbind( 'keyup' ).bind( 'keydown', function( e ) {
if ( e.keyCode === 13 && $this.search_panel && !$this.search_panel.isCollapsed() ) {
$this.onSearch();
$( ':focus' ).blur(); //Make focus out of current view. pevent search too much when user keep click enter
}
} );
}
//Speical permission check for views, need override
initPermission() {
}
//Set this when setDefault menu
setTotalDisplaySpan() {
if ( !this.total_display_span ) {
return;
}
var totalRows;
var start;
var end;
var grid_selected_id_array = this.getGridSelectIdArray();
var grid_selected_length = 0;
//Uncaught TypeError: Cannot read property 'length' of undefined
if ( grid_selected_id_array ) {
grid_selected_length = grid_selected_id_array.length;
}
var items_pre_page = 100;
if ( LocalCacheData.getLoginUserPreference() ) {
var items_per_page = parseInt( LocalCacheData.getLoginUserPreference().items_per_page );
}
if ( LocalCacheData.paging_type === 0 ) {
if ( this.pager_data ) {
totalRows = this.pager_data.total_rows;
start = 1;
end = this.grid.getData().length;
} else {
totalRows = 0;
start = 0;
end = 0;
}
} else {
if ( this.pager_data ) {
totalRows = this.pager_data.total_rows;
start = 0;
end = 0;
if ( this.pager_data.last_page_number > 1 ) {
if ( !this.pager_data.is_last_page ) {
start = ( this.pager_data.current_page - 1 ) * items_per_page + 1;
end = start + items_per_page - 1;
} else {
start = ( this.pager_data.current_page - 1 ) * items_per_page + 1;
end = totalRows;
}
} else {
start = 1;
end = totalRows;
}
} else {
totalRows = 0;
start = 0;
end = 0;
}
}
//Counting pages can be disabled, in which case totalRows returns FALSE unless the user is on the last page.
var totalInfo = start + ' - ' + end;
if ( totalRows !== false ) {
totalInfo = totalInfo + ' ' + $.i18n._( 'of' ) + ' ' + totalRows + ' ' + $.i18n._( 'total' ) + '.';
}
this.total_display_span.text( $.i18n._( 'Displaying' ) + ' ' + totalInfo + ' [ ' + $.i18n._( 'Selected' ) + ': ' + grid_selected_length + ' ]' );
}
isContextIconDisabled( id ) {
var context_menu_array = ContextMenuManager.getMenuModelByMenuId( this.determineContextMenuMountAttributes().id );
var len = context_menu_array.length;
for ( var i = 0; i < len; i++ ) {
let context_btn = context_menu_array[i];
if ( context_menu_array[i].id === id ) {
if ( context_btn.disabled || ( context_btn.hasOwnProperty( 'visible' ) && !context_btn.visible ) ) {
return true;
} else {
return false;
}
}
}
return true; //Cannot find context menu button, return true as if button is disabled / cannot be used.
}
getViewModeErrorMessage() {
//Change error message depending on if edit context menu icon is available or not.
if ( this.isContextIconDisabled( 'edit' ) ) {
return Global.view_mode_message;
}
return Global.view_mode_message + ', ' + Global.view_mode_edit_message;
}
//Set right click menu for list view grid
initRightClickMenu( target_type ) {
//Error: Object doesn't support property or method 'contextMenu' in /interface/html5/views/BaseViewController.js?v=7.4.6-20141027-132733 line 393
if ( !$.hasOwnProperty( 'contextMenu' ) ) {
return;
}
var $this = this;
var selector = '';
switch ( target_type ) {
case RightClickMenuType.LISTVIEW:
selector = '#gbox_' + this.ui_id + '_grid';
break;
case RightClickMenuType.EDITVIEW:
selector = '#' + this.ui_id + '_edit_view_tab';
break;
case RightClickMenuType.NORESULTBOX:
selector = '#' + this.ui_id + '_no_result_box';
break;
case RightClickMenuType.ABSENCE_GRID:
selector = '#' + this.ui_id + '_absence_grid';
break;
case RightClickMenuType.VIEW_ICON:
selector = '#' + 'view_html';
break;
default:
selector = '#gbox_' + this.ui_id + '_grid';
break;
}
if ( $( selector ).length == 0 ) {
return;
}
var items = this.getRightClickMenuItems();
if ( !items || $.isEmptyObject( items ) ) {
return;
}
$.contextMenu( 'destroy', selector );
$.contextMenu( {
selector: selector,
callback: function( key, options ) {
$this.onContextMenuClick( null, key );
},
onContextMenu: function() {
return false;
},
items: items
} );
}
getRightClickMenuItems() {
var $this = this;
var items = {};
var context_menu_array = ContextMenuManager.getMenuModelByMenuId( this.determineContextMenuMountAttributes().id );
var len = context_menu_array.length;
for ( var i = 0; i < len; i++ ) {
var context_btn = context_menu_array[i];
if ( context_btn.visible === false || context_btn.action_group_header || context_btn.separator || !context_btn.show_on_right_click ) {
continue;
}
var label = Global.htmlDecode( context_btn.label.replace( '<br>', ' ' ) );
var id = context_btn.id;
items[id] = {
name: label,
disabled: function( key ) {
return $this.isContextIconDisabled( key );
}
};
}
return items;
}
//Don't initOptions if edit_only_mode. Do it in sub views
initData() {
var $this = this;
//Work around to init sub view after tab is shown.
Global.removeViewTab( this.viewId );
ProgressBar.showOverlay();
if ( !$this.edit_only_mode ) {
//Various views expect search fields to be built already, such as initOptions() in PunchesViewController or getAllColumns() in ScheduleViewController.
//Because of that we need to wait for resolution of getCustomFields promise to avoid exceptions and breaking views.
TTPromise.wait( 'BaseViewController', 'getCustomFields', function() {
$this.initOptions();
$this.getAllColumns( function() {
$this.initLayout();
} );
} );
//When on a sub view mode tab we want to disable certain context menu buttons of the parent view.
//This is to help prevent users from using context menu buttons for the wrong view and deleting/copying records they did not intend to use.
this.onSubViewModeDisableParentContextMenuButtons();
}
}
initLayout() {
var $this = this;
$this.getAllLayouts( function() {
$this.getDefaultDisplayColumns( function() {
$this.setSelectLayout();
//$this.setGridColumnsWidth(); //This is done in setSelectLayout() and searchDone(), so no point in doing it multiple times.
$this.search();
} );
} );
}
// edit_only_mode call this when open edit view. Not in initData
initOptions() {
}
// TODO: Consolidate id and menu container into one function.
/**
* Determine what id, mount point, and menu type are needed to create the context menu for a specific view/edit view, based on the current view state. Main, Edit View, Sub View etc.
*/
determineContextMenuMountAttributes() {
var return_object = {
id: null,
parent_mount_point: null,
menu_type: null,
parent_id: null
};
// Figure out parent type
/* Be aware that if something is incorrectly matched here, it may try to match with a wrong menu, or existing other menu,
* and thus may have the side effect of closing the wrong menu when a window is closed.
* If that symptom happens, check the matching here.
*/
// You can see an extensive list in setCurrentEditViewState().
if( this.is_add
|| this.is_viewing
|| this.is_viewing_detail //Cannot use just LocalCacheData.current_doing_context_action === 'view_detail' as it gets overwritten to cancel.
|| this.is_edit
|| this.is_mass_editing
|| this.is_mass_adding // Not tested, but as all the others from setCurrentEditViewState are now here, might as well add it.
|| this.edit_only_mode
|| LocalCacheData.current_doing_context_action === 'view_detail' //With is_viewing_detail we may no longer need this condition.
|| LocalCacheData.current_doing_context_action === 'delete'
) {
return_object = this.parseContextMenuEditViewAttributes();
} else if( $( this.el ).parents( '.edit-view-tab-outside-sub-view' ).length > 0 && this.ui_id ) {
// Using this approach rather than this.sub_view_mode, as some views have edit views still showing as subviews.
// #VueContextMenu#SubViews# Old approach can be found in BaseVC.parseCustomContextModelForSubViews but its better to control it from here in one place.
// These matches would previously match to main_view, but subviews should be different to main views.
return_object = this.parseContextMenuEditSubViewTabAttributes();
}
else if( this.ui_id ) {
return_object = this.parseContextMenuMainViewAttributes();
} else {
// If each view has a unique context menu, then this should never happen, as context menu should only be initiated once.
// However, there are many cases where tabs repeatedly call this.buildContextMenu, whilst keeping the same view controller, so this is now a warning rather than an error.
Debug.Error( 'Error: View state for '+ this.viewId +' ('+ this.ui_id +') does not match options.', 'BaseViewController.js', 'BaseViewController', 'determineContextMenuMountAttributes', 1 );
}
// Regardless of editview/main type above, there are some occasions when it detects as main menu, but its still within tabs.
// Here it would be Edit View -> Tabs -> Subview. For example Attendance->Accrual Balance -> View.
// The top icons are edit view for AccrualBalanceView.
// The icons within Accrual tab are seen as a main menu for AccrualView.
// Lets add these occurances into another type.
// Get ID
return_object.id = ContextMenuManager.generateMenuId( return_object.menu_type, return_object.parent_id );
return return_object;
}
parseContextMenuEditViewAttributes() {
// Designed to be overriden by views if behaviour needs to be different.
// All the edit_view style windows. Although the edit_only ones have a slightly different this.ui_id value, but the code is the same.
if( !this.edit_view_tab ) {
// If mount point IS needed (not just menu ID), then this is a bug. Check if buildContextMenu is not called before edit_view_tab populated (common in views overriding BaseView functions like openEditView.
Debug.Text( 'Warning: Unable to get full context menu mount data, edit_view_tab missing. Might be ok if mount point not needed. Check if buildContextMenu is not called before edit_view_tab populated (common in views overriding BaseView functions like openEditView ('+ this.viewId +'/'+ this.ui_id +')', 'BaseViewController.js', 'BaseViewController', 'parseContextMenuEditViewAttributes', 10 );
}
if( !this.ui_id ) {
Debug.Error( 'Warning: Unable to get full context menu mount data, ui_id missing. ('+ this.viewId +'/'+ this.ui_id +')', 'BaseViewController.js', 'BaseViewController', 'parseContextMenuEditViewAttributes', 1 );
}
return {
parent_mount_point: this.edit_view_tab, // Note: When this function is called, the edit_view_tab might not be built yet, so parent mount could be null, thats ok if mount point not needed yet.
parent_id: this.ui_id + '_edit_view_tab',
menu_type: 'editview_contextmenu',
}
}
parseContextMenuMainViewAttributes() {
// Designed to be overriden by views if behaviour needs to be different.
// Main views
if( !this.ui_id ) {
Debug.Error( 'Warning: Unable to get full context menu mount data, ui_id missing. ('+ this.viewId +'/'+ this.ui_id +')', 'BaseViewController.js', 'BaseViewController', 'parseContextMenuEditViewAttributes', 1 );
}
return {
parent_mount_point: $( this.el ),
parent_id: this.ui_id,
menu_type: 'listview_contextmenu',
}
}
parseContextMenuEditSubViewTabAttributes() {
// Designed to be overriden by views if behaviour needs to be different.
// Based on main_contextmenu
if( !this.ui_id ) {
Debug.Error( 'Warning: Unable to get full context menu mount data, ui_id missing. ('+ this.viewId +'/'+ this.ui_id +')', 'BaseViewController.js', 'BaseViewController', 'parseContextMenuEditViewAttributes', 1 );
}
return {
parent_mount_point: $( this.el ),
parent_id: this.ui_id,
menu_type: 'subview_contextmenu',
}
}
getDefaultContextMenuModel() {
var default_context_menu_model = {
'groups': {
'editor': {
label: $.i18n._( 'Editor' ),
id: 'editor',
sort_order: 1000
},
'navigation': {
label: $.i18n._( 'Navigation' ),
id: 'navigation',
sort_order: 8000
},
'other': {
label: $.i18n._( 'Other' ),
id: 'other',
sort_order: 9000
}
},
'icons': {}
};
default_context_menu_model['icons']['add'] = {
label: $.i18n._( 'New' ),
id: 'add',
group: 'editor',
vue_icon: 'tticon tticon-add_black_24dp',
show_on_right_click: true,
sort_order: 1000
};
default_context_menu_model['icons']['view'] = {
label: $.i18n._( 'View' ),
id: 'view',
group: 'editor',
vue_icon: 'tticon tticon-visibility_black_24dp',
show_on_right_click: true,
sort_order: 1010
};
default_context_menu_model['icons']['edit'] = {
label: $.i18n._( 'Edit' ),
id: 'edit',
group: 'editor',
vue_icon: 'tticon tticon-edit_black_24dp',
show_on_right_click: true,
sort_order: 1020,
//min_width: '85' /* Match with mass_edit so they can toggle without moving any menu items in UI */
};
default_context_menu_model['icons']['mass_edit'] = {
label: $.i18n._( 'Mass Edit' ),
id: 'mass_edit',
group: 'editor',
vue_icon: 'tticon tticon-edit_note_black_24dp',
show_on_right_click: true,
visible: false, // Ensures Mass Edit is not shown at start together with Edit. We only want one or the other.
sort_order: 1030,
//min_width: '85' /* Match with edit so they can toggle without moving any menu items in UI */
};
default_context_menu_model['icons']['delete_icon'] = {
label: $.i18n._( 'Delete' ),
id: 'delete_icon',
action_group: 'delete',
group: 'editor',
vue_icon: 'tticon tticon-delete_black_24dp',
show_on_right_click: true,
sort_order: 1040
};
default_context_menu_model['icons']['delete_and_next'] = {
label: $.i18n._( 'Delete & Next' ),
id: 'delete_and_next',
action_group: 'delete',
group: 'editor',
vue_icon: 'tticon tticon-delete_black_24dp',
sort_order: 1050
};
default_context_menu_model['icons']['copy'] = {
label: $.i18n._( 'Copy' ),
id: 'copy',
action_group: 'copy',
group: 'editor',
vue_icon: 'tticon tticon-content_copy_black_24dp',
show_on_right_click: true,
sort_order: 1060
};
default_context_menu_model['icons']['copy_as_new'] = {
label: $.i18n._( 'Copy as New' ),
id: 'copy_as_new',
action_group: 'copy',
group: 'editor',
vue_icon: 'tticon tticon-content_copy_black_24dp',
show_on_right_click: true,
sort_order: 1070
};
default_context_menu_model['icons']['save'] = {
label: $.i18n._( 'Save' ),
id: 'save',
action_group: 'save',
group: 'editor',
vue_icon: 'tticon tticon-save_black_24dp',
show_on_right_click: true,
sort_order: 1080
};
default_context_menu_model['icons']['save_and_continue'] = {
label: $.i18n._( 'Save & Continue' ),
id: 'save_and_continue',
action_group: 'save',
group: 'editor',
vue_icon: 'tticon tticon-save_black_24dp',
sort_order: 1090
};
default_context_menu_model['icons']['save_and_next'] = {
label: $.i18n._( 'Save & Next' ),
id: 'save_and_next',
action_group: 'save',
group: 'editor',
vue_icon: 'tticon tticon-save_black_24dp',
sort_order: 1100
};
default_context_menu_model['icons']['save_and_copy'] = {
label: $.i18n._( 'Save & Copy' ),
id: 'save_and_copy',
action_group: 'save',
group: 'editor',
vue_icon: 'tticon tticon-save_black_24dp',
sort_order: 1110
};
default_context_menu_model['icons']['save_and_new'] = {
label: $.i18n._( 'Save & New' ),
id: 'save_and_new',
action_group: 'save',
group: 'editor',
vue_icon: 'tticon tticon-save_black_24dp',
sort_order: 1120
};
default_context_menu_model['icons']['cancel'] = {
label: $.i18n._( 'Cancel' ),
id: 'cancel',
group: 'editor',
vue_icon: 'tticon tticon-cancel_black_24dp',
sort_order: 1130
};
default_context_menu_model['icons']['export_excel'] = {
label: $.i18n._( 'Export' ),
id: 'export_excel',
menu_align: 'right',
action_group: 'import_export',
group: 'other',
vue_icon: 'tticon tticon-file_upload_black_24dp',
sort_order: 9000,
menu_force_active: true
};
return default_context_menu_model;
}
// Overriden by ViewControllers with custom context menus.
getCustomContextMenuModel() {
var context_menu_model = {
groups: {},
exclude: [],
include: ['default']
};
return context_menu_model;
}
parseCustomContextModelForEditViews( context_menu_model ) {
// #VueContextMenu# - Commenting out logic below as we want to have the menu type logic in one place (BaseVC.determineContextMenuMountAttributes)
// if( this.is_add
// || this.is_viewing
// || this.is_edit
// || this.is_mass_editing
// || this.is_mass_adding // Not tested, but as all the others from setCurrentEditViewState are now here, might as well add it.
// || this.edit_only_mode
// || LocalCacheData.current_doing_context_action === 'view_detail'
// ) {
if( this.determineContextMenuMountAttributes().menu_type === 'editview_contextmenu' ) {
context_menu_model.include.push( 'cancel' );
}
return context_menu_model;
}
parseCustomContextModelForSubViews( context_menu_model ) {
// If a view does not want this, override the function in that view and just return the untouched object.
// #VueContextMenu#SubViews# Commenting out the logic below as we should just have the controlling logic in one place (BaseVC.determineContextMenuMountAttributes)
// if( this.determineContextMenuMountAttributes().menu_type === 'subview_contextmenu'
// || (this.sub_view_mode
// && !this.is_edit
// && !this.is_viewing
// && LocalCacheData.current_doing_context_action !== 'view' // To ensure view state is carried forward across subview loads, as Accrual Balance -> Accrual View record results in this.is_viewing === false.
// && LocalCacheData.current_doing_context_action !== 'edit' // Note: See if these last 2 checks are still needed after subview_contextmenu check addition.
// )) { // TODO: Does not seem to work for Audit log, as is_viewing is deliberately set to false.
if( this.determineContextMenuMountAttributes().menu_type === 'subview_contextmenu' ) {
context_menu_model.exclude.push( 'cancel' ); // Needed as subview grid menus dont need to be able to close the current window; the main context menu should do that.
}
return context_menu_model;
}
buildContextMenuModels() {
// Note: Currently icons might still be hidden by the permissions code, due to the 'invisible-image' class, especially with this.edit_only_mode. See BaseViewController.setDefaultMenuAddIcon() as an example.
let icon_count = 1;
let context_menu_model = this.getCustomContextMenuModel();
// Override for edit views.
context_menu_model = this.parseCustomContextModelForEditViews( context_menu_model );
// Override for subviews, as we want to remove Cancel. This is global, perhaps refactor into the individual getCustomContextMenuModel but that means duplicating the code in 100+ places.
context_menu_model = this.parseCustomContextModelForSubViews( context_menu_model );
if ( context_menu_model && ( context_menu_model.include || context_menu_model.exclude ) ) {
//Context Menu
let default_context_menu_model = this.getDefaultContextMenuModel();
let final_context_menu_model = { 'icons': {}, 'groups': {} };
if ( !context_menu_model.groups ) {
context_menu_model.groups = {};
}
//Default to including all default icons.
if ( !context_menu_model.include ) {
context_menu_model.include = ['default'];
}
//If we don't include default, assume we want to include all default icons.
if ( context_menu_model.include.indexOf( 'default' ) === -1 ) {
context_menu_model.include.unshift( 'default' ); // Add to front, so custom icons can override a default icon id.
}
//Assign default groups.
for ( let x in default_context_menu_model.groups ) {
default_context_menu_model.groups[x].sub_menus = [];
final_context_menu_model.groups[x] = default_context_menu_model.groups[x];
}
for ( let x in context_menu_model.groups ) {
context_menu_model.groups[x].sub_menus = [];
final_context_menu_model.groups[x] = context_menu_model.groups[x];
}
//Filter groups/icons
if ( context_menu_model.hasOwnProperty( 'include' ) ) {
if ( context_menu_model.include.constructor !== Array ) {
context_menu_model.include = Array( context_menu_model.include );
}
for ( let i in context_menu_model.include ) {
let current_include_element = context_menu_model.include[i];
if( context_menu_model.include.hasOwnProperty( i )) {
if ( current_include_element == 'default' ) {
Debug.Text( 'Including All Default Icons...', 'BaseViewController.js', 'BaseViewController', 'buildContextMenuModels', 11 );
for ( let x in default_context_menu_model.icons ) {
addIconToFinalModel( default_context_menu_model.icons[x] );
}
} else {
if ( typeof current_include_element !== 'object' && default_context_menu_model.icons[current_include_element] ) {
addIconToFinalModel( default_context_menu_model.icons[current_include_element] );
} else {
addIconToFinalModel( current_include_element );
}
}
}
}
}
function addIconToFinalModel( icon ) {
if( !icon.sort_order && icon.group ) {
icon.sort_order = final_context_menu_model.groups[ icon.group ].sort_order; // Rather than setting the default to 1000, lets set it to the start of the icon's group, so it appears in roughly the right area of the menu. Fixes e.g. TimeSheet & Export in Employee->Employees.
}
// TODO: Also need scenario for when there is no sort_order and no group. Currently this is caught as a console error via checks in ContextMenuManager.convertBackBoneMenuModelToPrimeVue.sort_compare
icon.add_order = icon_count; // rather than calculating length each time, just track additions, as all icons should be added through here anyway.
final_context_menu_model.icons[icon.id] = icon;
icon_count++;
return icon;
}
// #2644 Include array is a mix of icon id strings and objects, this function flattens it to an array of strings for id comparision.
function flattenMixedIdObjectArray( array ) {
return array.map( function( item ) {
return item.id || item;
} );
}
let tmp_included_icon_ids = flattenMixedIdObjectArray( context_menu_model.include );
//Must go after include, so they can include a few icons, then exclude all.
if ( context_menu_model.hasOwnProperty( 'exclude' ) ) {
if ( context_menu_model.exclude.constructor !== Array ) {
context_menu_model.exclude = Array( context_menu_model.exclude );
}
for ( let j in context_menu_model.exclude ) {
if( context_menu_model.exclude.hasOwnProperty( j )) {
if ( context_menu_model.exclude[j] == 'default' ) {
Debug.Text( 'Excluding All Default Icons...', 'BaseViewController.js', 'BaseViewController', 'buildContextMenuModels', 10 );
for ( let x in default_context_menu_model.icons ) {
if ( tmp_included_icon_ids.indexOf( x ) === -1 ) { //Make sure we don't exclude one that is included. Compare against flattened/extracted include array, otherwise types do not match and all default icons are removed regardless if they exist in include.
if ( final_context_menu_model.icons[x] ) {
delete final_context_menu_model.icons[x];
}
}
}
} else {
let exclude_icon_id = context_menu_model.exclude[j];
if ( final_context_menu_model.icons[exclude_icon_id] ) {
delete final_context_menu_model.icons[exclude_icon_id];
}
}
}
}
}
//Build Menu
let groups = {};
for ( let x in final_context_menu_model.groups ) {
groups[x] = final_context_menu_model.groups[x];
Debug.Text( 'Creating Ribbon Menu Group: ' + final_context_menu_model.groups[x].label, 'BaseViewController.js', 'BaseViewController', 'buildContextMenuModels', 11 );
}
for ( let x in final_context_menu_model.icons ) {
//Replace group string with object.
if ( final_context_menu_model.icons[x] && final_context_menu_model.icons[x].group ) {
if ( final_context_menu_model.icons[x].group.constructor === String ) {
final_context_menu_model.icons[x].group = groups[final_context_menu_model.icons[x].group];
} else if ( typeof final_context_menu_model.icons[x].group === 'object' ) {
//The 2nd time the edit view is opened, icons manually passed in through 'include' already have the groups converted to objects, but the icons don't appear until we re-assign the group object again.
final_context_menu_model.icons[x].group = groups[final_context_menu_model.icons[x].group.get( 'id' )];
}
}
if ( final_context_menu_model.icons[x].hasOwnProperty( 'permission_result' ) == false ) {
final_context_menu_model.icons[x].permission_result = true;
}
if ( !final_context_menu_model.icons[x].hasOwnProperty( 'permission' ) == false ) {
final_context_menu_model.icons[x].permission = null;
}
Debug.Text( 'Creating Ribbon Menu Icon: ' + final_context_menu_model.icons[x].label, 'BaseViewController.js', 'BaseViewController', 'buildContextMenuModels', 11 );
/* // TODO: This not an ideal way to do it, but not worth changing until a bigger refactor of the context menu is done at a later date.
if ( final_context_menu_model.icons[x].items && final_context_menu_model.icons[x].items.length > 0 ) {
// We use item to store the pre conversion and post conversion data. Therefore we must re-assign to a temp var, and reset.
let items_to_add = final_context_menu_model.icons[x].items;
// Still store the original items so that the new Vue Menu can parse these.
final_context_menu_model.icons[x].original_items = items_to_add;
// Reset the items attribute to an empty array, ready for RibbonSubMenuNavItem to use later on. Still needs clearing to empty array in ContextMenuManager once the ribbonmenu is done with it.
final_context_menu_model.icons[x].items = [];
}*/
}
// #VueContextMenu# Pass the final context menu model to the Vue context menu.
ContextMenuManager.buildContextMenuModelFromBackbone( this.determineContextMenuMountAttributes().id, final_context_menu_model, this );
} else {
//Legacy fallback when no context menu model is defined.
Global.sendErrorReport( 'ContextMenuModel error. No valid contextmenu model defined.' );
}
}
unmountContextMenu() {
// This should be able to handle various menu's as the determine menu id function will identify the right menu (view, edit etc)
ContextMenuManager.unmountContextMenu( this.determineContextMenuMountAttributes().id );
}
buildContextMenu( setFocus ) {
if ( this.current_edit_record && this.edit_only_mode == true && LocalCacheData.current_open_edit_only_controller && LocalCacheData.current_open_edit_only_controller.viewId != LocalCacheData.current_open_edit_only_controller.viewId ) { // #2542 - prevent early menu setup for views that have not been loaded into memory yet.
return null;
}
var $this = this;
if ( !Global.isSet( setFocus ) ) {
setFocus = true;
}
if ( !this.sub_view_mode ) {
LocalCacheData.current_open_sub_controller = null; //Clean sub controller if current view is a main view
} else {
//When on a sub view mode tab we want to disable certain context menu buttons of the parent view.
//This is to help prevent users from using context menu buttons for the wrong view and deleting/copying records they did not intend to use.
this.onSubViewModeDisableParentContextMenuButtons();
}
// Vue Context Menu initialization - #2838
// Checks for existing menu, because for an edit_view, we dont want to start a new menu, we want to re-use it.
// Otherwise we end up treating edit menus like new views, which is more complex given the html templates (report edit views are unique, as we now have a common template).
let menu_attributes = this.determineContextMenuMountAttributes();
if( ContextMenuManager.getMenu( menu_attributes.id ) === undefined ) {
// #VueContextMenu#Dynamic-EditView
ContextMenuManager.createAndMountMenu( menu_attributes.id, menu_attributes.parent_mount_point, this );
if( menu_attributes && menu_attributes.parent_mount_point ) {
// #VueContextMenu#context-border creation to put a border around a context menu and the contents it relates to. This will help users understand which context menu belongs to what if there is more than one menu on the page.
var context_parent = menu_attributes.parent_mount_point; // $('.edit-view-tab-bar');
var context_label = this.context_menu_name;
context_parent.prepend('<span class="context-border-label">'+ context_label +'</span>');
context_parent.wrapInner('<div class="context-border"></div>');
} else {
// If mount point is null, then this is a bug. Check if buildContextMenu is not called before edit_view_tab populated (common in views overriding BaseView functions like openEditView.
Debug.Error( 'Error creating context-border for '+this.viewId+' ('+ menu_attributes.id +'/'+ this.ui_id +')', 'BaseViewController.js', 'BaseViewController', 'buildContextMenu', 10 );
}
// if( ( this.is_add || this.is_edit || this.edit_only_mode ) && this.edit_view_tab || LocalCacheData.current_doing_context_action === 'view_detail' ) { // REMEMBER TO UPDATE determineContextMenuMountAttributes!!
// // #VueContextMenu#Dynamic-EditView - Consolidate this, as View is now in 1 place, and EditView in 2 places. <-- #TODO: is this comment still valid? Search the tag.
// // Pop-up edit views, which overlay across an unrelated view ( appear anywhere basically ).
// this.context_edit_only_menu_id = ContextMenuManager.createAndMountMenu( menu_attributes.id, this.edit_view_tab, this );
// } else if( this.ui_id ) {
// // Normal Views
// this.context_menu_id = ContextMenuManager.createAndMountMenu( menu_attributes.id, $( $this.el ), this );
// } else {
// // If each view has a unique context menu, then this should never happen, as context menu should only be initiated once.
// // However, there are many cases where tabs repeatedly call this.buildContextMenu, whilst keeping the same view controller, so this is now a warning rather than an error.
// Debug.Error( 'Error during context menu mount. View state for ( '+ this.viewId +' ) does not match options.', 'BaseViewController.js', 'BaseViewController', 'buildContextMenu', 1 );
// }
} else {
// This might be normal for situations like closing Edit Views, where the menu will already exist in the main view.
Debug.Warn( 'Context Menu Manager ('+ menu_attributes.id +') already exists for: '+ this.viewId +' ('+ this.ui_id +')', 'BaseViewController.js', 'BaseViewController', 'buildContextMenu', 10 );
}
this.buildContextMenuModels();
LocalCacheData.currentShownContextMenuName = this.context_menu_name ? this.context_menu_name : menu_attributes.parent_id;
}
getContextMenuGroupByName( menu, name, name_prefix ) {
var group;
if ( name_prefix == undefined ) {
name_prefix = this.viewId;
}
for ( var i = 0; i < menu.attributes.sub_menu_groups.length; i++ ) {
if ( menu.attributes.sub_menu_groups[i].id == name_prefix + name ) {
group = menu.attributes.sub_menu_groups[i];
}
}
return group;
}
onReportMenuClick( id ) {
}
//Overridden in ReportBaseViewController.
onContextMenuClick( context_btn, menu_name ) {
// Vue notes: Luckily when Vue calls this menu, it does not need context_btn, as most places that use this function have the Global.isSet( menu_name ) check to just use menu_name as the id. However, MessageControlVC does use it.
var id;
if ( Global.isSet( menu_name ) ) {
id = menu_name;
} else {
if ( context_btn.disabled ) {
return;
}
}
ProgressBar.showOverlay();
//This flag is turned off in ProgressBarManager::closeOverlay, or 2 seconds whichever happens first. Use 2 seconds as overseas users could see intermittant 2 second latencies and double click Save icons.
if ( window.clickProcessing == true ) {
return;
} else {
window.clickProcessing = true;
window.clickProcessingHandle = window.setTimeout( function() {
//FIXME: Check to see if the progress bar is visible because a API call is taking a long time, and if so keep the overlay up longer.
if ( window.clickProcessing == true ) {
window.clickProcessing = false;
ProgressBar.closeOverlay();
TTPromise.wait();
}
}, Global.calcDebounceWaitTimeBasedOnNetwork( 2000 ) );
}
//Debug.Text( 'Context Menu Click: '+ id, 'BaseViewController.js', 'BaseViewController', 'onContextMenuClick', 10 );
/**
* Here where you see ProgressBar.showOverlay() it is how we prevent doubleclick from firing two single clicks
*/
switch ( id ) {
case 'add':
this.onAddClick();
break;
case 'view':
this.onViewClick();
break;
case 'save':
this.onSaveClick();
break;
case 'save_and_next':
this.onSaveAndNextClick();
break;
case 'save_and_continue':
this.onSaveAndContinue();
break;
case 'save_and_new':
this.onSaveAndNewClick();
break;
case 'save_and_copy':
this.onSaveAndCopy();
break;
case 'edit':
this.onEditClick();
break;
case 'mass_edit':
this.onMassEditClick();
break;
case 'delete_icon':
this.onDeleteClick();
break;
case 'delete_and_next':
this.onDeleteAndNextClick();
break;
case 'copy':
this.onCopyClick();
break;
case 'copy_as_new':
this.onCopyAsNewClick();
break;
case 'cancel':
this.onCancelClick();
ProgressBar.closeOverlay();
break;
case 'export_excel':
this.onExportClick( 'export' + this.api.key_name );
ProgressBar.closeOverlay();
break;
case 'map':
this.onMapClick();
ProgressBar.closeOverlay();
break;
default:
this.onCustomContextClick( id, context_btn );
ProgressBar.closeOverlay(); //FIXME: This may be closing the overlay too soon, allowing double-clicks to get through. For example when in Request Authorizations and hammer clicking "Authorize".
//Debug.Text( 'Context Menu Click: '+ id +' Overlay closing...', 'BaseViewController.js', 'BaseViewController', 'onContextMenuClick', 10 );
break;
}
Global.triggerAnalyticsContextMenuClick( context_btn, menu_name );
}
onCustomContextClick( id ) {
return false; //FALSE tells onContextMenuClick() to keep processing.
}
onNavigationClick( id ) {
this.onContextMenuClick( id );
}
getCurrentAPI() {
return this.api;
}
setCurrentEditViewState( state ) {
this.is_viewing = false;
this.is_viewing_detail = false; //Clicked "View Detail" on audit log. Separate logic from regular view.
this.is_edit = false;
this.is_add = false;
this.is_mass_editing = false;
this.is_mass_adding = false;
switch ( state ) {
case 'view':
this.is_viewing = true;
break;
case 'view_detail':
this.is_viewing_detail = true;
break;
case 'new':
this.is_add = true;
break;
case 'edit':
this.is_edit = true;
break;
case 'mass_edit':
this.is_mass_editing = true;
break;
// case 'mass_add':
// //this.is_add = true;
// this.is_mass_adding = true;
// break;
}
LocalCacheData.previous_doing_context_action = LocalCacheData.current_doing_context_action;
LocalCacheData.current_doing_context_action = state;
}
revertEditViewState() {
this.setCurrentEditViewState( LocalCacheData.previous_doing_context_action ? LocalCacheData.previous_doing_context_action : '' );
}
onAddClick( show_save_and_continue ) {
var $this = this;
this.setCurrentEditViewState( 'new' );
$this.openEditView();
//Error: Uncaught TypeError: undefined is not a function in /interface/html5/views/BaseViewController.js?v=8.0.0-20141117-111140 line 897
if ( $this.api && typeof $this.api['get' + $this.api.key_name + 'DefaultData'] === 'function' ) {
$this.api['get' + $this.api.key_name + 'DefaultData']( {
onResult: function( result ) {
$this.onAddResult( result );
if ( show_save_and_continue ) {
//Issue #3111 - If user is on a subview the tab will appear blank and the Save and Continue button will not show unless user switches to another tab.
//Because of that when coming from a "Save & New" action, we need to make sure to show the Save and Continue button.
$this.showSaveAndContinueButton();
}
}
} );
}
}
onAddResult( result ) {
var $this = this;
var result_data = {};
if ( result.getResult ) {
result_data = result.getResult();
} else {
//if not an api result, assume object is already the result of a call to getResult() and we will use it verbatim.
//useful for passing in default values when adding new records before this function is called.
result_data = result;
}
if ( !result_data || result_data === true ) {
result_data = [];
}
result_data.company = LocalCacheData.current_company.name;
if ( $this.sub_view_mode && $this.parent_key ) {
result_data[$this.parent_key] = $this.parent_value;
}
$this.current_edit_record = result_data;
$this.initEditView();
}
onDeleteAndNextClick() {
TAlertManager.showConfirmAlert( Global.delete_confirm_message, null, function( result ) {
// Using an anonymous function instead of reference, to ensure during debugging it is clear this function is called from DeleteAndNext, and not just Delete.
this.doDeleteClick( result, 'delete_and_next' );
}.bind( this ) );
}
resetNavigationSourceData() {
}
getDeleteSelectedRecordId() {
var retval = [];
if ( this.edit_view && this.current_edit_record ) {
retval.push( this.current_edit_record.id );
} else {
var grid_selected_id_array = this.getGridSelectIdArray().slice(); //Use .slice() to make a copy of the IDs.
if ( grid_selected_id_array.length ) {
retval = grid_selected_id_array;
} else {
retval = null;
}
}
return retval;
}
doDeleteClick( result, delete_type ) {
if ( result ) {
ProgressBar.showOverlay();
var remove_ids = this.getDeleteSelectedRecordId();
if ( remove_ids === [] ) {
return;
}
this.setCurrentEditViewState( delete_type ? delete_type : 'delete' );
return this.doDeleteAPICall( remove_ids );
} else {
ProgressBar.closeOverlay();
}
}
doDeleteAPICall( remove_ids, callback ) {
var current_api = this.getCurrentAPI();
if ( !callback ) {
callback = {
onResult: function( result ) {
this.onDeleteResult( result, remove_ids );
}.bind( this )
};
}
return current_api['delete' + current_api.key_name]( remove_ids, callback );
}
onDeleteClick() {
TAlertManager.showConfirmAlert( Global.delete_confirm_message, null, this.doDeleteClick.bind( this ) );
}
onDeleteResult( result, remove_ids ) {
var $this = this;
ProgressBar.closeOverlay();
if ( result.isValid() ) {
if ( LocalCacheData.current_doing_context_action === 'delete_and_next' ) {
// store the index of the current item, before refreshing the search and losing the current context due to the deleted records
$this.refresh_id = this.navigation.getNextSelectItemId();
// refresh the grid to get the current dataset now that records have been deleted
$this.search( false, null, null, function( result ) {
var current_grid_source = result.getResult();
if ( $.type( current_grid_source ) !== 'array' || current_grid_source.length < 1 ) {
// if after delete, there are no more records in the search, close edit view
$this.removeEditView();
$this.setDefaultMenu();
// TODO: Should the above not simulate a cancel click? Could be an area for further refactor.
} else {
// there are still records, load the new data
$this.navigation.setSourceData( current_grid_source );
$this.navigation.setPagerData( $this.pager_data );
// if there is a valid id on the next record to load, do it
if ( $this.refresh_id ) {
$this.onRightOrLeftArrowClickCallBack( $this.refresh_id );
} else {
// no valid next record, simulate a cancel click.
$this.onCancelClick();
}
$this.onDeleteAndNextDone( result );
}
} );
} else {
$this.search();
$this.onDeleteDone( result );
if ( $this.edit_view && LocalCacheData.current_doing_context_action === 'delete' ) {
$this.removeEditView();
$this.setDefaultMenu();
} else if ( !$this.edit_view ) {
$this.setCurrentEditViewState( '' );
}
}
} else {
// If some valid records were deleted, we need to refresh the search grid.
if ( result.getRecordDetails().valid && result.getRecordDetails().valid > 0 ) {
$this.search();
}
$this.revertEditViewState();
TAlertManager.showErrorAlert( result );
}
}
removeDeletedRows( remove_ids ) {
var $this = this;
$.each( remove_ids, function( index, value ) {
$this.grid.grid.deleteRow( value );
$this.paging_widget.minus();
} );
//
// if ( this.grid.getGridParam( 'data' ).length === 0 ) {
// this.search();
// }
// this.search();
// var grid_selected_id_array = this.getGridSelectIdArray();
// var grid_selected_length = grid_selected_id_array.length;
//
// if ( grid_selected_length === 0 ) {
// this.search();
// }
}
clearNavigationData() {
if ( this.navigation && this.navigation.setSourceData ) {
this.navigation.setSourceData( null );
}
}
onSaveAndCopy( ignoreWarning ) {
var $this = this;
if ( !Global.isSet( ignoreWarning ) ) {
ignoreWarning = false;
}
this.is_add = true;
this.is_changed = false;
LocalCacheData.current_doing_context_action = 'save_and_copy';
var record = this.current_edit_record;
record = this.uniformVariable( record );
this.clearNavigationData();
this.api['set' + this.api.key_name]( record, false, ignoreWarning, {
onResult: function( result ) {
$this.onSaveAndCopyResult( result );
$this.clearSubViewControllers();
}
} );
}
onSaveAndCopyResult( result ) {
var $this = this;
if ( result.isValid() ) {
var result_data = result.getResult();
if ( result_data === true && $this.current_edit_record && $this.current_edit_record.id ) {
$this.refresh_id = $this.current_edit_record.id;
} else if ( TTUUID.isUUID( result_data ) && result_data != TTUUID.zero_id && result_data != TTUUID.not_exist_id ) {
$this.refresh_id = result_data;
}
$this.search( false );
$this.onCopyAsNewClick();
} else {
$this.setErrorMenu();
$this.setErrorTips( result );
}
}
onSaveAndNewClick( ignoreWarning ) {
var $this = this;
if ( !Global.isSet( ignoreWarning ) ) {
ignoreWarning = false;
}
this.setCurrentEditViewState( 'new' );
var record = this.current_edit_record;
record = this.uniformVariable( record );
this.api['set' + this.api.key_name]( record, false, ignoreWarning, {
onResult: function( result ) {
$this.onSaveAndNewResult( result );
if ( $this.sub_view_mode ) {
$this.clearSubViewControllers( false );
} else {
$this.clearSubViewControllers( true );
$this.showSaveAndContinueButton();
}
}
} );
}
onSaveAndNewResult( result ) {
var $this = this;
if ( result.isValid() ) {
var result_data = result.getResult();
if ( result_data === true && $this.current_edit_record && $this.current_edit_record.id ) {
$this.refresh_id = $this.current_edit_record.id;
} else if ( TTUUID.isUUID( result_data ) && result_data != TTUUID.zero_id && result_data != TTUUID.not_exist_id ) { // as new
$this.refresh_id = result_data;
}
$this.saveInsideEditorData( function() {
$this.search( false );
$this.onAddClick( true );
} );
} else {
$this.setErrorMenu();
$this.setErrorTips( result );
}
}
onSaveAndContinue( ignoreWarning ) {
var $this = this;
if ( !Global.isSet( ignoreWarning ) ) {
ignoreWarning = false;
}
//Setting is_add false too early can cause determineContextMenuMountAttributes() to have unexpected side effects. However not setting it here might have other side effects.
//$this.is_add = false;
LocalCacheData.current_doing_context_action = 'save_and_continue';
var record = this.current_edit_record;
record = this.uniformVariable( record );
this.doSaveAPICall( record, ignoreWarning, {
onResult: function( result ) {
$this.onSaveAndContinueResult( result );
}
} );
}
onSaveAndContinueResult( result ) {
var $this = this;
if ( result.isValid() ) {
var result_data = result.getResult();
if ( result_data === true && $this.current_edit_record && $this.current_edit_record.id ) {
$this.refresh_id = $this.current_edit_record.id;
} else if ( result_data && TTUUID.isUUID( result_data ) && result_data != TTUUID.zero_id && result_data != TTUUID.not_exist_id ) {
$this.refresh_id = result_data;
}
$this.saveInsideEditorData( function() {
$this.search( false );
$this.onEditClick( $this.refresh_id, true );
$this.onSaveAndContinueDone( result );
} );
} else {
$this.setErrorTips( result );
$this.setErrorMenu();
}
}
onSaveAndNextClick( ignoreWarning ) {
var $this = this;
if ( !Global.isSet( ignoreWarning ) ) {
ignoreWarning = false;
}
this.is_add = false;
this.is_changed = false;
var current_api = this.getCurrentAPI();
var record = this.current_edit_record;
LocalCacheData.current_doing_context_action = 'save_and_next';
record = this.uniformVariable( record );
current_api['set' + current_api.key_name]( record, false, ignoreWarning, {
onResult: function( result ) {
$this.onSaveAndNextResult( result );
}
} );
}
onSaveAndNextResult( result ) {
var $this = this;
if ( result.isValid() ) {
var result_data = result.getResult();
if ( result_data === true && $this.current_edit_record && $this.current_edit_record.id ) {
$this.refresh_id = $this.current_edit_record.id;
} else if ( result_data && TTUUID.isUUID( result_data ) && result_data != TTUUID.zero_id && result_data != TTUUID.not_exist_id ) {
$this.refresh_id = result_data;
}
$this.saveInsideEditorData( function() {
$this.onRightArrowClick();
$this.search( false );
$this.onSaveAndNextDone( result );
} );
} else {
$this.setErrorMenu();
$this.setErrorTips( result );
}
}
uniformVariable( records ) {
return records;
}
saveInsideEditorData( callback ) {
//override this stub function where neeed. Brought in to consolidate those view controllers that used this.
/* Dev Note: #2644 If issues happen, read this:
 * Functions such as onSaveAndNextResult() had a saveInsideEditorData call, but the base view did not, but the rest of the function was the same.
* During refactor of these functions like save and next result into the base view, a stub of saveInsideEditor had to be created as it was not there previously.
*/
if ( callback ) {
callback();
}
}
getChangedFields() {
var retval = {};
for ( var key in this.edit_view_ui_dic ) {
if ( !this.edit_view_ui_dic.hasOwnProperty( key ) ) {
continue;
}
var widget = this.edit_view_ui_dic[key];
if ( Global.isSet( widget.isChecked ) ) {
if ( widget.isChecked() && widget.getEnabled() ) {
retval[key] = this.current_edit_record[key]; // Note: Some view controllers use widget.getValue() instead of current_edit_record[key]
}
}
}
return retval;
}
// overridden in view controllers where needed
// this base version will simply extract and duplicate current edit record if an array of user_id's exist
// parent function should check to confirm this.is_mass_adding is true
buildMassAddRecord( record ) {
var retval;
if ( Global.isArray( record.user_id ) && record.user_id.length > 0 ) {
retval = [];
$.each( this.current_edit_record.user_id, function( index, value ) {
var commonRecord = Global.clone( record );
commonRecord.user_id = value;
retval.push( commonRecord );
} );
} else {
retval = record;
}
return retval;
}
buildMassEditSaveRecord( mass_edit_record_ids, changed_fields ) {
var $this = this;
var mass_records = [];
$.each( mass_edit_record_ids, function( index, value ) {
var common_record = Global.clone( changed_fields );
common_record.id = value;
common_record = $this.uniformVariable( common_record );
mass_records.push( common_record );
} );
return mass_records;
}
onSaveClick( ignoreWarning ) {
if ( !Global.isSet( ignoreWarning ) ) {
ignoreWarning = false;
}
var record;
//Setting is_add false too early can cause determineContextMenuMountAttributes() to have unexpected side effects. However not setting it here might have other side effects.
//this.is_add = false;
LocalCacheData.current_doing_context_action = 'save';
if ( this.is_mass_editing ) {
var changed_fields = this.getChangedFields();
record = this.buildMassEditSaveRecord( this.mass_edit_record_ids, changed_fields );
} else if ( this.is_mass_adding ) {
record = this.buildMassAddRecord( this.current_edit_record );
} else {
record = this.current_edit_record;
record = this.uniformVariable( record );
}
this.doSaveAPICall( record, ignoreWarning );
}
doSaveAPICall( record, ignoreWarning, callback ) {
var current_api = this.getCurrentAPI();
if ( !callback ) {
callback = {
onResult: function( result ) {
this.onSaveResult( result );
}.bind( this )
};
}
//current_api.setIsIdempotent( true ); //Force to idempotent API call to avoid duplicate network requests from causing errors displayed to the user.
return current_api['set' + current_api.key_name]( record, false, ignoreWarning, callback );
}
onSaveResult( result ) {
var $this = this;
if ( result.isValid() ) {
//Setting is_add false too early can cause determineContextMenuMountAttributes() to have unexpected side effects. However not setting it here might have other side effects.
//$this.is_add = false;
var result_data = result.getResult();
if ( !this.edit_only_mode ) {
if ( result_data === true && $this.current_edit_record && $this.current_edit_record.id ) {
$this.refresh_id = $this.current_edit_record.id;
} else if ( TTUUID.isUUID( result_data ) && result_data != TTUUID.zero_id && result_data != TTUUID.not_exist_id ) {
$this.refresh_id = result_data;
} else {
$this.refresh_id = null;
}
$this.search();
}
var on_save_done_result = $this.onSaveDone( result ); //post hook for onSaveResult
if ( on_save_done_result == undefined || on_save_done_result == true ) {
$this.removeEditView();
}
} else {
$this.setErrorTips( result );
$this.setErrorMenu();
}
}
//post hook for onSaveResult
onSaveDone( result ) {
return true;
}
onSaveAndContinueDone( result ) {
}
onSaveAndNextDone( result ) {
}
onDeleteDone( result ) {
this.removeDeletedRows();
}
onDeleteAndNextDone( result ) {
}
onMassEditClick() {
var $this = this;
this.setCurrentEditViewState( 'mass_edit' );
$this.openEditView();
var filter = {};
var grid_selected_id_array = this.getGridSelectIdArray();
var grid_selected_length = grid_selected_id_array.length;
this.mass_edit_record_ids = [];
$.each( grid_selected_id_array, function( index, value ) {
$this.mass_edit_record_ids.push( value );
} );
filter.filter_data = {};
filter.filter_data.id = this.mass_edit_record_ids;
this.api['getCommon' + this.api.key_name + 'Data']( filter, {
onResult: function( result ) {
var result_data = result.getResult();
if ( !result_data ) {
result_data = [];
}
$this.api['getOptions']( 'unique_columns', {
onResult: function( result ) {
$this.unique_columns = result.getResult();
$this.api['getOptions']( 'linked_columns', {
onResult: function( result1 ) {
$this.linked_columns = result1.getResult();
if ( $this.linked_columns === true ) {
//there are no columns, you should be an empty array.
$this.linked_columns = [];
}
if ( $this.sub_view_mode && $this.parent_key ) {
result_data[$this.parent_key] = $this.parent_value;
}
$this.current_edit_record = result_data;
$this.initEditView();
}
} );
}
} );
}
} );
}
/*
* View Click handlers - Start
*/
getViewSelectedRecordId( record ) {
var retval = false;
var grid_selected_id_array = this.getGridSelectIdArray();
var grid_selected_length = grid_selected_id_array.length;
if ( Global.isSet( record ) ) {
//Handle cases where record object is passed in, so we can extract the string ID.
// As well where the string ID is passed in directly as a UUID and accept that too.
// This is required to handle MyAccount -> Request Authorization, view any record, then refresh the browser.
if ( Global.isObject( record ) && record.id ) {
retval = record.id;
} else if ( Global.isString( record ) && TTUUID.isUUID( record ) ) {
retval = record;
}
} else {
if ( grid_selected_length > 0 ) {
retval = grid_selected_id_array[0];
} else {
retval = null;
}
}
return retval;
}
doViewAPICall( filter, api_args ) {
var callback = { onResult: this.handleViewAPICallbackResult.bind( this ) };
if ( api_args ) {
// If api_args specified, use api_args.filter, and ignore function filter parameter.
api_args.push( callback );
return this.api['get' + this.api.key_name].apply( this.api, api_args );
} else {
return this.api['get' + this.api.key_name]( filter, callback );
}
}
handleViewAPICallbackResult( result ) {
var result_data;
if ( result && result.getResult ) {
result_data = result.getResult();
//Do any result manipulation processes here, such as combining IDs together into a composite.
result_data = this.processAPICallbackResult( result_data );
if ( !result_data ) {
result_data = [];
}
result_data = result_data[0];
} else {
//Do not call processAPICallbackResult() here as we assume all processing has been completed earlier.
result_data = result;
}
if ( !result_data ) {
TAlertManager.showAlert( $.i18n._( 'Record does not exist.' ) );
return this.onCancelClick();
} else {
return this.doViewClickResult( result_data );
}
}
doViewClickResult( result_data ) {
this.current_edit_record = result_data;
this.initEditView();
return this.clearCurrentSelectedRecord();
}
onViewClick( record, noRefreshUI ) {
this.setCurrentEditViewState( 'view' );
this.openEditView();
var record_id = this.getViewSelectedRecordId( record );
if ( Global.isFalseOrNull( record_id ) ) {
return;
}
this.setCurrentSelectedRecord( record_id );
var filter = this.getAPIFilters();
return this.doViewAPICall( filter );
}
setCurrentSelectedRecord( record ) {
if ( record ) {
this.current_selected_record = record;
return true;
}
return false;
}
getCurrentSelectedRecord() {
return this.current_selected_record;
}
clearCurrentSelectedRecord() {
delete this.current_selected_record;
return true;
}
// do we need this, Mike created it but check with him, as it may have just been a potential idea, not used.
getRecordIdFromRecord( object ) {
if ( Global.isObject( object ) ) {
return object_id;
} else if ( Global.isString( object ) ) {
return object;
}
return false;
}
/*
* View Click handlers - End
*/
/*
* Common between View and Edit
*/
processAPICallbackResult( result_data ) {
return result_data;
}
getAPIFilters() {
// override this function if view requires more filters
var record_id = this.getCurrentSelectedRecord();
var filter = {};
filter.filter_data = {};
filter.filter_data.id = [record_id];
return filter;
}
/*
* Edit Click handlers - Start
*/
getEditSelectedRecordId( record ) {
var retval = false;
var grid_selected_id_array = this.getGridSelectIdArray();
var grid_selected_length = grid_selected_id_array.length;
if ( Global.isSet( record ) ) {
//Handle cases where record object is passed in, so we can extract the string ID.
// As well where the string ID is passed in directly as a UUID and accept that too.
// This is required to handle editing any record, then refresh the browser.
if ( Global.isObject( record ) && record.id ) {
retval = record.id;
} else if ( Global.isString( record ) && TTUUID.isUUID( record ) ) {
retval = record;
}
} else {
//Check for is_viewing and is_edit as the state may have changed from viewing to editing immediately before it got here.
// Test this with: Attendance -> TimeSheet, Edit Punch, click Station field to view the station, then click "Edit" icon.
if ( ( this.is_viewing || this.is_edit ) && this.current_edit_record && this.current_edit_record.id ) {
retval = this.current_edit_record.id;
} else if ( grid_selected_length > 0 ) {
retval = grid_selected_id_array[0];
} else {
retval = null;
}
}
return retval;
}
doEditAPICall( filter, api_args, callback ) {
if ( !callback ) {
callback = { onResult: this.handleEditAPICallbackResult.bind( this ) };
}
if ( api_args ) {
// If api_args specified, use api_args.filter, and ignore function filter parameter.
api_args.push( callback );
return this.api['get' + this.api.key_name].apply( this.api, api_args );
} else {
return this.api['get' + this.api.key_name]( filter, callback );
}
}
handleEditAPICallbackResult( result ) {
var result_data;
if ( result.getResult ) {
result_data = result.getResult();
//Do any result manipulation processes here, such as combining IDs together into a composite.
result_data = this.processAPICallbackResult( result_data );
if ( !result_data ) {
result_data = [];
}
result_data = result_data[0];
} else {
//Do not call processAPICallbackResult() here as we assume all processing has been completed earlier.
result_data = result;
}
if ( !result_data ) {
TAlertManager.showAlert( $.i18n._( 'Record does not exist.' ) );
return this.onCancelClick();
}
if ( this.sub_view_mode && this.parent_key ) {
result_data[this.parent_key] = this.parent_value;
}
return this.doEditClickResult( result_data );
}
doEditClickResult( result_data ) {
this.current_edit_record = result_data;
this.initEditView();
}
onEditClick( record_id, noRefreshUI ) {
this.setCurrentEditViewState( 'edit' );
this.openEditView();
record_id = this.getEditSelectedRecordId( record_id );
if ( Global.isFalseOrNull( record_id ) ) {
return;
}
this.setCurrentSelectedRecord( record_id );
var filter = this.getAPIFilters();
return this.doEditAPICall( filter );
}
/*
* Edit Click handlers - End
*/
onCopyClick() {
if ( this.getGridSelectIdArray().length > 1 ) {
//Warn user if they are trying to copy multiple records.
TAlertManager.showConfirmAlert( Global.copy_multiple_confirm_message, null, ( answer ) => {
if ( answer === true ) {
this.doCopyClick();
}
} );
} else {
this.doCopyClick();
}
}
doCopyClick() {
var $this = this;
var copyIds = [];
$this.is_add = false;
if ( $this.edit_view ) {
copyIds.push( $this.current_edit_record.id );
if ( this.is_changed ) {
TAlertManager.showConfirmAlert( Global.modify_alert_message, null, function( flag ) {
if ( flag === true ) {
$this.is_changed = false;
$this._continueDoCopy( copyIds );
}
ProgressBar.closeOverlay();
} );
} else {
$this._continueDoCopy( copyIds );
}
} else {
copyIds = $this.getGridSelectIdArray().slice();
$this._continueDoCopy( copyIds );
}
}
_continueDoCopy( copyIds ) {
var $this = this;
ProgressBar.showOverlay();
//$this.api.setIsIdempotent( true ); //Force to idempotent API call to avoid duplicate network requests from causing errors displayed to the user.
$this.api['copy' + $this.api.key_name]( copyIds, {
onResult: function( result ) {
$this.onCopyResult( result );
}
} );
}
onCopyResult( result ) {
var $this = this;
if ( result.isValid() ) {
$this.search();
if ( $this.edit_view ) {
$this.removeEditView();
}
} else {
TAlertManager.showErrorAlert( result );
if ( result.getRecordDetails().total > 1 ) {
$this.search();
}
}
}
onCopyAsNewClick() {
var $this = this;
if ( this.is_changed ) {
TAlertManager.showConfirmAlert( Global.modify_alert_message, null, function( flag ) {
if ( flag === true ) {
$this._continueDoCopyAsNew();
if ( $this.sub_view_mode ) {
$this.clearSubViewControllers( false );
} else {
//Issue #3009 - Copy as new could cause blank tabs or old data to be shown instead of Save and Continue button.
$this.clearSubViewControllers( true );
$this.showSaveAndContinueButton();
}
}
ProgressBar.closeOverlay();
} );
} else {
this._continueDoCopyAsNew();
if ( this.sub_view_mode ) {
this.clearSubViewControllers( false );
} else {
//Issue #3009 - Copy as new could cause blank tabs or old data to be shown instead of Save and Continue button.
this.clearSubViewControllers( true );
this.showSaveAndContinueButton();
}
}
}
copyAsNewResetIds( data ) {
//override where needed.
data.id = '';
return data;
}
showSaveAndContinueButton() {
if ( this.edit_view ) {
let save_and_continue_buttons = this.edit_view.find( '.save-and-continue-div' );
if ( save_and_continue_buttons ) {
save_and_continue_buttons.css( 'display', 'block' );
}
}
}
clearSubViewControllers( force ) {
//Issue #2915 - Sub view controllers should not be cleared while the user is on a sub view. For example when the user
//clicks "Copy as New" on a record in the sub view and finishes using that sub view they are returned to
//the primary controller and if data is wiped in that scenario the tab would be blank.
if ( LocalCacheData.current_open_sub_controller == null || force ) {
//Issue #2913 - Sub view data would remain on a view if a user viewed a sub view tab before clicking "Copy as New", "Save & New" and similar saving actions.
//Clearing out the sub view controllers aims to prevent any old data from remaining.
//If this does not happen the sub view HTML would remain and overlap with the "Save & Continue" message and in general show no longer relevant data.
for ( var property in LocalCacheData.current_open_primary_controller ) {
if ( property.match( 'sub_([a-z_]*)view_controller' ) && LocalCacheData.current_open_primary_controller[property] && LocalCacheData.current_open_primary_controller[property].$el ) {
Debug.Text( property, 'BaseViewController.js', 'BaseViewController', 'onSaveAndNextClick', 9 );
LocalCacheData.current_open_primary_controller[property].$el.remove();
LocalCacheData.current_open_primary_controller[property] = null;
}
}
}
}
getCopyAsNewFilter( filter ) {
// override where needed.
return filter;
}
_continueDoCopyAsNew() {
var $this = this;
this.setCurrentEditViewState( 'new' );
LocalCacheData.current_doing_context_action = 'copy_as_new';
if ( Global.isSet( this.edit_view ) ) {
this.current_edit_record = this.copyAsNewResetIds( this.current_edit_record );
var navigation_div = this.edit_view.find( '.navigation-div' );
navigation_div.css( 'display', 'none' );
this.setEditMenu();
this.setTabStatus(); // Show tabs based on permission. setCurrentEditRecordData has functions to set by record type. See #2687 - setTabStatus() must go before setCurrentEditRecordData(), otherwise Premium Policy Tabs incorrectly shown.
//Issue #2913 - When using copy and save actions ("Copy As New", "Save & Copy", etc) on views with sub views such as "Pay Periods" on Pay Period Schedules
//the sub view tab might appear blank. This is because these copy functions do not go through the same order of events as a regular add click.
//Because of that we need to call onTabShow() to make sure the code that creates the "Save and continue" message and button triggers.
this.onTabShow();
if ( !this.editor ) {
// #2687 if an editor exists in the view/tabs, we do not want to call setCurrentEditRecordData() as it wipes out the editor data in one of its child functions initInsideEditorData().
this.setCurrentEditRecordData();
}
this.is_changed = false;
ProgressBar.closeOverlay();
} else {
var filter = {};
var grid_selected_id_array = this.getGridSelectIdArray();
var grid_selected_length = grid_selected_id_array.length;
if ( grid_selected_length > 0 ) {
var selectedId = grid_selected_id_array[0];
} else {
TAlertManager.showAlert( $.i18n._( 'No selected record' ) );
return;
}
filter.filter_data = {};
filter.filter_data.id = [selectedId];
filter = this.getCopyAsNewFilter( filter );
this.api['get' + this.api.key_name]( filter, {
onResult: function( result ) {
$this.onCopyAsNewResult( result );
}
} );
}
}
onCopyAsNewResult( result ) {
var result_data = result.getResult();
if ( typeof result_data != 'object' ) {
this.onAddClick();
return;
}
this.openEditView(); // Put it here is to avoid if the selected one is not existed in data or have deleted by other pragram. in this case, the edit view should not be opend.
result_data = result_data[0];
result_data = this.copyAsNewResetIds( result_data );
if ( this.sub_view_mode && this.parent_key ) {
result_data[this.parent_key] = this.parent_value;
}
this.current_edit_record = result_data;
var $this = this;
$( '.PunchesEditView .edit-view-tab-bar' ).css( 'opacity', 1 );
$( '.PunchesEditView .edit-view-tab' ).css( 'opacity', 1 );
$this.initEditView();
}
/*
1. Job is switched.
2. If a Task is already selected (and its not Task=0), keep it selected *if its available* in the newly populated Task list.
3. If the task selected is *not* available in the Task list, or the selected Task=0, then check the default_item_id field from the Job and if its *not* 0 also, select that Task by default.
'job' argument must be an object, or false/null
*/
setJobItemValueWhenJobChanged( job, job_item_id_col_name, filter_data ) {
var $this = this;
if ( job_item_id_col_name == undefined ) {
job_item_id_col_name = 'job_item_id';
}
//Error: Uncaught TypeError: Cannot set property 'job_item_id' of null in /interface/html5/#!m=TimeSheet&date=20150126&user_id=54286 line 6785
if ( !$this.current_edit_record || !$this.edit_view_ui_dic[job_item_id_col_name] ) {
return;
}
TTPromise.add( 'BaseViewController', 'setJobItemValueWhenJobChanged' );
if ( filter_data == undefined ) {
filter_data = { status_id: 10 };
}
if ( job != undefined && job != false ) {
filter_data['job_id'] = job.id; //Always filter by job
}
var job_item_widget = $this.edit_view_ui_dic[job_item_id_col_name];
var current_job_item_id = job_item_widget.getValue();
job_item_widget.setSourceData( null );
job_item_widget.setCheckBox( true );
this.edit_view_ui_dic['job_item_quick_search'].setCheckBox( true );
var args = {};
args.filter_data = filter_data;
$this.edit_view_ui_dic[job_item_id_col_name].setDefaultArgs( args );
//Make sure if current task is selected, that its still available on the new job.
if ( current_job_item_id && current_job_item_id != TTUUID.zero_id ) {
var new_arg = Global.clone( args );
//We are checking if the current selected record validates against the job costing criteria.
//To avoid issues with pagination we are only checking against the current selected record.
new_arg.filter_data.id = current_job_item_id;
new_arg.filter_data.job_id = job.id;
new_arg.filter_columns = $this.edit_view_ui_dic[job_item_id_col_name].getColumnFilter();
$this.job_item_api.getJobItem( new_arg, {
onResult: function( result ) {
//Error: Uncaught TypeError: Cannot set property 'job_item_id' of null in /interface/html5/#!m=TimeSheet&date=20150126&user_id=54286 line 6785
if ( !$this.current_edit_record ) {
return;
}
var data = result.getResult();
//Data must be an array of allowed id. If no results, data might be true or false from the API.
//Convert this to an array so that data can contain TTUUID.not_exist_id.
//This allows users to still select "default" or a different option that is not a normal record.
if ( !Array.isArray( data ) ) {
data = [];
}
if ( current_job_item_id === TTUUID.not_exist_id ) {
data.push( { id: TTUUID.not_exist_id } );
}
if ( current_job_item_id === -2 ) {
data.push( { id: -2 } );
}
if ( data.length == 0 ) {
setDefaultData( job_item_id_col_name );
}
}
} );
} else {
setDefaultData( job_item_id_col_name );
}
function setDefaultData( job_item_id_col_name ) {
if ( job_item_id_col_name == undefined ) {
job_item_id_col_name = 'job_item_id';
}
if ( $this.current_edit_record.hasOwnProperty( job_item_id_col_name ) ) {
job_item_widget.setValue( job.default_item_id );
$this.current_edit_record[job_item_id_col_name] = job.default_item_id;
if ( job.default_item_id === false || job.default_item_id === 0 || job.default_item_id === TTUUID.zero_id || job.default_item_id === TTUUID.not_exist_id ) {
$this.edit_view_ui_dic.job_item_quick_search.setValue( '' );
}
} else {
job_item_widget.setValue( '' );
$this.current_edit_record[job_item_id_col_name] = false;
$this.edit_view_ui_dic.job_item_quick_search.setValue( '' );
}
TTPromise.resolve( 'BaseViewController', 'setJobItemValueWhenJobChanged' );
}
}
setJobValueWhenCriteriaChanged( job_id_col_name, filter_data ) {
var $this = this;
//Error: Uncaught TypeError: Cannot set property 'job_id' of null in /interface/html5/#!m=TimeSheet&date=20150126&user_id=54286 line 6785
if ( !$this.current_edit_record || !$this.edit_view_ui_dic[job_id_col_name] ) {
return;
}
var job_widget = $this.edit_view_ui_dic[job_id_col_name];
var current_job_id = job_widget.getValue();
job_widget.setSourceData( null );
job_widget.setCheckBox( true );
this.edit_view_ui_dic['job_item_quick_search'].setCheckBox( true );
var args = {};
args.filter_data = filter_data;
$this.edit_view_ui_dic[job_id_col_name].setDefaultArgs( args );
//Make sure if current job is selected, and that its still available after new criteria.
if ( current_job_id && current_job_id != TTUUID.zero_id ) {
var new_arg = Global.clone( args );
//We are checking if the current selected record validates against the job costing criteria.
//To avoid issues with pagination we are only checking against the current selected record.
new_arg.filter_data.id = current_job_id;
new_arg.filter_columns = $this.edit_view_ui_dic[job_id_col_name].getColumnFilter();
$this.job_api.getJob( new_arg, {
onResult: function( result ) {
//Error: Uncaught TypeError: Cannot set property 'job_id' of null in /interface/html5/#!m=TimeSheet&date=20150126&user_id=54286 line 6785
if ( !$this.current_edit_record ) {
return;
}
var data = result.getResult();
//Data must be an array of allowed id. If no results, data might be true or false from the API.
//Convert this to an array so that data can contain TTUUID.not_exist_id.
//This allows users to still select "default" or a different option that is not a normal record.
if ( !Array.isArray( data ) ) {
data = [];
}
if ( current_job_id === TTUUID.not_exist_id ) {
data.push( { id: TTUUID.not_exist_id } );
}
if ( current_job_id === -2 ) {
data.push( { id: -2 } );
}
if ( data.length == 0 ) {
setDefaultData( job_id_col_name );
}
}
} );
} else {
setDefaultData( job_id_col_name );
}
function setDefaultData( job_id_col_name ) {
if ( job_id_col_name == undefined ) {
job_id_col_name = 'job_id';
}
job_widget.setValue( '' );
$this.current_edit_record[job_id_col_name] = false;
$this.edit_view_ui_dic.job_quick_search.setValue( '' );
}
}
onJobQuickSearch( key, value, job_id_field, job_item_id_field, filter_data ) {
var $this = this;
var args = {};
TTPromise.add( 'BaseViewController', 'onJobQuickSearch' );
if ( job_id_field == undefined ) {
job_id_field = 'job_id';
}
if ( job_item_id_field == undefined ) {
job_item_id_field = 'job_item_id';
}
//Error: Uncaught TypeErro: Cannot read property 'setValue' of undefined in /interface/html5/#!m=TimeSheet&date=20141222&user_id=13566 line 6686
if ( !$this.edit_view_ui_dic || !$this.edit_view_ui_dic[job_id_field] ) {
return;
}
if ( key === 'job_quick_search' ) {
args.filter_data = { manual_id: value, user_id: this.current_edit_record.user_id, status_id: '10' };
if ( this.current_edit_record.branch_id ) {
args.filter_data.punch_branch_id = this.current_edit_record.branch_id;
}
if ( this.current_edit_record.department_id ) {
args.filter_data.punch_department_id = this.current_edit_record.department_id;
}
this.job_api.getJob( args, {
onResult: function( result ) {
//Error: Uncaught TypeError: Cannot read property 'setValue' of undefined in /interface/html5/#!m=TimeSheet&date=20141222&user_id=13566 line 6686
if ( !$this.edit_view_ui_dic || !$this.edit_view_ui_dic[job_id_field] ) {
return;
}
var result_data = result.getResult();
if ( result_data.length > 0 ) {
$this.edit_view_ui_dic[job_id_field].setValue( result_data[0].id );
$this.current_edit_record[job_id_field] = result_data[0].id;
$this.setJobItemValueWhenJobChanged( result_data[0], job_item_id_field, filter_data );
} else {
$this.edit_view_ui_dic[job_id_field].setValue( '' );
$this.current_edit_record[job_id_field] = false;
$this.setJobItemValueWhenJobChanged( false, job_item_id_field, filter_data );
}
TTPromise.resolve( 'BaseViewController', 'onJobQuickSearch' );
}
} );
$this.edit_view_ui_dic['job_quick_search'].setCheckBox( true );
$this.edit_view_ui_dic[job_id_field].setCheckBox( true );
} else if ( key === 'job_item_quick_search' ) {
args.filter_data = { manual_id: value, job_id: this.current_edit_record[job_id_field], status_id: '10' };
this.job_item_api.getJobItem( args, {
onResult: function( result ) {
//Error: Uncaught TypeError: Cannot read property 'setValue' of undefined in /interface/html5/#!m=TimeSheet&date=20141222&user_id=13566 line 6686
if ( !$this.edit_view_ui_dic || !$this.edit_view_ui_dic[job_item_id_field] ) {
return;
}
var result_data = result.getResult();
if ( result_data.length > 0 ) {
$this.edit_view_ui_dic[job_item_id_field].setValue( result_data[0].id );
$this.current_edit_record[job_item_id_field] = result_data[0].id;
} else {
$this.edit_view_ui_dic[job_item_id_field].setValue( '' );
$this.current_edit_record[job_item_id_field] = false;
}
TTPromise.resolve( 'BaseViewController', 'onJobQuickSearch' );
}
} );
this.edit_view_ui_dic['job_item_quick_search'].setCheckBox( true );
this.edit_view_ui_dic[job_item_id_field].setCheckBox( true );
}
}
setDepartmentValueWhenBranchChanged( department, department_id_col_name, filter_data ) {
var $this = this;
if ( department_id_col_name == undefined ) {
department_id_col_name = 'department_id';
}
if ( !$this.current_edit_record || !$this.edit_view_ui_dic[department_id_col_name] ) {
return;
}
var department_widget = $this.edit_view_ui_dic[department_id_col_name];
var current_department_id = department_widget.getValue();
department_widget.setSourceData( null );
department_widget.setCheckBox( true );
var args = {};
args.filter_data = filter_data;
$this.edit_view_ui_dic[department_id_col_name].setDefaultArgs( args );
//Make sure if current department is selected, that its still available on the new job.
if ( current_department_id && current_department_id != TTUUID.zero_id ) {
var new_arg = Global.clone( args );
//We are checking if the current selected record validates against the job costing criteria.
//To avoid issues with pagination we are only checking against the current selected record.
new_arg.filter_data.id = current_department_id;
new_arg.filter_columns = $this.edit_view_ui_dic[department_id_col_name].getColumnFilter();
$this.department_api.getDepartment( new_arg, {
onResult: function( result ) {
if ( !$this.current_edit_record ) {
return;
}
var data = result.getResult();
//Data must be an array of allowed id. If no results, data might be true or false from the API.
//Convert this to an array so that data can contain TTUUID.not_exist_id.
//This allows users to still select "default" or a different option that is not a normal record.
if ( !Array.isArray( data ) ) {
data = [];
}
if ( current_department_id === TTUUID.not_exist_id ) {
data.push( { id: TTUUID.not_exist_id } );
}
if ( current_department_id === -2 ) {
data.push( { id: -2 } );
}
if ( data.length === 0 ) {
setDefaultData( department_id_col_name );
}
}
} );
} else {
setDefaultData( department_id_col_name );
}
function setDefaultData( department_id_col_name ) {
if ( department_id_col_name == undefined ) {
department_id_col_name = 'department_id';
}
if ( $this.current_edit_record.hasOwnProperty( department_id_col_name ) ) {
department_widget.setValue( department.default_item_id );
$this.current_edit_record[department_id_col_name] = department.default_item_id;
if ( department.default_item_id === false || department.default_item_id === 0 || department.default_item_id === TTUUID.zero_id || department.default_item_id === TTUUID.not_exist_id ) {
$this.edit_view_ui_dic.job_item_quick_search.setValue( '' );
}
} else {
department_widget.setValue( '' );
$this.current_edit_record[department_id_col_name] = false;
$this.edit_view_ui_dic.job_item_quick_search.setValue( '' );
}
}
}
setPunchTagValuesWhenCriteriaChanged( filter_data, punch_tag_id_col_name ) {
var $this = this;
if ( !$this.current_edit_record || !$this.edit_view_ui_dic[punch_tag_id_col_name] ) {
return;
}
var punch_tag_widget = $this.edit_view_ui_dic[punch_tag_id_col_name];
var current_punch_tag_ids = punch_tag_widget.getValue();
punch_tag_widget.setSourceData( null );
var args = {};
args.filter_data = filter_data;
punch_tag_widget.setDefaultArgs( args );
//Make sure if current punch tags are selected, that they are still available on the new punch tag list.
if ( current_punch_tag_ids && current_punch_tag_ids.length > 0 ) {
var new_arg = Global.clone( args );
new_arg.filter_data.id = current_punch_tag_ids;
//Disabling paging to the API ($disable_paging = true) so that the user can have more punch tags selected than their preference for items per page.
//Otherwise if they have 7 punch tags selected and their preference is 5, the api would only return 5 and 2 would be lost and unselected.
$this.punch_tag_api.getPunchTag( new_arg, true,{
onResult: function( punch_tag_result ) {
if ( !$this.current_edit_record ) {
return;
}
var data = punch_tag_result.getResult();
//Data must be an array of allowed punch tags. If no results, data might be true or false from the API.
//Convert this to an array so that data can contain TTUUID.not_exist_id.
//This allows users to still select "default" or a different option that is not a punch tag.
if ( !Array.isArray( data ) ) {
data = [];
}
if ( Array.isArray( data ) && Array.isArray( current_punch_tag_ids ) && current_punch_tag_ids.includes( TTUUID.not_exist_id ) ) {
data.push( { id: TTUUID.not_exist_id } );
}
if ( Array.isArray( data ) && data.length > 0 ) {
if ( current_punch_tag_ids !== TTUUID.zero_id && current_punch_tag_ids.length > 0 && $this.shouldUpdatePunchTags( current_punch_tag_ids, data ) ) {
//Merge in users last selected punch tags in case they switched back to that selection.
//Example: They have selected a New York branch punch tag but switch their selection to a different branch
//and then back to New York. In that case we should reselect the New York punch tag.
current_punch_tag_ids = _.union( current_punch_tag_ids, $this.previous_punch_tag_selection );
//Compare current selected punch tags and the list of punch tags from the API and remove invalid punch tags.
var intersected_values = current_punch_tag_ids.filter( punch_tag_id => data.some( punch_tag => punch_tag_id === punch_tag.id ) );
punch_tag_widget.setValue( intersected_values );
$this.current_edit_record[punch_tag_id_col_name] = intersected_values;
//Update manual IDs in punch_tag_quick_search.
var punch_tag_manual_ids = data.filter( punch_tag => intersected_values.includes( punch_tag.id ) ).map( ( { manual_id } ) => manual_id );
$this.edit_view_ui_dic['punch_tag_quick_search'].setValue( punch_tag_manual_ids.join() );
}
} else {
setDefaultData( punch_tag_id_col_name );
}
}
} );
} else {
setDefaultData( punch_tag_id_col_name );
}
function setDefaultData( punch_tag_id_col_name ) {
if ( $this.current_edit_record.hasOwnProperty( punch_tag_id_col_name ) ) {
punch_tag_widget.setValue( $this.default_punch_tag );
$this.current_edit_record[punch_tag_id_col_name] = $this.default_punch_tag;
if ( $this.default_punch_tag.length === 0 ) {
$this.edit_view_ui_dic.punch_tag_quick_search.setValue( '' );
}
} else {
punch_tag_widget.setValue( '' );
$this.current_edit_record[punch_tag_id_col_name] = false;
$this.edit_view_ui_dic.punch_tag_quick_search.setValue( '' );
}
}
}
shouldUpdatePunchTags( current_punch_tag_ids, data ) {
//If the current selected punch tags and previously user selected punch tags do not match we should check and update.
if ( Array.isArray( this.previous_punch_tag_selection ) && this.previous_punch_tag_selection.every( punch_tag => current_punch_tag_ids.includes( punch_tag ) ) === false ) {
return true;
}
//If the data returned from the API does not contain every currently selected punch tag then we need to remove invalid tags.
if ( current_punch_tag_ids.every( punch_tag_id => data.some( punch_tag => punch_tag.id === punch_tag_id ) ) === false ) {
return true;
}
}
setPunchTagQuickSearchManualIds( punch_tags, get_real_data ) {
if ( punch_tags == false || !this.edit_view_ui_dic['punch_tag_quick_search'] || ( Array.isArray( punch_tags ) && punch_tags.length === 0 ) ) {
return;
}
if ( punch_tags === TTUUID.not_exist_id || ( Array.isArray( punch_tags ) && punch_tags.includes( TTUUID.not_exist_id ) ) ) {
this.edit_view_ui_dic['punch_tag_quick_search'].setValue( '' );
return;
}
if ( get_real_data ) {
var $this = this;
var args = {};
args.filter_data = { id: punch_tags };
this.punch_tag_api.getPunchTag( args, {
onResult: function( result ) {
var data = result.getResult();
var manual_ids = [];
for ( var i = 0; i < data.length; i++ ) {
manual_ids.push( data[i].manual_id );
}
if ( $this.edit_view_ui_dic && $this.edit_view_ui_dic['punch_tag_quick_search'] ) {
$this.edit_view_ui_dic['punch_tag_quick_search'].setValue( manual_ids.join() );
}
}
} );
} else {
var manual_ids = [];
for ( var i = 0; i < punch_tags.length; i++ ) {
manual_ids.push( punch_tags[i].manual_id );
}
if ( this.edit_view_ui_dic && this.edit_view_ui_dic['punch_tag_quick_search'] ) {
this.edit_view_ui_dic['punch_tag_quick_search'].setValue( manual_ids.join() );
}
}
}
onPunchTagQuickSearch( value, filter_data, punch_tag_id_col_name ) {
var $this = this;
var args = {};
if ( !$this.edit_view_ui_dic || !$this.edit_view_ui_dic[punch_tag_id_col_name] ) {
return;
}
args.filter_data = filter_data;
args.filter_data.manual_id = value.split( ',' );
this.punch_tag_api.GetPunchTag( args, {
onResult: function( result ) {
if ( !$this.edit_view_ui_dic || !$this.edit_view_ui_dic[punch_tag_id_col_name] ) {
return;
}
var result_data = result.getResult();
$this.edit_view_ui_dic[punch_tag_id_col_name].setSourceData( null );
if ( result_data.length > 0 ) {
var punch_tags = result_data.map( punch_tag => punch_tag.id );
$this.edit_view_ui_dic[punch_tag_id_col_name].setValue( punch_tags );
$this.current_edit_record[punch_tag_id_col_name] = punch_tags;
$this.previous_punch_tag_selection = punch_tags;
} else {
$this.edit_view_ui_dic[punch_tag_id_col_name].setValue( '' );
$this.current_edit_record[punch_tag_id_col_name] = false;
$this.previous_punch_tag_selection = [];
}
delete args['manual_id'];
}
} );
this.edit_view_ui_dic['punch_tag_quick_search'].setCheckBox( true );
this.edit_view_ui_dic[punch_tag_id_col_name].setCheckBox( true );
}
getPunchTagFilterData() {
if ( !this.current_edit_record || !this.current_edit_record.user_id ) {
return {};
}
var filter_data = {
status_id: 10,
user_id: this.current_edit_record.user_id,
branch_id: this.current_edit_record.branch_id,
department_id: this.current_edit_record.department_id,
job_id: this.current_edit_record.job_id,
job_item_id: this.current_edit_record.job_item_id
};
return filter_data;
}
onCancelClick( force_no_confirm, cancel_all, callback ) {
TTPromise.add( 'base', 'onCancelClick' );
var $this = this;
//#2342 This logic is also in onSubMenuClick click in RibbonViewController
if ( !force_no_confirm
&&
(
$this.is_changed == true
|| ( LocalCacheData.current_open_primary_controller && LocalCacheData.current_open_primary_controller.edit_view && LocalCacheData.current_open_primary_controller.is_changed == true )
|| ( LocalCacheData.current_open_report_controller && LocalCacheData.current_open_report_controller.is_changed == true )
|| ( LocalCacheData.current_open_edit_only_controller && LocalCacheData.current_open_edit_only_controller.is_changed == true )
|| ( LocalCacheData.current_open_sub_controller && LocalCacheData.current_open_sub_controller.edit_view && LocalCacheData.current_open_sub_controller.is_changed == true )
) ) {
this.confirm_on_exit = true;
}
LocalCacheData.current_doing_context_action = 'cancel';
if ( this.confirm_on_exit == true ) {
TAlertManager.showConfirmAlert( Global.modify_alert_message, null, function( clicked_yes ) {
if ( clicked_yes === true ) {
doNext( force_no_confirm, cancel_all, callback );
} else {
TTPromise.reject( 'base', 'onCancelClick' );
}
} );
} else {
doNext( force_no_confirm, cancel_all, callback );
}
function doNext( force_no_confirm, cancel_all, callback ) {
if ( !$this.edit_view && $this.parent_view_controller && $this.sub_view_mode ) {
$this.parent_view_controller.is_changed = false;
$this.parent_view_controller.confirm_on_exit = false;
$this.parent_view_controller.buildContextMenu( true );
$this.parent_view_controller.onCancelClick( true ); //Force no confirm so we don't get two messages when cancelling from Edit Employee -> Wage (tab) -> Edit Wage.
} else {
$this.removeEditView( true );
}
if ( cancel_all ) {
if ( LocalCacheData.current_open_edit_only_controller ) {
LocalCacheData.current_open_edit_only_controller.onCancelClick( force_no_confirm, cancel_all );
} else if ( LocalCacheData.current_open_sub_controller && LocalCacheData.current_open_sub_controller.edit_view ) {
LocalCacheData.current_open_sub_controller.onCancelClick( force_no_confirm, cancel_all );
} else if ( LocalCacheData.current_open_primary_controller && LocalCacheData.current_open_primary_controller.edit_view ) {
LocalCacheData.current_open_primary_controller.onCancelClick( force_no_confirm, cancel_all );
} else if ( LocalCacheData.current_open_report_controller ) {
LocalCacheData.current_open_report_controller.onCancelClick( force_no_confirm, cancel_all );
}
}
if ( callback ) {
callback();
}
Global.setUIInitComplete();
TTPromise.resolve( 'base', 'onCancelClick' );
}
}
//Don't call super if override this function.
onFormItemChange( target, doNotValidate ) {
// Error: TypeError: this.current_edit_record is undefined in interface/html5/views/BaseViewController.js?v=9.0.7-20160202-113244 line 1691
if ( !this.current_edit_record ) {
return;
}
this.setIsChanged( target );
this.setMassEditingFieldsWhenFormChange( target );
var key = target.getField();
this.current_edit_record[key] = target.getValue();
if ( !doNotValidate ) {
this.validate();
}
}
setIsChanged( target ) {
var key = target.getField();
if ( this.current_edit_record && this.current_edit_record[key] != target.getValue() ) {
this.is_changed = true;
}
}
onFormItemKeyUp( target ) {
}
onFormItemKeyDown( target ) {
}
setMassEditingFieldsWhenFormChange( target ) {
var $this = this;
if ( this.is_mass_editing ) {
var field = target.getField();
var linked_fields = [];
var is_linked_field = false;
$.each( this.linked_columns, function( index, value ) {
if ( value !== field ) {
linked_fields.push( value );
} else {
is_linked_field = true;
}
} );
if ( is_linked_field ) {
$.each( linked_fields, function( index, value ) {
var is_checked = $this.edit_view_ui_dic[field].isChecked();
$this.edit_view_ui_dic[value].setCheckBox( is_checked );
} );
}
}
}
initEditViewTabs( tab_options ) {
var $this = this;
if( tab_options === undefined ) {
tab_options = {
activate: function( e, ui ) {
if ( !$this.edit_view_tab || !$this.edit_view_tab.is( ':visible' ) ) {
return;
}
$this.onTabShow( e, ui );
Global.triggerAnalyticsTabs( e, ui );
}
}
}
this.setTabOVisibility( false );
this.edit_view_tab = this.edit_view_tab.tabs( tab_options );
this.edit_view_tab.off( 'click' ).on( 'click', function( e ) {
$this.onTabIndexChange( e );
} );
}
setTabHtml( tab_model ) {
// TODO: Go off tab_model not labels. Will need to do this anyway, as we trigger earlier.
// HTML2JS TODO: For now this will just generate the tab labels, and once that works, we move on to the tab content div's.
// TODO: This needs to be triggered sooner in BaseView.initEditViewUI as currently it happens after the .tabs() initialization and causing the class styles for tabs not to be added to the right tab elems, as they did not exist at the time to be added.
// Maybe directly into initEditViewUI, as theres only 11 overrides for that.
var tab_bar_labels = this.edit_view.find( '.edit-view-tab-bar-label' );
var tab_bar_content; // insert after the label element.
// find the html first, and check if its not already set.
if( tab_bar_labels.children().length === 0 ) { // TODO: Perhaps in future also count number of children and compare against labels. If not matching, clear and start again.
// No label elements found, likely using the new templating logic. Continue to generate the tab html.
// Notes
/* Fri Dec 17
TODO:
- 1. [Done]. First add the save and continue divs into templates as if subview.
1b. Fix subview state issues on Employee->Employees tabs.
- 2. then hardcode the hierarchy behaviour into its tab_model
- 3. also hardcode potentially audit, but it might be covered by 1.
- 4. qualifactions tab hardcoded with the subview things.
- 5. sort out the first-column second column.
--- either hardcode into the tab_model for number of columns or
--- count the number of child elements in second column, and if zero, remove,
and then add full width into the first column element.
- 6. what was the subviewcontroller errors on some tabs. might be solved by 1. check employee view tabs.
*/
// search for 'first-column full' - 73+ files
// search for 'second-column' - 27 files
// therefore first-column full width will be default, and second column will be specified in view controller, to avoid lots of avoidable editing of view files.
for ( let tab_id in tab_model ) {
// Create and insert the label elements.
var new_tab_label_li = document.createElement( 'li' );
var new_tab_label_li_a = document.createElement( 'a' );
new_tab_label_li_a.setAttribute('ref', tab_id );
new_tab_label_li_a.setAttribute('href', '#' + tab_id );
new_tab_label_li.appendChild( new_tab_label_li_a );
tab_bar_labels.append( new_tab_label_li ); // jQuery append()
// TODO: Could also directly set the label value part here too in future.
}
} else {
// Do nothing, labels already exist, likely from legacy html template loading.
}
var tab_bar_parent = tab_bar_labels.parent();
var tab_bar_content_divs = tab_bar_parent.find( '.edit-view-tab-outside' );
if( tab_bar_content_divs.children().length === 0 ) {
// Create and insert the tab content divs
for ( let tab_id in tab_model ) {
// Create and insert the label elements.
let tab_content_html = '';
let tab = tab_model[ tab_id ];
let is_sub_view = inferSubViewFromTab( tab ); // TODO: HTML2JS: Improve this to avoid inferring, by adding is_sub_view to relevant tab models.
if( tab.html_template ) {
// html template provided as override, do not use HtmlTemplatesGlobal. Only used for complex one-off tab html's.
tab_content_html = tab.html_template;
} else {
tab_content_html = $( HtmlTemplatesGlobal.genericTab({
tab_id: tab_id,
is_multi_column: tab.is_multi_column ? true : false,
show_permission_div: tab.show_permission_div ? true : false,
is_sub_view: is_sub_view // to convert undefined's to false
}));
}
tab_bar_parent.append( tab_content_html ); // Insert each new tab content at the end of tab_bar div (and after the ul.edit-view-tab-bar-label element, and other tab contents.)
}
// tab_bar.append( $( HtmlTemplatesGlobal.auditTab()) ); // after all the tab contents, add the audit tab. (TODO: handle situations where audit not needed). Auctually, audit should be in the list of tabs already. comment out for now.
// switch ( tab_ref_key ) {
// case x:
// // code block
// break;
// case y:
// // code block
// break;
// default:
// // code block
// }
} else {
// tab_bar_content_divs.length must be greater than 0
// Do nothing, and no html will be affected.
}
function inferSubViewFromTab( tab ) {
if ( tab.is_sub_view == true ) {
return true;
}
if( tab.init_callback === undefined ) {
return false;
}
var init_callback_string = tab.init_callback || '';
var infer_subview_tab_state = init_callback_string.toLowerCase().indexOf( 'sub' ) !== -1;
if ( infer_subview_tab_state === true ) {
// This one is a little more experimental (assumes all sub views have init callback functions named with 'sub'), but might work as temporary during refactor.
return true;
}
// Nothing matched, return false by default.
return false;
}
}
setTabLabels( source ) {
for ( var key in source ) {
this.edit_view.find( 'a[ref=' + key + ']' ).text( source[key] );
}
}
getTabModel() {
return this.tab_model;
}
setTabModel( model ) {
var tab_labels = {};
for ( var i in model ) {
//If the model is "true", then use default models for audit/attachment tabs.
if ( i == 'tab_audit' && model[i] === true ) {
model['tab_audit'] = {
'label': $.i18n._( 'Audit' ),
'init_callback': 'initSubLogView',
'display_on_mass_edit': false,
'display_on_add': false
};
} else if ( i == 'tab_attachment' && model[i] === true ) {
model['tab_attachment'] = {
'label': $.i18n._( 'Attachment' ),
'init_callback': 'initSubDocumentView',
'display_on_mass_edit': false
};
}
if ( model[i].hasOwnProperty( 'label' ) && model[i].label != '' ) {
tab_labels[i] = model[i].label;
}
}
this.tab_model = model;
this.setTabHtml( model );
this.initEditViewTabs();
this.setTabLabels( tab_labels );
return true;
}
onTabShow( e, ui ) {
if ( !this.current_edit_record ) {
return;
}
var key = this.getEditViewTabIndex();
this.editFieldResize( key );
var tab_model = this.getTabModel();
if ( tab_model != null ) {
if ( ui && ui.oldTab ) {
var prev_tab_name = ui.oldTab.find( 'a' )[0].getAttribute( 'href' ).substring( 1 );
if ( tab_model[prev_tab_name] && tab_model[prev_tab_name].hasOwnProperty( 'on_exit_callback' ) && tab_model[prev_tab_name].on_exit_callback != '' ) {
this[tab_model[prev_tab_name].on_exit_callback]( prev_tab_name ); //Call mapped function to initialize the tab.
}
}
//ReFactored path to handle tabs based on a tab model mapping defined in each view class.
//This abstracts the entry point for all tabs initializations to help with hiding/showing them and to reduce code duplication.
var tab_name = null;
var sub_view_div = null;
var tab_bar = this.edit_view.find( '.edit-view-tab-bar li.ui-tabs-active' ).find( 'a' );
if ( tab_bar.length > 0 ) {
tab_name = tab_bar[0].getAttribute( 'href' ).substring( 1 ); //Remove the '#';
sub_view_div = this.edit_view_tab.find( '#' + tab_name ).find( '.first-column-sub-view' );
}
if ( sub_view_div && sub_view_div.length > 0 && this.tab_model[tab_name] && !this.tab_model[tab_name].initialized ) { //Only hide grid on first initialization as it has to load all the data. Otherwise the 2nd time the user goes to the tab they will see some minor "flashing"
TTPromise.add( 'BaseViewController', 'onTabShow' );
TTPromise.wait( 'BaseViewController', 'onTabShow', function() {
sub_view_div.css( 'opacity', '1' );
} );
sub_view_div.css( 'opacity', '0' ); //Hide the grid while its loading/sizing.
this.tab_model[tab_name].initialized = true;
}
if ( tab_model[tab_name] ) {
//this.edit_view_tab.find( '#'+ tab_name ).find( '.first-column-sub-view' ).css( 'display', 'block' );
//Call the init_callback even if we are editing an existing record or creating a new one.
// As some views (ie: OverTime Policy) need to control whats shown on each tab regardless of if we are editing or adding.
if ( tab_model[tab_name].hasOwnProperty( 'init_callback' ) && tab_model[tab_name].init_callback != '' ) {
this[tab_model[tab_name].init_callback]( tab_name ); //Call mapped function to initialize the tab.
} else {
//Assume primary tab and build context menu.
if ( this.current_edit_record.id && this.current_edit_record.id != TTUUID.zero_id ) {
this.setEditMenu();
} else {
//this.edit_view_tab.find( '#'+ tab_name ).find( '.first-column-sub-view' ).css( 'display', 'none' ); //This would prevent the grid from showing in Attendance -> TimeSheet, Accumulated Time view.
//this.edit_view_tab.find( '#'+ tab_name ).find( '.first-column-sub-view' ).css( 'display', 'block' );
this.showSaveAndContinueButton();
}
}
// if ( this.current_edit_record.id ) {
// //this.edit_view_tab.find( '#'+ tab_name ).find( '.first-column-sub-view' ).css( 'display', 'block' );
// if ( tab_model[tab_name].hasOwnProperty('init_callback') && tab_model[tab_name].init_callback != '' ) {
// this[tab_model[tab_name].init_callback]( tab_name ); //Call mapped function to initialize the tab.
// } else {
// //Assume primary tab and build context menu.
// this.buildContextMenu( true );
// this.setEditMenu();
// }
// } else {
// //this.edit_view_tab.find( '#'+ tab_name ).find( '.first-column-sub-view' ).css( 'display', 'none' ); //This would prevent the grid from showing in Attendance -> TimeSheet, Accumulated Time view.
// //this.edit_view_tab.find( '#'+ tab_name ).find( '.first-column-sub-view' ).css( 'display', 'block' );
// this.edit_view.find( '.save-and-continue-div' ).css( 'display', 'block' );
// }
} else {
//Assume primary tab and build context menu.
this.buildContextMenu( true );
this.setEditMenu();
}
} else {
//Handle most cases that one tab and on audit tab
if ( key === 1 ) {
if ( this.current_edit_record.id && this.current_edit_record.id != TTUUID.zero_id ) {
this.edit_view_tab.find( '#tab_audit' ).find( '.first-column-sub-view' ).css( 'display', 'block' );
this.initSubLogView( 'tab_audit' );
} else {
this.edit_view_tab.find( '#tab_audit' ).find( '.first-column-sub-view' ).css( 'display', 'none' );
this.showSaveAndContinueButton();
}
} else {
this.buildContextMenu( true );
this.setEditMenu();
}
}
}
//When overriding this function, always call super() so it can handle tab_audit/tab_attachment on its own.
checkTabPermissions( tab ) {
var retval = true; //Most tabs are shown, so default to true.
switch ( tab ) {
case 'tab_audit':
retval = this.subAuditValidate();
break;
case 'tab_attachment':
retval = this.subDocumentValidate();
break;
}
return retval;
}
setTabStatus() {
// exception that edit_view_tab is null
if ( !this.edit_view_tab ) {
return;
}
var tab_model = this.getTabModel();
if ( tab_model != null ) {
var visible_tab_indexes = Array();
//ReFactored path to handle tabs based on a tab model mapping defined in each view class.
//This abstracts the entry point for all tabs initializations to help with hiding/showing them and to reduce code duplication.
for ( var i in tab_model ) {
var tab_index = $( this.edit_view_tab.find( 'ul li a[ref="' + i + '"]' ) ).parent().index();
if ( ( this.is_mass_editing && tab_model[i].hasOwnProperty( 'display_on_mass_edit' ) && tab_model[i].display_on_mass_edit == false )
|| ( ( this.is_add || this.is_mass_adding ) && tab_model[i].hasOwnProperty( 'display_on_add' ) && tab_model[i].display_on_add == false ) ) {
$( this.edit_view_tab.find( 'ul li a[ref="' + i + '"]' ) ).parent().hide();
} else {
if ( this.checkTabPermissions( i ) == true ) {
$( this.edit_view_tab.find( 'ul li a[ref="' + i + '"]' ) ).parent().show();
visible_tab_indexes.push( tab_index );
} else {
$( this.edit_view_tab.find( 'ul li a[ref="' + i + '"]' ) ).parent().hide();
}
}
}
//Always start with the first tab that actually has permissions to be shown. This is important for sub-views like Edit Employee, Tax, New icon, where it shows only a single tab where there are really 5+ tabs just hidden.
visible_tab_indexes = visible_tab_indexes.sort( function( a, b ) {
return a - b;
} ); //numeric sort.
if ( visible_tab_indexes[0] ) {
this.edit_view_tab.tabs( 'option', 'active', visible_tab_indexes[0] );
}
} else {
//Handle most cases that one tab and on audit tab
if ( this.is_mass_editing ) {
$( this.edit_view_tab.find( 'ul li a[ref="tab_audit"]' ) ).parent().hide();
this.edit_view_tab.tabs( 'option', 'active', 0 );
} else {
if ( this.subAuditValidate() ) {
$( this.edit_view_tab.find( 'ul li a[ref="tab_audit"]' ) ).parent().show();
} else {
$( this.edit_view_tab.find( 'ul li a[ref="tab_audit"]' ) ).parent().hide();
this.edit_view_tab.tabs( 'option', 'active', 0 );
}
}
}
this.editFieldResize( 0 );
}
onTabIndexChange( e ) {
TTPromise.add( 'BaseViewController', 'onTabIndexChange' );
TTPromise.wait();
if ( ( !this.sub_view_mode && !this.edit_only_mode ) || typeof this.initReport == 'function' ) {
var current_url = window.location.href;
if ( current_url.indexOf( '&tab' ) > 0 ) {
current_url = current_url.substring( 0, current_url.indexOf( '&tab' ) );
}
var tab_name = this.edit_view_tab.find( '.edit-view-tab-bar-label' ).children().eq( this.getEditViewTabIndex() ).text();
tab_name = tab_name.replace( /\/|\s+/g, '' );
current_url = current_url + '&tab=' + tab_name;
Global.setURLToBrowser( current_url );
}
this.hideErrorTips();
TTPromise.resolve( 'BaseViewController', 'onTabIndexChange' );
}
hideErrorTips() {
for ( var key in this.edit_view_error_ui_dic ) {
//#2581 - Uncaught TypeError: this.edit_view_error_ui_dic[key].hideErrorTip is not a function
if ( this.edit_view_error_ui_dic[key] && typeof this.edit_view_error_ui_dic[key].hideErrorTip == 'function' ) {
this.edit_view_error_ui_dic[key].hideErrorTip();
}
}
this.removeEditViewErrorTip();
}
//removed workarounds and comments for qtip1 when upgrading to qtip2.
removeEditViewErrorTip() {
if ( $( '.qtip2-error-tip:visible' ) ) {
$( '.qtip2-error-tip' ).remove();
}
}
removeEditViewWarningTip() {
if ( $( '.qtip2-warning-tip:visible' ) ) {
$( '.qtip2-warning-tip' ).remove();
}
}
onCountryChange() {
var selectVal = this.edit_view_ui_dic['country'].getValue();
this.eSetProvince( selectVal, true );
this.clearErrorTips();
this.setEditMenu();
}
//Make sure this.current_edit_record is updated before validate
validate( api ) {
if ( this.enable_validation ) {
//Allow alternate api to be validated.
if ( api == undefined ) {
var api = this.api;
}
var $this = this;
var record = {};
if ( this.is_mass_editing ) {
for ( var key in this.edit_view_ui_dic ) {
if ( !this.edit_view_ui_dic.hasOwnProperty( key ) ) {
continue;
}
var widget = this.edit_view_ui_dic[key];
if ( Global.isSet( widget.isChecked ) ) {
if ( widget.isChecked() && widget.getEnabled() ) {
record[key] = this.current_edit_record[key]; // Note: Some view controllers use widget.getValue() instead of current_edit_record[key]
}
}
}
} else {
record = this.current_edit_record;
}
record = this.uniformVariable( record );
api['validate' + api.key_name]( record, {
onResult: function( result ) {
$this.validateResult( result );
}
} );
} else {
Debug.Text( 'Validation disabled', 'BaseViewController.js', 'BaseViewController', 'validate', 10 );
}
}
validateResult( result ) {
var $this = this;
$this.clearErrorTips(); //Always clear error
if ( !$this.edit_view ) {
return;
}
if ( !result ) {
return;
}
if ( result.isValid() ) {
$this.edit_view.attr( 'validate_complete', true );
$this.setEditMenu();
} else {
$this.setErrorMenu();
$this.setErrorTips( result, this.show_warning_when_validation );
}
}
clearErrorTips() {
for ( var key in this.edit_view_error_ui_dic ) {
//Error: Uncaught TypeError: Cannot read property 'clearErrorStyle' of undefined in /interface/html5/views/BaseViewController.js?v=8.0.0-20141117-111140 line 1779
if ( !this.edit_view_error_ui_dic.hasOwnProperty( key ) || !this.edit_view_error_ui_dic[key] ) {
continue;
}
this.edit_view_error_ui_dic[key].clearErrorStyle();
}
// Error: Uncaught TypeError: Cannot read property 'interfaces' of undefined in interface/html5/framework/jquery.qtip.min.js?v=9.0.0-20150918-221906 line 15
this.removeEditViewErrorTip();
this.removeEditViewWarningTip();
$( '.error-tab' ).removeClass( 'error-tab' );
$( '.error-tab-hide' ).removeClass( 'error-tab-hide' );
$( '.warning-tab' ).removeClass( 'warning-tab' );
$( '.warning-tab-hide' ).removeClass( 'warning-tab-hide' );
// Clear pulse on tabs
if ( this.pulse_time_dic ) {
for ( var key1 in this.pulse_time_dic ) {
clearInterval( this.pulse_time_dic[key1] );
}
this.pulse_time_dic = {};
}
this.edit_view_error_ui_dic = {};
$( '.qtip .qtip2-error-tip' ).remove();
}
//Override this if more than one tab
setErrorTips( result, show_warning ) {
this.clearErrorTips();
if ( !Global.isSet( show_warning ) ) {
show_warning = true;
}
//Error: Unable to get property 'find' of undefined or null reference in http://timeclock:8085/interface/html5/views/BaseViewController.js?v=7.4.3-20140926-105827 line 1769
if ( !this.edit_view_tab ) {
return;
}
var details = result.getDetails();
// Only check first item
// Error: Uncaught TypeError: Cannot call method 'hasOwnProperty' of undefined in /interface/html5/views/BaseViewController.js?v=9.0.0-20150822-134259 line 1879
// Zero is not always the first element;
var first_el = 0;
for ( var first_el in details ) {
break;
}
if ( details && details[first_el] && details[first_el].hasOwnProperty( 'error' ) ) {
this.setErrorTipsError( result );
} else if ( details && details[first_el] && details[first_el].hasOwnProperty( 'warning' ) ) { //Error: TypeError: details[0] is undefined in https://greenacres.timetrex.com/interface/html5/views/BaseViewController.js?v=9.0.0-20150822-105118 line 1883
if ( show_warning ) {
this.setErrorTipsWarning( result );
}
this.setEditMenu();
} else if ( result.getCode() == 'PERMISSION' || result.getCode() == 'VALIDATION' ) {
TAlertManager.showErrorAlert( result );
} else {
// Make sure current codes work.
this.setErrorTipsError( result );
}
}
setErrorTipsWarning( result ) {
var $this = this;
var widget;
// when do validation, only show warning no alert
var $current_doing_context_action = LocalCacheData.current_doing_context_action; //#2474 - LocalCacheData.current_doing_context_action can change to "validate" while waiting for user to respond to warning box.
if ( $current_doing_context_action != 'validate' ) {
TAlertManager.showWarningAlert( result, function( flag ) {
if ( flag ) {
switch ( $current_doing_context_action ) {
case 'save':
$this.onSaveClick( true );
break;
case 'save_and_continue':
$this.onSaveAndContinue( true );
break;
case 'save_and_next':
$this.onSaveAndNextClick( true );
break;
case 'save_and_copy':
$this.onSaveAndCopy( true );
break;
case 'new':
$this.onSaveAndNewClick( true );
break;
case 'authorize': //Allow validation warnings to work when authorizing Request/TimeSheet/Expense.
$this.onAuthorizationClick( true );
break;
}
} else {
$this.show_warning_when_validation = true;
}
} );
}
//Error: Unable to get property 'warning' of undefined or null reference
var error_list = [];
if ( result.getDetails().length == 1 ) {
error_list = result.getDetails()[0].warning;
}
var found_in_current_tab = false;
for ( var key in error_list ) {
if ( !error_list.hasOwnProperty( key ) ) {
continue;
}
if ( Global.isSet( this.edit_view_ui_dic[key] ) && this.edit_view_ui_dic[key].closest( document.documentElement ).length > 0 ) {
widget = this.edit_view_ui_dic[key];
} else if ( Global.isSet( this.edit_view_ui_validation_field_dic[key] ) ) {
if ( Global.isArray( this.edit_view_ui_validation_field_dic[key] ) ) {
var len = this.edit_view_ui_validation_field_dic[key].length;
for ( var i = 0; i < len; i++ ) {
var item = this.edit_view_ui_validation_field_dic[key][i];
if ( item.closest( document.documentElement ).length > 0 ) {
widget = item;
break;
}
}
} else if ( this.edit_view_ui_validation_field_dic[key].closest( document.documentElement ).length > 0 ) {
widget = this.edit_view_ui_validation_field_dic[key];
} else {
continue;
}
} else if ( key.indexOf( '_id' ) < 0 && Global.isSet( this.edit_view_ui_dic[key + '_id'] ) && this.edit_view_ui_dic[key + '_id'].closest( document.documentElement ).length > 0 ) {
widget = this.edit_view_ui_dic[key + '_id'];
} else {
continue;
}
if ( error_list[key] ) {
var show_error = false;
if ( widget.is( ':visible' ) ) {
show_error = true;
found_in_current_tab = true;
}
if ( typeof widget.setErrorStyle === 'function' ) { //Fix JS exception: Uncaught TypeError: widget.setErrorStyle is not a function
widget.setErrorStyle( error_list[key], show_error, true );
}
}
this.showErrorStatusOnTab( widget, false );
this.edit_view_error_ui_dic[key] = widget;
}
if ( !found_in_current_tab ) {
this.showEditViewError( result );
}
}
showErrorStatusOnTab( widget, isError ) {
var parentContainer = widget.parent();
var i = 0;
while ( !parentContainer.hasClass( 'edit-view-tab-outside' ) && i < 5 ) {
i = i + 1;
parentContainer = parentContainer.parent();
}
if ( parentContainer.hasClass( 'edit-view-tab-outside' ) ) {
var id = parentContainer.attr( 'id' );
var tab = this.edit_view.find( 'a[ref="' + id + '"]' );
if ( isError ) {
tab.parent().addClass( 'error-tab' );
this.startPulse( id, tab.parent() );
} else {
tab.parent().addClass( 'warning-tab' );
this.startPulse( id, tab.parent(), true );
}
}
}
startPulse( tab_id, target, is_warning ) {
var $this = this;
if ( !this.pulse_time_dic ) {
this.pulse_time_dic = {};
}
if ( this.pulse_time_dic[tab_id] ) {
cleanTimer( tab_id );
}
this.pulse_time_dic[tab_id] = setInterval( function() {
if ( is_warning ) {
if ( target.hasClass( 'warning-tab-hide' ) ) {
target.removeClass( 'warning-tab-hide' );
} else if ( target.hasClass( 'warning-tab' ) ) {
target.addClass( 'warning-tab-hide' );
} else {
cleanTimer( tab_id );
}
} else {
if ( target.hasClass( 'error-tab-hide' ) ) {
target.removeClass( 'error-tab-hide' );
} else if ( target.hasClass( 'error-tab' ) ) {
target.addClass( 'error-tab-hide' );
cleanTimer( tab_id );
setTimeout( function() {
if ( target.hasClass( 'error-tab-hide' ) ) {
target.removeClass( 'error-tab-hide' );
}
$this.startPulse( tab_id, target, is_warning );
}, 1700 );
} else {
cleanTimer( tab_id );
}
}
}, 2000 );
function cleanTimer( tab_id ) {
clearInterval( $this.pulse_time_dic[tab_id] );
$this.pulse_time_dic[tab_id] = null;
}
}
setErrorTipsError( result ) {
//Error: TypeError: details[0] is undefined in interface/html5/views/BaseViewController.js?v=9.0.0-20150822-105118 line 1883
// Zero is not always the firwst index.
var result_array = result.getDetails() ? result.getDetails() : {};
var first_el = 0;
for ( var first_el in result_array ) {
break;
}
var error_list = result_array ? result_array[first_el] : {};
var widget;
if ( error_list && error_list.hasOwnProperty( 'error' ) ) {
error_list = error_list.error;
}
var found_in_current_tab = false;
for ( var key in error_list ) {
if ( !error_list.hasOwnProperty( key ) ) {
continue;
}
if ( Global.isSet( this.edit_view_ui_dic[key] ) && this.edit_view_ui_dic[key].closest( document.documentElement ).length > 0 ) {
widget = this.edit_view_ui_dic[key];
} else if ( Global.isSet( this.edit_view_ui_validation_field_dic[key] ) ) {
if ( Global.isArray( this.edit_view_ui_validation_field_dic[key] ) ) {
var len = this.edit_view_ui_validation_field_dic[key].length;
for ( var i = 0; i < len; i++ ) {
var item = this.edit_view_ui_validation_field_dic[key][i];
if ( item.closest( document.documentElement ).length > 0 ) {
widget = item;
break;
}
}
} else if ( this.edit_view_ui_validation_field_dic[key].closest( document.documentElement ).length > 0 ) {
widget = this.edit_view_ui_validation_field_dic[key];
} else {
continue;
}
} else if ( key.indexOf( '_id' ) < 0 && Global.isSet( this.edit_view_ui_dic[key + '_id'] ) && this.edit_view_ui_dic[key + '_id'].closest( document.documentElement ).length > 0 ) {
widget = this.edit_view_ui_dic[key + '_id'];
} else {
continue;
}
if ( widget.is( ':visible' ) ) {
// Error: Uncaught TypeError: widget.setErrorStyle is not a function
if ( widget.setErrorStyle && typeof widget.setErrorStyle == 'function' ) {
widget.setErrorStyle( error_list[key], true );
found_in_current_tab = true;
} else {
Debug.Text( 'ERROR: widget.setErrorStyle is not a function.', 'BaseViewController.js', 'BaseViewController', null, 10 );
}
} else {
// Error: Uncaught TypeError: widget.setErrorStyle is not a function
if ( widget.setErrorStyle && typeof widget.setErrorStyle == 'function' ) {
widget.setErrorStyle( error_list[key] );
} else {
Debug.Text( 'ERROR: widget.setErrorStyle is not a function.', 'BaseViewController.js', 'BaseViewController', null, 10 );
}
}
this.showErrorStatusOnTab( widget, true );
this.edit_view_error_ui_dic[key] = widget;
}
if ( !found_in_current_tab ) {
this.showEditViewError( result );
}
}
showEditViewError( result ) {
var details = result.getDetails()[0];
var isError = true;
//Error: TypeError: details is undefined in interface/html5/views/BaseViewController.js?v=9.0.0-20150908-081451 line 2078
if ( !details ) {
return;
}
if ( details.hasOwnProperty( 'error' ) ) {
details = details.error;
isError = true;
} else if ( details.hasOwnProperty( 'warning' ) ) {
isError = false;
details = details.warning;
}
var error_string = '';
var background_color = isError ? '#cb2e2e' : '#ffff00';
var color = isError ? '#fff' : '#000';
var border_color = isError ? '#CB2E2E' : '#e7be00';
error_string = Global.convertValidationErrorToString( details );
this.removeEditViewErrorTip();
this.edit_view.find('.ui-helper-reset').qtip( {
show: {
when: false,
ready: true
},
events: {
hide: function( event, api ) {
event.preventDefault();
}
},
content: error_string,
style: {
classes: isError ? 'qtip2-error-tip' : 'qtip2-warning-tip', //used for styling and removal.
tip: {
corner: 'bottom center'
}
},
position: {
my: 'bottom left',
at: 'top center'
}
} );
}
openEditView() {
if ( !this.edit_view ) {
this.initEditViewUI( this.viewId, this.edit_view_tpl );
}
}
setTabOVisibility( flag ) {
var tab0 = $( this.edit_view_tab.find( '.edit-view-tab' )[0] );
if ( flag ) {
tab0.css( 'opacity', 1 );
this.setEditViewTabSize();
if ( this.edit_view_close_icon ) {
this.edit_view_close_icon.show();
}
} else {
this.edit_view_tab.find( 'ul li' ).hide();
tab0.css( 'opacity', 0 );
}
}
//set widget disablebility if view mode or edit mode
setEditViewWidgetsMode() {
var did_clean_dic = {};
for ( var key in this.edit_view_ui_dic ) {
if ( !this.edit_view_ui_dic.hasOwnProperty( key ) ) {
continue;
}
var widget = this.edit_view_ui_dic[key];
widget.css( 'opacity', 1 );
var column = widget.parent().parent().parent();
var tab_id = column.parent().attr( 'id' );
if ( !column.hasClass( 'v-box' ) ) {
if ( !did_clean_dic[tab_id] ) {
did_clean_dic[tab_id] = true;
}
}
if ( this.is_viewing ) {
if ( Global.isSet( widget.setEnabled ) ) {
widget.setEnabled( false );
}
} else {
if ( Global.isSet( widget.setEnabled ) ) {
widget.setEnabled( true );
}
}
}
}
//Call this when edit view open
initEditViewUI( view_id, edit_view_file_name ) {
Global.setUINotready();
TTPromise.add( 'init', 'init' );
TTPromise.wait();
var $this = this;
if ( this.edit_view ) {
this.edit_view.remove();
}
this.edit_view = $( Global.loadViewSource( view_id, edit_view_file_name, null, true ) );
this.edit_view_tab = $( this.edit_view.find( '.edit-view-tab-bar' ) );
this.edit_view_tab.css( 'opacity', 0 );
//Give edt view tab a id, so we can load it when put right click menu on it
this.edit_view_tab.attr( 'id', this.ui_id + '_edit_view_tab' );
// Moved into generic BaseView.initEditViewTabs
// this.setTabOVisibility( false );
// this.edit_view_tab = this.edit_view_tab.tabs( {
// activate: function( e, ui ) {
// if ( !$this.edit_view_tab || !$this.edit_view_tab.is( ':visible' ) ) {
// return;
// }
//
// $this.onTabShow( e, ui );
// Global.triggerAnalyticsTabs( e, ui );
// }
// } );
// this.edit_view_tab.off( 'click' ).on( 'click', function( e ) {
// $this.onTabIndexChange( e );
// } );
Global.contentContainer().append( this.edit_view );
// Moved to buildEditViewUI, as the init might only be called once, and the context menu needs to be rebuilt on every view build.
// // After we add the edit_view to the page, add the context menu (Vue needs a valid id in dom)
// if( ContextMenuManager.getMenu( this.determineContextMenuMountAttributes().id ) === undefined ) {
// this.buildContextMenu();
// }
// #VueContextMenu#Dynamic-EditView Once edit view html has loaded and mounted to DOM, then insert container for context_menu and initialise menu.
// Testing to see if just having the code in buildContextMenu is enough.
// if( !this.edit_view_context_menu ) {
// var context_menu_id = 'contextmenu-' + this.edit_view_tab.attr( 'id' );
// this.edit_view_context_menu = new ContextMenuManager( context_menu_id ); // #VueContextMenu# Initialize Vue ContextMenuManager here so that each view has their own unique one. Currently we are sharing one contextmenu, but most views use their own context menu manager instance. (Not required, just simplifies the refactor for now, and it might be used in future).
//
// // Create dynamic container for the vue context menu
// // this.edit_view_context_menu.setContextMenuId( 'contextmenu-' + this.edit_view_tab.attr( 'id' ) ); // TODO: Potentially move this into param for constructor.
// this.edit_view_tab.prepend('<div id="'+ this.edit_view_context_menu.menu_id +'"></div>');
//
// // Create and mount unique context menu for this view.
// this.edit_view_context_menu.mountContextMenu( '#' + this.edit_view_context_menu.menu_id );
//
// } else {
// // If each view has a unique context menu, then this should never happen, as context menu should only be initiated once.
// // However, there are many cases where tabs repeatedly call this.buildContextMenu, whilst keeping the same view controller, so this is now a warning rather than an error.
// Debug.Text( 'Context Menu Manager already exists for: '+ this.viewId, 'BaseViewController.js', 'BaseViewController', 'buildContextMenu', 10 );
// }
this.buildEditViewUI();
$this.setEditViewTabHeight();
TTPromise.wait( 'init', 'init', function() {
$( '.edit-view-tab-bar' ).css( 'opacity', 1 );
} );
}
setEditViewTabHeight() {
var $this = this;
}
//Call this after initEditViewUI, usually after current_edit_record is set
initEditView() {
this.show_warning_when_validation = false;
//Uncaught TypeError: Cannot read property 'find' of null in Timehseet Authorization view when quickly click Cancel from replay
if ( !this.edit_view_tab ) {
return;
}
this.setURL();
// Overrides form with data from push notification and http get variables.
this.fillCurrentRecord();
this.setEditMenu(); //This is done in onTabeShow() later on, so it can probably be removed from here?
//Remove cover once edit menu is set
ProgressBar.closeOverlay();
//Error: Unable to get property 'find' of undefined or null reference in /interface/html5/views/BaseViewController.js?v=7.4.6-20141027-074127 line 2055
if ( this.edit_view_tab ) {
this.edit_view_tab.find( 'ul li' ).show(); // All tabs are hidden when initEditView UI, show all of them before set status
}
this.setTabStatus();
this.clearEditViewData();
this.setEditViewWidgetsMode();
this.setEditViewData();
this.setCustomFields();
this.setFocusToFirstInput();
}
setCustomFields() {
var parent_table = this.getCustomFieldParentTable();
if ( Global.getFeatureFlag( 'custom_field' ) == false || LocalCacheData.getCustomFieldData().parent_tables.includes( parent_table ) == false ) {
return;
}
TTPromise.wait( 'BaseViewController', 'getCustomFields', function() {
if ( Array.isArray( this.custom_fields ) ) {
this.custom_fields.forEach( ( custom_field ) => {
this.buildCustomFieldUI( this.getPrefixedCustomFieldID( custom_field.id ), custom_field.name, custom_field.type_id, custom_field.meta_data );
} );
this.editFieldResize( 0 );
}
this.resetLastWidgetStyle();
}.bind( this ) );
}
getPrefixedCustomFieldID( id ) {
return 'custom_field-' + id;
}
getCustomFieldsForView() {
var $this = this;
var parent_table = this.getCustomFieldParentTable();
if ( Global.getFeatureFlag( 'custom_field' ) == false || LocalCacheData.getCustomFieldData().parent_tables.includes( parent_table ) == false ) {
TTPromise.resolve( 'BaseViewController', 'getCustomFields' );
return;
}
var filter = { filter_data: { parent_table: parent_table, status_id: 10 }, filter_sort: { display_order: 'asc', created_date: 'asc', id: 'asc' } };
this.custom_field_api.getCustomField( filter, true, {
onResult: function( result ) {
var res_data = result.getResult();
if ( Array.isArray( res_data ) ) {
$this.custom_fields = res_data;
}
TTPromise.resolve( 'BaseViewController', 'getCustomFields' );
}
} );
}
getCustomFieldReferenceField() {
return false;
}
buildCustomFieldUI( field, label, type_id, meta_data ) {
if ( !type_id ) {
return; //User does not have permissions to use custom fields
}
field = this.convertCustomFieldFieldId( type_id, field );
if ( this.getCustomFieldParentTable() === 'punch_control' ) {
//Permissions can be dynamic for punch control custom fields and we need to check for them.
//Permissions are for the non-'_id' custom fields.
let custom_field_id = field.replace( '_id', '' );
if ( PermissionManager.validate( this.permission_id, 'edit_' + custom_field_id ) == false ) {
return false;
}
}
if ( !this.edit_view_tab ) {
return;
}
var form_item_input;
var $this = this;
var tab0 = $( this.edit_view_tab.find( '.edit-view-tab-outside' )[0] );
var tab0_column1 = tab0.find( '.first-column' );
if ( $this.edit_view_ui_dic[field] ) {
form_item_input = $this.edit_view_ui_dic[field];
form_item_input.setValue( $this.current_edit_record[field] );
} else {
let form_array = $this.getCustomFieldFormInputByType( type_id, field, meta_data );
form_item_input = form_array[0];
let widget_container = form_array[1];
var input_div = $this.addEditFieldToColumn( label, form_item_input, tab0_column1, '', widget_container );
if ( this.getCustomFieldReferenceField() !== false && $this.edit_view_ui_dic[this.getCustomFieldReferenceField()] != undefined ) {
input_div.insertBefore( $this.edit_view_ui_dic[this.getCustomFieldReferenceField()].parent().parent() );
}
if ( this.current_edit_record ) {
form_item_input.setValue( this.current_edit_record[field] );
}
}
form_item_input.css( 'opacity', 1 );
if ( $this.is_viewing ) {
form_item_input.setEnabled( false );
} else {
form_item_input.setEnabled( true );
}
if ( this.is_mass_editing ) {
form_item_input.setMassEditMode( true );
}
}
convertCustomFieldFieldId( type_id, field ) {
if ( LocalCacheData.getCustomFieldData().conversion_field_types[type_id] ) {
return field + '_id';
}
return field;
}
getCustomFieldFormInputByType( type_id, field, meta_data ) {
let form_item_input;
let widget_container = null;
type_id = parseInt( type_id ); //Switch is strict on type, so we need to parseInt()
switch ( type_id ) {
case 100: //Text
form_item_input = Global.loadWidgetByName( FormItemType.TEXT_INPUT );
form_item_input.TTextInput( { field: field } );
form_item_input.css( 'minWidth', 300 );
break;
case 110: //Textarea
form_item_input = Global.loadWidgetByName( FormItemType.TEXT_AREA );
form_item_input.TTextArea( { field: field, width: '100%' } );
break;
case 400: //Integer
case 410: //Decimal
form_item_input = Global.loadWidgetByName( FormItemType.TEXT_INPUT );
form_item_input.TTextInput( { field: field } );
form_item_input.css( 'minWidth', 300 );
break;
case 420: //Currency
form_item_input = Global.loadWidgetByName( FormItemType.TEXT_INPUT );
form_item_input.TTextInput( { field: field } );
form_item_input.css( 'minWidth', 300 );
var widgetContainer = $( '<div class=\'widget-h-box\'></div>' );
let currency = $( '<span class=\'widget-left-label\'></span>' );
let code = $( '<span class=\'widget-right-label\'></span>' );
widgetContainer.append( currency );
widgetContainer.append( form_item_input );
widgetContainer.append( code );
break;
case 500: //Checkbox
form_item_input = Global.loadWidgetByName( FormItemType.CHECKBOX );
form_item_input.TCheckbox( { field: field } );
break;
case 1000: //Date
form_item_input = Global.loadWidgetByName( FormItemType.DATE_PICKER );
form_item_input.TDatePicker( { field: field } );
break;
case 1010: //Date Range
form_item_input = Global.loadWidgetByName( FormItemType.DATE_PICKER );
form_item_input.TRangePicker( { field: field, validation_field: 'date_stamp' } );
break;
case 1100: //Time
form_item_input = Global.loadWidgetByName( FormItemType.TIME_PICKER );
form_item_input.TTimePicker( { field: field } );
break;
case 1110: //Time Range
//TODO: Jeremy Time Range
break;
case 1200: //Datetime
form_item_input = Global.loadWidgetByName( FormItemType.DATE_PICKER );
form_item_input.TDatePicker( { field: field, mode: 'date_time' } );
break;
case 1300: //Time Unit
form_item_input = Global.loadWidgetByName( FormItemType.TEXT_INPUT );
form_item_input.TTextInput( { field: field, width: 120, mode: 'time_unit', need_parser_sec: true } );
break;
case 2100: //Single-select Dropdown
form_item_input = Global.loadWidgetByName( FormItemType.AWESOME_BOX );
form_item_input.AComboBox( {
allow_multiple_selection: false,
layout_name: 'global_option_column', //Need dynamic layout name? global_option_column
show_search_inputs: true,
set_empty: true,
field: field
} );
form_item_input.setSourceData( meta_data.validation.multi_select_items );
break;
case 2110: //Multi-select Dropdown
form_item_input = Global.loadWidgetByName( FormItemType.AWESOME_BOX );
form_item_input.AComboBox( {
allow_multiple_selection: true,
layout_name: 'global_option_column', //Need dynamic layout name? global_option_column
show_search_inputs: true,
set_empty: true,
field: field
} );
form_item_input.setSourceData( meta_data.validation.multi_select_items );
}
return [form_item_input, widget_container];
}
resetLastWidgetStyle() {
if ( !this.edit_view_tab || !this.edit_view ) {
return;
}
}
getCustomFieldParentTable() {
//Punch views get their custom fields from the punch_control table.
if ( this.table_name_key === 'punch' ) {
return 'punch_control';
} else if ( this.viewId === 'TimeSheet' ) { //Timesheet view does not declare a table_name_key
return 'punch_control';
}
return this.table_name_key;
}
setURL() {
var a = '';
switch ( LocalCacheData.current_doing_context_action ) {
case 'new':
case 'edit':
case 'view':
a = LocalCacheData.current_doing_context_action;
break;
case 'copy_as_new':
a = 'new';
break;
}
if ( this.canSetURL() ) {
var tab_name = this.edit_view_tab ? this.edit_view_tab.find( '.edit-view-tab-bar-label' ).children().eq( this.getEditViewTabIndex() ).text() : '';
tab_name = tab_name.replace( /\/|\s+/g, '' );
//Error: Unable to get property 'id' of undefined or null reference in /interface/html5/views/BaseViewController.js?v=8.0.0-20141117-132941 line 2234
if ( this.current_edit_record && this.current_edit_record.id ) {
if ( a ) {
Global.setURLToBrowser( Global.getBaseURL() + '#!m=' + this.viewId + '&a=' + a + '&id=' + this.current_edit_record.id + '&tab=' + tab_name );
} else {
Global.setURLToBrowser( Global.getBaseURL() + '#!m=' + this.viewId + '&id=' + this.current_edit_record.id );
}
Global.trackView( this.viewId, LocalCacheData.current_doing_context_action );
} else {
if ( a ) {
//Edit a record which don't have id, schedule view Recurring Scedule
if ( a === 'edit' ) {
Global.setURLToBrowser( Global.getBaseURL() + '#!m=' + this.viewId + '&a=' + 'new' +
'&tab=' + tab_name );
} else {
Global.setURLToBrowser( Global.getBaseURL() + '#!m=' + this.viewId + '&a=' + a +
'&tab=' + tab_name );
}
} else {
Global.setURLToBrowser( Global.getBaseURL() + '#!m=' + this.viewId );
}
}
}
}
canSetURL() {
if ( this.sub_view_mode || this.edit_only_mode ) {
return false;
}
return true;
}
setFocusToFirstInput() {
//Do not set focus to first input in unit test mode as it causes a blink that is inconsistent in screenshots. Also disable on mobile mode so its not a jarring experience with the zoom changes on each page
if ( Global.UNIT_TEST_MODE || $( 'body' ).hasClass( 'mobile-device-mode' ) ) {
return;
}
if ( !this.is_viewing ) {
if ( this.script_name === 'ScheduleView' ) {
if ( this.edit_view_ui_dic.start_time ) {
this.edit_view_ui_dic.start_time.children().eq( 0 ).focus();
this.edit_view_ui_dic.start_time.children().eq( 0 )[0].select();
}
} else {
for ( var key in this.edit_view_ui_dic ) {
if ( !this.edit_view_ui_dic.hasOwnProperty( key ) ) {
continue;
}
var widget = this.edit_view_ui_dic[key];
if ( widget.is( ':visible' ) === true ) {
if ( widget.hasClass( 't-text-input' ) && !widget.attr( 'readonly' ) ) {
widget.focus();
widget[0].select();
break;
} else if ( widget.hasClass( 't-time-picker-div' ) && !widget.children().eq( 0 ).attr( 'readonly' ) ) {
widget.children().eq( 0 ).focus();
widget.children().eq( 0 )[0].select();
break;
} else if ( widget.hasClass( 't-date-picker-div' ) && !widget.children().eq( 0 ).attr( 'readonly' ) ) {
widget.children().eq( 0 ).focus();
widget.children().eq( 0 )[0].select();
break;
}
}
}
}
}
}
initNavigationWidget( navigation_widget_div ) {
if ( !this.navigation ) {
this.navigation = Global.loadWidgetByName( FormItemType.AWESOME_BOX );
navigation_widget_div.append( this.navigation );
} else {
navigation_widget_div.append( this.navigation );
}
this.setNavigationArrowsStatus();
}
buildEditViewUI() {
var $this = this;
//No navigation when edit only mode
// #VueContextMenu# After we add the edit_view to the page in initEditViewUI(), add the context menu (Vue needs a valid id in dom)
if( ContextMenuManager.getMenu( this.determineContextMenuMountAttributes().id ) === undefined ) {
this.buildContextMenu();
} else {
Debug.Warn( 'Context Menu ('+ this.determineContextMenuMountAttributes().id +') already exists for: '+ this.viewId, 'BaseViewController.js', 'BaseViewController', 'buildEditViewUI', 10 );
}
if ( this.edit_view ) {
if ( !this.edit_only_mode ) {
var navigation_div = this.edit_view.find( '.navigation-div' );
var label = navigation_div.find( '.navigation-label' );
var left_click = navigation_div.find( '.left-click' );
var right_click = navigation_div.find( '.right-click' );
var navigation_widget_div = navigation_div.find( '.navigation-widget-div' );
this.initNavigationWidget( navigation_widget_div );
left_click.attr( 'src', Global.getRealImagePath( 'images/left_arrow.svg' ) );
right_click.attr( 'src', Global.getRealImagePath( 'images/right_arrow.svg' ) );
label.text( this.navigation_label );
}
this.edit_view_close_icon = this.edit_view.find( '.close-icon' );
this.edit_view_close_icon.hide();
this.edit_view_close_icon.click( function() {
$this.onCloseIconClick();
} );
}
if( this.edit_only_mode ) {
}
this.edit_view_ui_dic = {};
this.edit_view_ui_validation_field_dic = {};
this.edit_view_form_item_dic = {};
this.edit_view_error_ui_dic = {};
}
onCloseIconClick() {
this.onCancelClick();
Global.triggerAnalyticsNavigationOther( 'close-X', 'click', this.viewId );
}
setWidgetVisible( widgets ) {
var widget = widgets;
if ( Global.isArray( widgets ) ) {
for ( var i = 0; i < widgets.length; i++ ) {
widget = widgets[i];
widget.css( 'opacity', 1 );
}
} else {
widget.css( 'opacity', 1 );
}
}
//widgetContainer: add widget to custom container
//saveFormItemDiv: if cache current formItemDiv and use it later
addEditFieldToColumn( label, widgets, column, firstOrLastRecord, widgetContainer, saveFormItemDiv, setResizeEvent, saveFormItemDivKey, hasKeyEvent, customLabelWidget ) {
var $this = this;
var form_item = $( Global.loadWidgetByName( WidgetNamesDic.EDIT_VIEW_FORM_ITEM ) );
var form_item_label_div = form_item.find( '.edit-view-form-item-label-div' );
var form_item_label = form_item.find( '.edit-view-form-item-label' );
var form_item_input_div = form_item.find( '.edit-view-form-item-input-div' );
var widget = widgets;
if ( Global.isArray( widgets ) ) {
for ( var i = 0; i < widgets.length; i++ ) {
widget = widgets[i];
widget.css( 'opacity', 0 );
}
} else {
widget.css( 'opacity', 0 );
}
if ( customLabelWidget ) {
form_item_label.parent().append( customLabelWidget );
form_item_label.remove();
} else {
form_item_label.text( label ); // Remove ':' to match Figma design.
if ( label && label.indexOf( '\n' ) !== -1 ) {
form_item_label.html( form_item_label.html().replace( /\n/g, '<br>' ) ); //Allow newlines (\n) to be accepted in labels. Used by T4 Report. Use this instead of .html() directly as its introduces XSS
}
}
if ( Global.isSet( widgetContainer ) ) {
form_item_input_div.append( widgetContainer );
} else {
form_item_input_div.append( widget );
}
column.append( form_item );
//set height to text area
if ( form_item.height() > 35 ) {
form_item_label_div.css( 'height', form_item.height() );
} else if ( widget.hasClass( 'a-dropdown' ) ) {
form_item_label_div.css( 'height', 240 );
}
//these aren't hit uniformly for every field so the vertical resize events will be disabled in unit test mode.
if ( setResizeEvent && !Global.UNIT_TEST_MODE ) {
form_item.unbind( 'resize' ).bind( 'resize', function() {
//When switching tabs, the heights are all -1, which causes "flashing" when the user returns back to the original tab and all the heights need to be set again.
// To prevent this, only change heights if they are > 0.
if ( form_item_label_div.height() !== form_item.height() && form_item.height() > 0 ) {
form_item_label_div.css( 'height', form_item.height() );
}
} );
widget.unbind( 'setSize' ).bind( 'setSize', function() {
form_item_label_div.css( 'height', widget.height() + 10 );
} );
}
if ( !label ) {
form_item_input_div.remove();
form_item_label_div.remove();
form_item.append( widget );
widget.css( 'opacity', 1 );
if ( saveFormItemDiv && saveFormItemDivKey ) {
this.edit_view_form_item_dic[saveFormItemDivKey] = form_item;
}
return;
}
if ( saveFormItemDiv ) {
if ( Global.isArray( widgets ) ) {
this.edit_view_form_item_dic[widgets[0].getField()] = form_item;
} else {
this.edit_view_form_item_dic[widget.getField()] = form_item;
}
}
if ( Global.isArray( widgets ) ) {
for ( var i = 0; i < widgets.length; i++ ) {
widget = widgets[i];
this.edit_view_ui_dic[widget.getField()] = widget;
setValidationDic();
widget.unbind( 'formItemChange' ).bind( 'formItemChange', function( e, target, doNotValidate ) {
$this.onFormItemChange( target, doNotValidate );
} );
if ( hasKeyEvent ) {
widget.unbind( 'formItemKeyUp' ).bind( 'formItemKeyUp', function( e, target ) {
$this.onFormItemKeyUp( target );
} );
widget.unbind( 'formItemKeyDown' ).bind( 'formItemKeyDown', function( e, target ) {
$this.onFormItemKeyDown( target );
} );
}
}
} else {
this.edit_view_ui_dic[widget.getField()] = widget;
setValidationDic();
widget.bind( 'formItemChange', function( e, target, doNotValidate ) {
$this.onFormItemChange( target, doNotValidate );
} );
if ( hasKeyEvent ) {
widget.bind( 'formItemKeyUp', function( e, target ) {
$this.onFormItemKeyUp( target );
} );
widget.bind( 'formItemKeyDown', function( e, target ) {
$this.onFormItemKeyDown( target );
} );
}
}
function setValidationDic() {
if ( widget.hasOwnProperty( 'getValidationField' ) && widget.getValidationField() ) {
if ( $this.edit_view_ui_validation_field_dic[widget.getValidationField()] ) {
if ( !Global.isArray( $this.edit_view_ui_validation_field_dic[widget.getValidationField()] ) ) {
$this.edit_view_ui_validation_field_dic[widget.getValidationField()] = [$this.edit_view_ui_validation_field_dic[widget.getValidationField()], widget];
} else {
$this.edit_view_ui_validation_field_dic[widget.getValidationField()].push( widget );
}
} else {
$this.edit_view_ui_validation_field_dic[widget.getValidationField()] = widget;
}
}
}
return form_item;
}
//Set fields label to same size
editFieldResize( index ) {
if ( Global.isSet( index ) ) {
} else {
index = this.getEditViewTabIndex();
}
if ( Global.isSet( this.edit_view_tabs[index] ) && !Global.isFalseOrNull( this.edit_view_tabs[index] ) && this.edit_view_tabs[index].length > 0 ) {
var tab_div = this.edit_view_tabs[index];
for ( var i = 0; i < tab_div.length; i++ ) {
var tab_column_div = tab_div[i].find( '.edit-view-form-item-label-div' );
var tab_column_sub_div = tab_div[i].find( '.edit-view-form-item-sub-label-div > span' );
if ( Global.isSet( tab_column_sub_div ) && tab_column_sub_div.length > 0 ) {
this.setEditFieldSize( tab_column_sub_div );
}
this.setEditFieldSize( tab_column_div );
}
}
}
setEditFieldSize( tab_column_div, width ) {
if ( Global.isSet( width ) ) {
tab_column_div.each( function() {
$( this ).width( width );
} );
} else {
var item_label_div_width = [];
tab_column_div.each( function() {
if ( $( this ).width() === 0 ) {
return true;
}
$( this ).css( 'width', 'auto' );
item_label_div_width.push( $( this ).width() );
} );
item_label_div_width.sort( function( a, b ) {
return ( b - a );
} );
tab_column_div.each( function() {
if ( item_label_div_width[0] >= 0 ) { // #2701 - Do not set width if value is negative. Happens when trying to calculate width of something on another tab not currently visible.
$( this ).width( item_label_div_width[0] + 1 );
}
} );
}
}
setNavigation() {
var $this = this;
//Error: Unable to get value of the property 'getGridParam': object is null or undefined in /interface/html5/views/BaseViewController.js?v=8.0.0-20141230-103725 line 2575
if ( !this.grid ) {
return;
}
this.navigation.setPossibleDisplayColumns( this.buildDisplayColumnsByColumnModel( this.grid.getColumnModel() ), this.buildDisplayColumns( this.default_display_columns ) );
this.navigation.unbind( 'onClose' ).bind( 'onClose', () => {
this.setNavigationArrowsEnabled();
} );
this.navigation.unbind( 'formItemChange' ).bind( 'formItemChange', function( e, target ) {
var key = target.getField();
var next_select_item_id = target.getValue();
if ( !next_select_item_id ) {
return;
}
if ( next_select_item_id !== $this.current_edit_record.id ) {
ProgressBar.showOverlay();
if ( $this.is_viewing ) {
$this.onViewClick( next_select_item_id ); //Dont refresh UI
} else {
$this.onEditClick( next_select_item_id ); //Dont refresh UI
}
}
Global.triggerAnalyticsEditViewNavigation( 'navigation', $this.viewId );
} );
}
clearEditViewData() {
for ( var key in this.edit_view_ui_dic ) {
if ( !this.edit_view_ui_dic.hasOwnProperty( key ) ) {
continue;
}
if ( _.isFunction( this.edit_view_ui_dic[key].setEmptyValueAndShowLoading ) ) {
this.edit_view_ui_dic[key].setEmptyValueAndShowLoading();
} else {
this.edit_view_ui_dic[key].setValue( null );
}
this.edit_view_ui_dic[key].clearErrorStyle();
}
}
//Called after set current_edit_record
setEditViewData() {
this.is_changed = false;
this.initEditViewData();
this.initTabData();
this.switchToProperTab();
}
switchToProperTab() {
if ( LocalCacheData.getAllURLArgs() &&
LocalCacheData.getAllURLArgs().hasOwnProperty( 'tab' ) &&
LocalCacheData.getAllURLArgs().tab.length > 0 &&
LocalCacheData.current_open_primary_controller.viewId === this.viewId ) {
var target_node = this.edit_view_tab.find( '.edit-view-tab-bar-label' ).children().filter( function() {
var value = $( this ).text().replace( /\/|\s+/g, '' );
return value === LocalCacheData.getAllURLArgs().tab;
} );
var target_index = 0;
if ( target_node.length > 0 ) {
target_node = $( target_node[0] );
target_index = target_node.index();
}
this.edit_view_tab.tabs( 'option', 'active', target_index );
}
}
//Call this from setEditViewData
// This is called to initialize data for the first/primary tab, and is called from many views. So it needs to stay even after fully refactored to use tab_model.
initTabData() {
var tab_model = this.getTabModel();
if ( tab_model != null ) {
this.onTabShow();
} else {
var current_tab_index = this.getEditViewTabIndex();
//Handle most case that one tab and one audit tab
if ( current_tab_index === 1 ) {
if ( this.current_edit_record.id && this.current_edit_record.id != TTUUID.zero_id ) {
this.edit_view_tab.find( '#tab_audit' ).find( '.first-column-sub-view' ).css( 'display', 'block' );
this.initSubLogView( 'tab_audit' );
} else {
this.edit_view_tab.find( '#tab_audit' ).find( '.first-column-sub-view' ).css( 'display', 'none' );
this.showSaveAndContinueButton();
}
}
}
}
getEditViewTabIndex() {
return this.edit_view.find( '.edit-view-tab-bar li.ui-tabs-active' ).index();
}
getEditViewActiveTabName() {
if( !this.edit_view ) {
return false;
}
return this.edit_view.find( '.edit-view-tab-bar li.ui-tabs-active' ).attr( 'aria-controls' );
}
needShowNavigation() {
if ( this.current_edit_record && Global.isSet( this.current_edit_record.id ) && this.current_edit_record.id ) {
return true;
} else {
return false;
}
}
//Call this from setEditViewData
initEditViewData() {
var $this = this;
//add this.grid to fix exception
//Error: Unable to get property 'getGridParam' of undefined or null reference in /interface/html5/views/BaseViewController.js?v=7.4.3-20140924-090129 line 2523
if ( !this.edit_only_mode && this.navigation && this.grid ) {
var grid_current_page_items = this.grid.getData();
var navigation_div = this.edit_view.find( '.navigation-div' );
//Error: TypeError: this.current_edit_record is undefined in /interface/html5/views/BaseViewController.js?v=8.0.0-20141230-103725 line 2673
if ( this.needShowNavigation() ) {
navigation_div.css( 'display', 'block' );
//Set Navigation Awesomebox
//#3175 - Get current navigation data if it exists so that we do not overwrite it when switching records.
//For example when clicking the right arrow on the last record of page 1 brings you to page 2. Page 2 data was being reset.
//In that scenario we want to keep navigation data from page 2 and not overwrite it with the grid data from the list view.
let current_navigation_data = this.navigation.getSourceData();
let current_pager_data = this.navigation.getPagerData();
//#2349 - update source data every time so that it doesn't go unrefreshed in the case of saving a new record or deleting exiting
this.navigation.setSourceData( current_navigation_data ? current_navigation_data : grid_current_page_items );
this.navigation.setPagerData( current_pager_data ? current_pager_data: this.pager_data );
//init navigation only when open edit view
if ( !this.navigation.getSourceData() ) {
if ( LocalCacheData.getLoginUserPreference() ) {
this.navigation.setRowPerPage( LocalCacheData.getLoginUserPreference().items_per_page );
}
this.navigation.setPagerData( this.pager_data );
var default_args = {};
default_args.filter_data = Global.convertLayoutFilterToAPIFilter( this.select_layout );
default_args.filter_sort = this.select_layout.data.filter_sort;
this.navigation.setDefaultArgs( default_args );
}
this.navigation.setValue( this.current_edit_record );
} else {
navigation_div.css( 'display', 'none' );
}
}
this.setUIWidgetFieldsToCurrentEditRecord();
if ( this.is_mass_editing ) {
for ( var key in this.edit_view_ui_dic ) {
if ( !this.edit_view_ui_dic.hasOwnProperty( key ) ) {
continue;
}
//JS Exception: "this.unique_columns.indexOf is not a function"
if ( this.unique_columns && this.unique_columns.length > 0 && this.unique_columns.indexOf( key ) != -1 ) {
$this.edit_view_ui_dic[key].css( 'opacity', '0' );
if ( $this.edit_view_ui_dic[key].setEnabled ) {
$this.edit_view_ui_dic[key].setEnabled( false );
}
if ( $this.edit_view_ui_dic[key].setMassEditMode ) {
$this.edit_view_ui_dic[key].setMassEditMode( false );
}
} else {
var widget = this.edit_view_ui_dic[key];
if ( Global.isSet( widget.setMassEditMode ) ) {
widget.setMassEditMode( true );
}
$this.edit_view_ui_dic[key].css( 'opacity', '1' );
}
}
} else {
for ( var key in this.edit_view_ui_dic ) {
$this.edit_view_ui_dic[key].css( 'opacity', '1' );
}
}
this.setNavigationArrowsEnabled( true );
// Create this function alone because of the column value of view is different from each other, some columns need to be handle specially. and easily to rewrite this function in sub-class.
this.setCurrentEditRecordData();
//Init *Please save this record before modifying any related data* box
this.edit_view.find( '.save-and-continue-div' ).SaveAndContinueBox( { related_view_controller: this } );
this.edit_view.find( '.save-and-continue-div' ).css( 'display', 'none' );
}
setUIWidgetFieldsToCurrentEditRecord() {
var $this = this;
$this.old_current_edit_record = Global.clone( $this.current_edit_record ); //Save the current edit record before any changes are made so we can later check what fields may have changed.
if ( $this.current_edit_record === true ) {
$this.current_edit_record = {};
};
for ( var key in this.edit_view_ui_dic ) {
if ( !this.edit_view_ui_dic.hasOwnProperty( key ) ) {
continue;
}
// //Set all UI field to current edit record, we need validate all UI field when save and validate
//use != to ingore string or number, value from html is string.
//Error: TypeError: $this.current_edit_record is undefined in /interface/html5/views/BaseViewController.js?v=8.0.0-20141117-122453 line 2702
if ( $this.current_edit_record && !Global.isSet( $this.current_edit_record[key] ) ) {
$this.current_edit_record[key] = false;
}
}
}
/**
* Set default data into current_edit_record
*
* @param columnsArr
* @param force
*
* if force is true set the current_edit_record and populate edit_view_ui_dic
* this is used in view controllers (RequestViewController::setRequestFormDefaultData) where the api call for default values is late
*
*/
setDefaultData( columnsArr, force ) {
var $this = this;
$.each( columnsArr, function( field, value ) {
if ( force != true && Global.isSet( $this.current_edit_record[field] ) ) {
//do nothing
} else {
if ( force == true ) {
if ( $this.edit_view_ui_dic[field] ) {
$this.edit_view_ui_dic[field].setValue( value );
$this.current_edit_record[field] = value;
}
} else {
$this.current_edit_record[field] = value;
}
}
} );
}
collectUIDataToCurrentEditRecord() {
if ( this.is_mass_editing ) {
return;
}
var $this = this;
for ( var key in this.edit_view_ui_dic ) {
if ( !this.edit_view_ui_dic.hasOwnProperty( key ) ) {
continue;
}
var widget = this.edit_view_ui_dic[key];
//only check dropdownlist
if ( !widget.hasClass( 't-select' ) ) {
continue;
}
var value = widget.getValue();
// //Set all UI field to current edit record, we need validate all UI field when save and validate
//use != to ingore string or number, value from html is string.
//is visible make sure the widget is shown on screen of current select type
//Error: TypeError: undefined is not an object (evaluating '$this.current_edit_record[key]') in /interface/html5/views/BaseViewController.js?v=8.0.0-20141230-124906 line 2792
if ( value && $this.current_edit_record && $this.current_edit_record[key] != value ) {
if ( !value || value === '0' || ( Global.isArray( value ) && value.length === 0 ) ) {
$this.current_edit_record[key] = false;
} else {
$this.current_edit_record[key] = value;
}
}
}
}
setCurrentEditRecordData() {
//Set current edit record data to all widgets
for ( var key in this.current_edit_record ) {
if ( !this.current_edit_record.hasOwnProperty( key ) ) {
continue;
}
var widget = this.edit_view_ui_dic[key];
if ( Global.isSet( widget ) ) {
switch ( key ) {
case 'country': //popular case
this.setCountryValue( widget, key );
break;
default:
widget.setValue( this.current_edit_record[key] );
break;
}
}
}
this.collectUIDataToCurrentEditRecord();
this.setEditViewDataDone();
}
setCountryValue( widget, key ) {
if ( !this.current_edit_record['province'] ) {
this.eSetProvince( this.current_edit_record[key], true );
} else {
this.eSetProvince( this.current_edit_record[key] );
}
widget.setValue( this.current_edit_record[key] );
}
putInputToInsideFormItem( form_item_input, label ) {
var form_item = $( Global.loadWidgetByName( WidgetNamesDic.EDIT_VIEW_SUB_FORM_ITEM ) );
// var form_item_label_div = form_item.find( '.edit-view-form-item-label-div' );
//
// form_item_label_div.attr( 'class', 'edit-view-form-item-sub-label-div' );
var form_item_label = form_item.find( '.edit-view-form-item-label' );
var form_item_input_div = form_item.find( '.edit-view-form-item-input-div' );
form_item.addClass( 'remove-margin' );
form_item_label.text( $.i18n._( label ) );
form_item_input_div.append( form_item_input );
return form_item;
}
//set tab 0 visible after all data set done. This be hide when init edit view data
setEditViewDataDone() {
// Remove this on 14.9.14 because adding tab url support, ned set url when tab index change and
// need know waht's current doing action. See if this cause any problem
//LocalCacheData.current_doing_context_action = '';
this.setTabOVisibility( true );
TTPromise.resolve( 'init', 'init' );
$( '.edit-view-tab-bar' ).css( 'opacity', 1 );
}
setNavigationArrowsStatus() {
if ( !this.edit_view ) {
return;
}
var left_arrow = this.edit_view.find( '.left-click' );
var right_arrow = this.edit_view.find( '.right-click' );
var $this = this;
left_arrow.off( 'click' ).on( 'click', Global.debounce( function NavigationLeftArrowClick( e ) {
if ( !left_arrow.hasClass( 'disabled' ) ) {
$this.onLeftArrowClick();
}
}, Global.calcDebounceWaitTimeBasedOnNetwork(), true ) );
right_arrow.off( 'click' ).on( 'click', Global.debounce( function NavigationRightArrowClick( e ) {
if ( !right_arrow.hasClass( 'disabled' ) ) {
$this.onRightArrowClick();
}
}, Global.calcDebounceWaitTimeBasedOnNetwork(), true ) );
}
setNavigationArrowsEnabled( check_search ) {
if ( !this.edit_view ) {
return;
}
//If search data exists, search when making a record change to ensure arrow status will reflect the search result
if ( check_search && this.navigation && typeof this.navigation.buildUnSelectGridFilter == 'function' ) {
//Run this condition first to avoid flashing arrows enabling/disabling.
var data = this.navigation.buildUnSelectGridFilter();
if ( data && data.filter_data && Object.keys( data.filter_data ).length !== 0 ) {
this.navigation.onADropDownSearch( 'unselect_grid', undefined, undefined, () => {
this.setNavigationArrowsEnabled( false );
} );
return;
}
}
var left_arrow = this.edit_view.find( '.left-click' );
var right_arrow = this.edit_view.find( '.right-click' );
left_arrow.removeClass( 'disabled' );
right_arrow.removeClass( 'disabled' );
//TypeError: this.navigation.getSelectIndex is not a function
//navigation could not be initial in cases, for example in Request new view
if ( !this.navigation || !( this.navigation.hasOwnProperty( 'getSelectIndex' ) ) ) {
return;
}
var selected_index = this.navigation.getSelectIndex();
var source_data = this.navigation.getSourceData();
if ( !source_data || ( Array.isArray( source_data ) && source_data.length === 0 ) ) {
//No records in navigation box, so make sure arrows are disbled.
left_arrow.addClass( 'disabled' );
right_arrow.addClass( 'disabled' );
return;
}
var current_pager_data = this.navigation.getPagerData();
// It's possible the navigation don't have a pager data, like Timesheet edit view, so it's become a no page navigation.
if ( !current_pager_data ) {
if ( selected_index === 0 ) {
left_arrow.addClass( 'disabled' );
}
if ( selected_index === source_data.length - 1 ) {
right_arrow.addClass( 'disabled' );
}
} else {
if ( selected_index === 0 && current_pager_data.current_page === 1 ) {
left_arrow.addClass( 'disabled' );
}
if ( selected_index === source_data.length - 1 && current_pager_data.current_page === current_pager_data.last_page_number ) {
right_arrow.addClass( 'disabled' );
}
}
}
onLeftArrowClick( cancel_callback ) {
var $this = this;
if ( this.is_changed ) {
TAlertManager.showConfirmAlert( Global.modify_alert_message, null, function( flag ) {
if ( flag === true ) {
$this.is_changed = false;
doLeftArrowClick();
}
ProgressBar.closeOverlay();
} );
} else {
doLeftArrowClick();
}
Global.triggerAnalyticsEditViewNavigation( 'left-arrow', this.viewId );
function doLeftArrowClick() {
var selected_index = $this.navigation.getSelectIndex();
var source_data = $this.navigation.getSourceData();
var current_pager_data = $this.navigation.getPagerData();
var next_select_item;
if ( selected_index > 0 ) {
next_select_item = $this.navigation.getItemByIndex( selected_index - 1 );
$this.onRightOrLeftArrowClickCallBack( next_select_item );
} else if ( selected_index === 0 && current_pager_data && current_pager_data.current_page > 1 ) {
$this.navigation.onADropDownSearch( 'unselect_grid', current_pager_data.current_page - 1, 'last', function( result ) {
next_select_item = result;
$this.onRightOrLeftArrowClickCallBack( next_select_item );
} );
} else {
$this.onCancelClick( null, null, cancel_callback );
return;
}
}
}
refreshCurrentRecord() {
var next_select_item = this.navigation.getItemByIndex( this.navigation.getSelectIndex() );
ProgressBar.showOverlay();
if ( this.is_viewing ) {
this.onViewClick( next_select_item.id ); //Dont refresh UI
} else {
this.onEditClick( next_select_item.id ); //Dont refresh UI
}
this.setNavigationArrowsEnabled();
}
//exists for RecurringScheduleControlView due to the unique way we handle the ids there. (Change: That view no longer uses composite IDs)
getRightArrowClickSelectedIndex( selected_index ) {
return selected_index;
}
onRightArrowClick( cancel_callback ) {
var $this = this;
if ( this.is_changed ) {
TAlertManager.showConfirmAlert( Global.modify_alert_message, null, function( flag ) {
if ( flag === true ) {
$this.is_changed = false;
doRightArrowClick();
}
ProgressBar.closeOverlay();
} );
} else {
doRightArrowClick();
}
Global.triggerAnalyticsEditViewNavigation( 'right-arrow', this.viewId );
function doRightArrowClick() {
var selected_index = $this.getRightArrowClickSelectedIndex( $this.navigation.getSelectIndex() );
var source_data = $this.navigation.getSourceData();
var current_pager_data = $this.navigation.getPagerData();
var next_select_item;
//Error: Uncaught TypeError: Cannot read property 'length' of null in /interface/html5/views/BaseViewController.js?v=8.0.0-20141230-125919 line 2956
if ( !source_data ) {
return;
}
if ( selected_index < ( source_data.length - 1 ) ) {
// next_select_item = $this.navigation.getItemByIndex( (selected_index + 1) );
next_select_item = $this.navigation.getItemByIndex( $this.navigation.getSelectIndex() + 1 );
$this.onRightOrLeftArrowClickCallBack( next_select_item );
//Error: Unable to get property 'current_page' of undefined or null reference in interface/html5/views/BaseViewController.js?v=9.0.0-20151016-102254 line 3204
} else if ( selected_index === ( source_data.length - 1 ) && current_pager_data && current_pager_data.current_page < current_pager_data.last_page_number ) {
$this.navigation.onADropDownSearch( 'unselect_grid', current_pager_data.current_page + 1, 'first', function( result ) {
next_select_item = result;
$this.onRightOrLeftArrowClickCallBack( next_select_item );
} );
} else {
$this.onCancelClick( null, null, cancel_callback );
return;
}
}
}
onRightOrLeftArrowClickCallBack( next_select_item ) {
ProgressBar.showOverlay();
if ( this.is_viewing ) {
this.onViewClick( next_select_item ); //Dont refresh UI
} else {
this.onEditClick( next_select_item.id ); //Dont refresh UI
}
this.setNavigationArrowsEnabled();
if ( this.sub_log_view_controller ) {
this.sub_log_view_controller.search();
}
}
setParentContextMenuAfterSubViewClose() {
//Error: Uncaught TypeError: Cannot read property 'buildContextMenu' of null in /interface/html5/views/BaseViewController.js?v=7.4.6-20141027-085016 line 2887
if ( !this.parent_view_controller ) {
return;
}
this.parent_view_controller.buildContextMenu();
if ( this.parent_view_controller.edit_view ) {
this.parent_view_controller.setEditMenu();
} else {
this.parent_view_controller.setDefaultMenu();
}
}
//This should only be used on its own if removeEditView is causing flashing.
//This function should only really be called from onViewClick (see RequestViewCommonController.js)
clearEditView() {
if ( this.edit_view ) {
this.clearErrorTips();
this.edit_view.remove();
}
this.edit_view = null;
this.edit_view_tab = null;
}
removeEditView() {
this.unmountContextMenu();
this.clearEditView();
this.setCurrentEditViewState( '' );
this.is_changed = false;
this.confirm_on_exit = false;
this.mass_edit_record_ids = [];
if ( this.edit_only_mode ) {
var current_url = window.location.href;
if ( current_url.indexOf( '&sm' ) > 0 ) {
current_url = current_url.substring( 0, current_url.indexOf( '&sm' ) );
Global.setURLToBrowser( current_url );
}
LocalCacheData.current_open_edit_only_controller = null;
}
// reset parent context menu if edit only mode
if ( !this.edit_only_mode ) {
//#2777 - If the user goes to Employee -> Employees, click on Wage tab, then goes to Employee -> Employees again, the Context Menu will be incorrect and still be for the "Wage" record and not the proper "Employee" record.
//This tries to detect when the context menu doesn't match the view and forces it to be rebuilt completely.
this.buildContextMenu( true );
this.setDefaultMenu();
} else {
this.setParentContextMenuAfterSubViewClose();
}
this.reSetURL();
//If there is a action in url, add it back. So we have correct url when set tabs urls
//This caused a bug where whenever saving a punch on Attendance ->TimeSheet, it would re-open the edit view, same with navigating between weeks, or even deleting punches in some cases.
//This need to put under reSetUrl and need clean url_agrs until it set from onViewChange in router again
if ( LocalCacheData.getAllURLArgs() && LocalCacheData.getAllURLArgs().a ) {
LocalCacheData.current_doing_context_action = LocalCacheData.getAllURLArgs().a;
}
this.sub_log_view_controller = null;
this.edit_view_ui_dic = {};
this.edit_view_ui_validation_field_dic = {};
this.edit_view_form_item_dic = {};
this.edit_view_error_ui_dic = {};
this.current_edit_record = null;
if ( this.sub_document_view_controller ) {
this.sub_document_view_controller = null;
}
}
reSetURL() {
if ( this.canSetURL() ) {
var args = '#!m=' + this.viewId;
Global.setURLToBrowser( Global.getBaseURL() + args );
LocalCacheData.setAllURLArgs( Global.buildArgDic( args.split( '&' ) ) );
}
}
getGridSelectIdArray() {
if ( !this.grid ) {
return []; //Return empty array so .length on the result doesn't fail with Cannot read property 'length' of undefined
}
return this.grid.getSelectedRows();
}
setDefaultMenuAddIcon( context_btn, grid_selected_length, pId ) {
if ( !this.addPermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
}
setDefaultMenuEditIcon( context_btn, grid_selected_length, p_id ) {
if ( !this.editPermissionValidate( p_id ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
// Updated to toggle with mass edit icon in new menu - Note: This logic is duplicated in TimeSheetViewController.
if ( grid_selected_length === 1 && this.editOwnerOrChildPermissionValidate( p_id ) ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
} else {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
if ( grid_selected_length !== 0 ) {
// This ensures the edit icon is still visible when nothing is selected, but should still be disabled. (to keep consistency with old design)
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
}
setDefaultMenuViewIcon( context_btn, grid_selected_length, p_id ) {
if ( !this.viewPermissionValidate( p_id ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
if ( grid_selected_length === 1 && this.viewOwnerOrChildPermissionValidate() ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
} else {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setDefaultMenuMassEditIcon( context_btn, grid_selected_length, pId ) {
if ( !this.editPermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
// updated to toggle with mass edit icon in new menu
if ( grid_selected_length > 1 ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
} else {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setDefaultMenuCopyIcon( context_btn, grid_selected_length, pId ) {
if ( !this.copyPermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
if ( grid_selected_length >= 1 ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
} else {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setDefaultMenuDeleteIcon( context_btn, grid_selected_length, pId ) {
if ( !this.deletePermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
if ( grid_selected_length >= 1 && this.deleteOwnerOrChildPermissionValidate( pId ) ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
} else {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setDefaultMenuDeleteAndNextIcon( context_btn, grid_selected_length, pId ) {
if ( !this.deletePermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
setDefaultMenuSaveIcon( context_btn, grid_selected_length, pId ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
setDefaultMenuSaveAndNextIcon( context_btn, grid_selected_length, pId ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
setDefaultMenuSaveAndCopyIcon( context_btn, grid_selected_length, pId ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
setDefaultMenuSaveAndContinueIcon( context_btn, grid_selected_length, pId ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
setDefaultMenuSaveAndAddIcon( context_btn, grid_selected_length, pId ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
setDefaultMenuCopyAsNewIcon( context_btn, grid_selected_length, pId ) {
if ( ( !this.copyAsNewPermissionValidate( pId ) ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
if ( grid_selected_length === 1 ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
} else {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setDefaultMenuLoginIcon( context_btn, grid_selected_length, pId ) {
if ( !PermissionManager.validate( 'company', 'login_other_user' ) ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
if ( this.getGridSelectIdArray().length !== 1 ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setDefaultMenuCancelIcon( context_btn, grid_selected_length, pId ) {
if ( !this.sub_view_mode ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setDefaultMenuExportIcon( context_btn, grid_selected_length, pId ) {
if ( this.edit_only_mode || this.is_viewing || this.is_edit || this.is_add ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
} else if ( grid_selected_length == 0 || this.grid == undefined ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setDefaultMenuImportIcon( context_btn, grid_selected_length, pId ) {
if ( !this.addPermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
}
setDefaultMenuPermissionWizardIcon( context_btn, pId ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
setEditMenuPermissionWizardIcon( context_btn, pId ) {
}
setEditMenuImportIcon( context_btn ) {
if ( this.edit_only_mode || this.is_viewing || this.is_edit || this.is_add ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuAddIcon( context_btn, pId ) {
if ( !this.addPermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
if ( this.is_add == true ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuEditIcon( context_btn, pId ) {
if ( !this.editPermissionValidate( pId ) || this.edit_only_mode || this.is_mass_editing ) {
//Not shown in edit only mode or mass edit. Mass edit should only show mass edit (need to set that part in mass edit icon).
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
if ( !this.is_viewing || !this.editOwnerOrChildPermissionValidate( pId ) ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuNavEditIcon( context_btn, p_id ) {
if ( !this.editPermissionValidate( p_id ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
}
setEditMenuNavViewIcon( context_btn, p_id ) {
if ( !this.viewPermissionValidate( p_id ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
}
setEditMenuViewIcon( context_btn, pId ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
setEditMenuMassEditIcon( context_btn, pId ) {
if ( !this.editPermissionValidate( pId ) || this.edit_only_mode || !this.is_mass_editing ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
setEditMenuDeleteIcon( context_btn, pId ) {
if ( !this.deletePermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
if ( ( !this.current_edit_record || !this.current_edit_record.id ) || !this.deleteOwnerOrChildPermissionValidate( pId ) ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuDeleteAndNextIcon( context_btn, pId ) {
if ( !this.deletePermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
if ( ( !this.current_edit_record || !this.current_edit_record.id ) || !this.deleteOwnerOrChildPermissionValidate( pId ) ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuCopyIcon( context_btn, pId ) {
if ( !this.copyPermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
if ( !this.current_edit_record || !this.current_edit_record.id ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuCopyAndAddIcon( context_btn, pId ) {
if ( !this.copyAsNewPermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
if ( ( !this.current_edit_record || !this.current_edit_record.id ) || this.is_viewing ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuSaveIcon( context_btn, pId ) {
this.saveValidate( context_btn, pId );
if ( this.is_viewing ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuSaveAndContinueIcon( context_btn, pId ) {
this.saveAndContinueValidate( context_btn, pId );
if ( this.is_mass_adding || this.is_mass_editing || this.is_viewing ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuSaveAndCopyIcon( context_btn, pId ) {
this.saveAndCopyValidate( context_btn, pId );
if ( this.is_mass_editing || this.is_viewing ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuSaveAndNextIcon( context_btn, pId ) {
if ( !this.editPermissionValidate( pId ) || this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
if ( ( !this.current_edit_record || !this.current_edit_record.id ) || this.is_viewing ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuSaveAndAddIcon( context_btn, pId ) {
this.saveAndNewValidate( context_btn, pId );
if ( this.is_viewing || this.is_mass_editing ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuCancelIcon( context_btn, pId ) {
}
ifContextButtonExist( value ) {
var context_menu_array = ContextMenuManager.getMenuModelByMenuId( this.determineContextMenuMountAttributes().id );
var len = context_menu_array.length;
for ( var i = 0; i < len; i++ ) {
let context_btn = context_menu_array[i];
let id = context_menu_array[i].id;
if ( id === value && context_btn.visible ) {
return true;
}
}
return false;
}
onSubViewModeDisableParentContextMenuButtons() {
//When on a sub view mode tab we want to disable certain context menu buttons of the parent view.
//This is to help prevent users from using context menu buttons for the wrong view and deleting/copying records they did not intend to use.
if ( this.sub_view_mode && this.parent_view_controller ) {
var parent_context_menu_array = ContextMenuManager.getMenuModelByMenuId( this.parent_view_controller.determineContextMenuMountAttributes().id );
var len = parent_context_menu_array.length;
for ( var i = 0; i < len; i++ ) {
let context_btn = parent_context_menu_array[i];
let id = parent_context_menu_array[i].id;
//Switch instead of if/else incase we want differences between buttons in future, easier to read than long conditional.
switch ( id ) {
case 'add':
case 'delete_icon':
case 'delete_and_next':
case 'copy':
case 'copy_as_new':
case 'save_and_copy':
case 'save_and_new':
ContextMenuManager.disableMenuItem( this.parent_view_controller.determineContextMenuMountAttributes().id, context_btn.id, false );
break;
default:
break;
}
}
}
}
hideJumpToMenu() {
//Jump to should be hidden on all "new" record views and only available when editing a record.
//This is to prevent users from using the jump to button to navigating to broken or blank pages.
if ( this.is_add || this.is_mass_adding ) {
var context_menu_array = ContextMenuManager.getMenuModelByMenuId( this.determineContextMenuMountAttributes().id );
for ( var i = 0; i < context_menu_array.length; i++ ) {
if ( context_menu_array[i].action_group === 'jump_to' ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_menu_array[i].id, false );
}
}
}
}
//Call this when select grid row
//Call this when setLayout
setDefaultMenu( doNotSetFocus, grid_selected_length ) {
//Check if there is a current_company object at all.
if ( LocalCacheData.isLocalCacheExists( 'current_company' ) == false ) {
return false;
}
this.setTotalDisplaySpan();
var context_menu_array = ContextMenuManager.getMenuModelByMenuId( this.determineContextMenuMountAttributes().id );
var len = context_menu_array.length;
if ( grid_selected_length === undefined ) {
var grid_selected_id_array = this.getGridSelectIdArray();
grid_selected_length = grid_selected_id_array.length;
}
for ( var i = 0; i < len; i++ ) {
let context_btn = context_menu_array[i];
let id = context_menu_array[i].id;
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
switch ( id ) {
case 'add':
this.setDefaultMenuAddIcon( context_btn, grid_selected_length );
break;
case 'edit':
this.setDefaultMenuEditIcon( context_btn, grid_selected_length );
break;
case 'view':
this.setDefaultMenuViewIcon( context_btn, grid_selected_length );
break;
case 'mass_edit':
this.setDefaultMenuMassEditIcon( context_btn, grid_selected_length );
break;
case 'copy':
this.setDefaultMenuCopyIcon( context_btn, grid_selected_length );
break;
case 'delete_icon':
this.setDefaultMenuDeleteIcon( context_btn, grid_selected_length );
break;
case 'delete_and_next':
this.setDefaultMenuDeleteAndNextIcon( context_btn, grid_selected_length );
break;
case 'save':
this.setDefaultMenuSaveIcon( context_btn, grid_selected_length );
break;
case 'save_and_next':
this.setDefaultMenuSaveAndNextIcon( context_btn, grid_selected_length );
break;
case 'save_and_continue':
this.setDefaultMenuSaveAndContinueIcon( context_btn, grid_selected_length );
break;
case 'save_and_new':
this.setDefaultMenuSaveAndAddIcon( context_btn, grid_selected_length );
break;
case 'save_and_copy':
this.setDefaultMenuSaveAndCopyIcon( context_btn, grid_selected_length );
break;
case 'copy_as_new':
this.setDefaultMenuCopyAsNewIcon( context_btn, grid_selected_length );
break;
case 'login':
this.setDefaultMenuLoginIcon( context_btn, grid_selected_length );
break;
case 'cancel':
this.setDefaultMenuCancelIcon( context_btn, grid_selected_length );
break;
case 'import_icon':
this.setDefaultMenuImportIcon( context_btn, grid_selected_length );
break;
case 'permission_wizard':
this.setDefaultMenuPermissionWizardIcon( context_btn, grid_selected_length );
break;
case 'map':
this.setDefaultMenuMapIcon( context_btn, grid_selected_length );
break;
case 'export_excel':
this.setDefaultMenuExportIcon( context_btn, grid_selected_length );
break;
default:
this.setCustomDefaultMenuIcon( id, context_btn, grid_selected_length );
break;
}
}
this.initRightClickMenu();
}
setCustomDefaultMenuIcon( id, context_btn, grid_selected_length ) {
return false; //FALSE tells setCustomDefaultMenuIcon() to keep processing.
}
setEditMenu() {
var context_menu_array = ContextMenuManager.getMenuModelByMenuId( this.determineContextMenuMountAttributes().id );
var len = context_menu_array.length;
for ( var i = 0; i < len; i++ ) {
let context_btn = context_menu_array[i];
let id = context_menu_array[i].id;
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
if ( this.is_mass_editing ) {
switch ( id ) {
case 'save':
this.setEditMenuSaveIcon( context_btn );
break;
case 'edit':
this.setEditMenuEditIcon( context_btn );
break;
case 'cancel':
break;
default:
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
break;
}
continue;
}
switch ( id ) {
case 'add':
this.setEditMenuAddIcon( context_btn );
break;
case 'edit':
this.setEditMenuEditIcon( context_btn );
break;
case 'view':
this.setEditMenuViewIcon( context_btn );
break;
case 'mass_edit':
this.setEditMenuMassEditIcon( context_btn );
break;
case 'copy':
this.setEditMenuCopyIcon( context_btn );
break;
case 'delete_icon':
this.setEditMenuDeleteIcon( context_btn );
break;
case 'delete_and_next':
this.setEditMenuDeleteAndNextIcon( context_btn );
break;
case 'save':
this.setEditMenuSaveIcon( context_btn );
break;
case 'save_and_continue':
this.setEditMenuSaveAndContinueIcon( context_btn );
break;
case 'save_and_new':
this.setEditMenuSaveAndAddIcon( context_btn );
break;
case 'save_and_next':
this.setEditMenuSaveAndNextIcon( context_btn );
break;
case 'save_and_copy':
this.setEditMenuSaveAndCopyIcon( context_btn );
break;
case 'copy_as_new':
this.setEditMenuCopyAndAddIcon( context_btn );
break;
case 'cancel':
break;
case 'import_icon':
this.setEditMenuImportIcon( context_btn );
break;
case 'permission_wizard':
this.setEditMenuPermissionWizardIcon( context_btn );
break;
case 'login':
this.setEditMenuLoginIcon( context_btn );
break;
case 'map':
this.setEditMenuMapIcon( context_btn );
break;
case 'export_excel':
this.setDefaultMenuExportIcon( context_btn );
break;
default:
this.setCustomEditMenuIcon( id, context_btn );
break;
}
}
this.hideJumpToMenu();
this.initRightClickMenu( RightClickMenuType.EDITVIEW );
}
setCustomEditMenuIcon( id, context_btn ) {
return false; //FALSE tells setCustomEditMenuIcon() to keep processing.
}
setDefaultMenuMapIcon( context_btn ) {
if ( Global.getProductEdition() <= 10 ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
var show = false;
if ( this.grid ) {
var selected_items = this.getSelectedItems();
Debug.Arr( selected_items, 'selected items', 'BaseViewController.js', 'BaseViewController', 'setDefaultMenuMapIcon', 10 );
if ( selected_items.length > 0 ) {
for ( var x = 0; x < selected_items.length; x++ ) {
if ( selected_items[x] && selected_items[x].latitude && selected_items[x].longitude ) {
show = true;
break;
}
}
}
}
if ( show ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
} else {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
}
setEditMenuMapIcon( context_btn ) {
this.setDefaultMenuMapIcon( context_btn );
}
setEditMenuLoginIcon( context_btn ) {
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
}
setErrorMenu() {
var context_menu_array = ContextMenuManager.getMenuModelByMenuId( this.determineContextMenuMountAttributes().id );
var len = context_menu_array.length;
for ( var i = 0; i < len; i++ ) {
let context_btn = context_menu_array[i];
let id = context_menu_array[i].id;
if ( context_menu_array[i].split_button_active_item ) {
//Temporarily sets split button to ignore resetting of the active item. This stops active split button item from resetting.
//Example if doing "Save & Continue" we do not want the button to switch back to "Save" just because validation failed.
ContextMenuManager.freezeSplitButtonActiveItem( this.determineContextMenuMountAttributes().id, context_btn.id );
}
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, true );
switch ( id ) {
case 'cancel':
break;
default:
ContextMenuManager.disableMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false );
break;
}
}
}
render() {
var $this = this;
$( window ).off( 'resize.edit_tabs' ).on( 'resize.edit_tabs', Global.debounce( function() {
if ( $this.edit_view ) {
$this.setEditViewTabSize();
}
}, 200 ) );
TTPromise.add( 'BaseViewController', 'getCustomFields' );
this.getCustomFieldsForView();
//Create search panel only when show as a main view
if ( !this.sub_view_mode && !this.edit_only_mode && !this.tree_mode ) {
var search_panel_w = $( $.fn.SearchPanel.html.search_panel );
$( this.el ).prepend( search_panel_w );
if ( !this.show_search_tab ) {
search_panel_w.hide();
}
this.search_panel = search_panel_w.SearchPanel( { viewController: this } );
this.search_panel.on( 'searchTabSelect', function() {
$this.onSearchTabSelect;
} );
TTPromise.wait( 'BaseViewController', 'getCustomFields', function() {
this.buildSearchFields();
this.buildCustomFieldSearchFields()
this.buildBasicSearchUI();
this.buildAdvancedSearchUI();
this.buildSearchAndLayoutUI();
//Work around that the li offset is empty in chrome
setTimeout( function() {
$this.setCurrentViewPosition();
}, 500 );
}.bind( this ) );
}
}
setCurrentViewPosition() {
var current_view_div = this.search_panel.find( '.layout-selector-div' );
var saved_layout_li = this.search_panel.find( 'a[ref=\'saved_layout\']' ).parent();
// Error: Unable to get property 'left' of undefined or null reference in /interface/html5/views/BaseViewController.js?v=8.0.6-20150417-083849 line 3691
if ( !current_view_div || !saved_layout_li || !saved_layout_li.offset() ) {
return;
}
// Now controlled from CSS in SearchPanel.css Dont understand why there is a complex left: x JS calc, right position seems better and more consistent.
// current_view_div.css( 'left', saved_layout_li.offset().left + saved_layout_li.width() - 60 ); // Change to 60 is trial and error trying to prevent current view dropdown from overlapping in new layout design
}
//Build fields when search tab change
onSearchTabSelect( e, e1, ui ) {
var tab_id = $( ui ).prop( 'id' );
switch ( tab_id ) {
case 'basic_search':
if ( this.search_panel.getLastSelectTabId() !== 'saved_layout' ) {
this.getSearchPanelFilter( 1, true );
this.buildBasicSearchUI();
this.setSearchPanelFilter( false, 0 );
}
break;
case 'adv_search':
if ( this.search_panel.getLastSelectTabId() !== 'saved_layout' ) {
this.getSearchPanelFilter( 0, true );
this.buildAdvancedSearchUI();
this.setSearchPanelFilter( false, 1 );
}
break;
case 'saved_layout':
this.getSearchPanelFilter( this.search_panel.getLastSelectTabIndex() );
}
}
initDropDownOptions( options, callBack ) {
let $this = this;
let api_groups = {};
//Fill any values that are not set and group option calls by their API endpoint.
for ( let i = 0; i < options.length; i++ ) {
let option = options[i];
if ( !Global.isSet( option.api ) ) {
option.api = this.api;
}
if ( !Global.isSet( option.field_name ) || !option.field_name ) {
option.field_name = option.option_name + '_id';
}
if ( !Global.isSet( option.parent ) || !option.parent ) {
option.parent = null;
}
//Group getOption calls by their API endpoint.
if ( !api_groups[option.api.className] ) {
api_groups[option.api.className] = [];
}
api_groups[option.api.className].push( option );
}
//Call getOptionsBatch on each requested API
let completed_api_calls = 0;
for ( let api_class in api_groups ) {
if ( Array.isArray( api_groups[api_class] ) === false ) {
//Issue #3223 - Error: Uncaught TypeError: api_groups[api_class].reduce is not a function
//The cause for this exception is unknown as the above code is syncronous and should always produce
//the same results given the same input. However, for some reason api_groups[api_class] is not an always an array.
//This change is simply meant to prevent the error from being thrown.
if ( Global.isSet( callBack ) ) {
callBack();
}
Debug.Text( 'Unexpected error api_groups[api_class] is not an array.', 'BaseViewController.js', 'BaseViewController', 'initDropDownOptions', 9 );
return;
}
//Reduce data sent to API with only data required for the API.
let data = api_groups[api_class].reduce( ( new_obj, option ) => ( new_obj[option.option_name] = option.parent, new_obj ), {} );
TTAPI[api_class].getOptionsBatch( data, {
onResult: function( response ) {
let results = response.getResult();
if ( results && Object.keys( results ).length > 0 ) {
for ( let option in results ) {
let option_data = results[option];
let option_field_info = api_groups[api_class].find( icon => icon.option_name === option );
//Set view controller variables and field data
$this[option + '_array'] = Global.buildRecordArray( option_data );
if ( !$this.sub_view_mode ) {
if ( Global.isSet( $this.basic_search_field_ui_dic[option_field_info.field_name] ) ) {
$this.basic_search_field_ui_dic[option_field_info.field_name].setSourceData( Global.buildRecordArray( option_data ) );
}
if ( Global.isSet( $this.adv_search_field_ui_dic[option_field_info.field_name] ) ) {
$this.adv_search_field_ui_dic[option_field_info.field_name].setSourceData( Global.buildRecordArray( option_data ) );
}
}
}
}
completed_api_calls++;
if ( Object.keys( api_groups ).length === completed_api_calls && Global.isSet( callBack ) ) {
//Only call the callback when all API calls have completed.
callBack( response );
}
}
} );
}
}
buildWidgetContainerWithTextTip( widget, tip ) {
var h_box = $( '<div class=\'h-box\'></div>' );
var text_box = Global.loadWidgetByName( FormItemType.TEXT );
text_box.css( 'margin-left', '10px' );
text_box.TText();
text_box.setValue( tip );
h_box.append( widget );
h_box.append( text_box );
return h_box;
}
//Set option list for search panel and edit view
initDropDownOption( option_name, field_name, api, callBack, array_name ) {
var $this = this;
if ( !Global.isSet( api ) ) {
api = this.api;
}
if ( !Global.isSet( field_name ) || !field_name ) {
field_name = option_name + '_id';
}
api.getOptions( option_name, {
onResult: function( res ) {
var result = res.getResult();
if ( array_name ) {
$this[array_name] = Global.buildRecordArray( result );
} else {
$this[option_name + '_array'] = Global.buildRecordArray( result );
}
if ( !$this.sub_view_mode ) {
if ( Global.isSet( $this.basic_search_field_ui_dic[field_name] ) ) {
$this.basic_search_field_ui_dic[field_name].setSourceData( Global.buildRecordArray( result ) );
}
if ( Global.isSet( $this.adv_search_field_ui_dic[field_name] ) ) {
$this.adv_search_field_ui_dic[field_name].setSourceData( Global.buildRecordArray( result ) );
}
}
if ( Global.isSet( callBack ) ) {
callBack( res );
}
}
} );
}
clearSearchPanel() {
for ( var key in this.basic_search_field_ui_dic ) {
var search_input = this.basic_search_field_ui_dic[key];
search_input.setValue( null );
}
for ( var key in this.adv_search_field_ui_dic ) {
search_input = this.adv_search_field_ui_dic[key];
search_input.setValue( null );
}
}
onSearch() {
TTPromise.add( 'init', 'init' );
TTPromise.wait();
var do_update = false;
//don't keep temp filter any more, set them when change tab
this.temp_adv_filter_data = null;
this.temp_basic_filter_data = null;
this.getSearchPanelFilter();
if ( this.search_panel.getLayoutsArray() && this.search_panel.getLayoutsArray().length > 0 ) {
var default_layout_id = $( this.previous_saved_layout_selector ).children( 'option:contains(\'' + BaseViewController.default_layout_name + '\')' ).attr( 'value' );
if ( !default_layout_id ) {
this.onSaveNewLayout( BaseViewController.default_layout_name );
return;
}
var layout_name = BaseViewController.default_layout_name;
} else if ( this.show_search_tab ) {
this.onSaveNewLayout( BaseViewController.default_layout_name );
return;
} else if ( !this.show_search_tab ) {
this.search();
this.setGridHeaderStyle();
return;
}
var sort_filter = this.getSearchPanelSortFilter();
var selected_display_columns = this.getSearchPanelDisplayColumns();
var filter_data = this.getValidSearchFilter();
var args = {};
args.id = default_layout_id;
args.data = {};
args.data.display_columns = selected_display_columns;
args.data.filter_data = filter_data;
args.data.filter_sort = sort_filter;
ProgressBar.showOverlay();
var $this = this;
this.user_generic_data_api.setUserGenericData( args, {
onResult: function( res ) {
if ( res.isValid() ) {
$this.clearViewLayoutCache();
$this.clearAwesomeboxLayoutCache();
$this.need_select_layout_name = layout_name;
$this.initLayout();
}
}
} );
}
onClearSearch() {
var do_update = false;
if ( this.search_panel.getLayoutsArray() && this.search_panel.getLayoutsArray().length > 0 ) {
var default_layout_id = $( this.previous_saved_layout_selector ).children( 'option:contains(\'' + BaseViewController.default_layout_name + '\')' ).attr( 'value' );
if ( !default_layout_id ) {
this.clearSearchPanel();
this.filter_data = null;
this.temp_adv_filter_data = null;
this.temp_basic_filter_data = null;
this.column_selector.setSelectGridData( this.default_display_columns );
this.sort_by_selector.setValue( null );
this.onSaveNewLayout( BaseViewController.default_layout_name );
return;
}
var layout_name = BaseViewController.default_layout_name;
this.clearSearchPanel();
this.filter_data = null;
this.temp_adv_filter_data = null;
this.temp_basic_filter_data = null;
do_update = true;
} else {
this.clearSearchPanel();
this.filter_data = null;
this.temp_adv_filter_data = null;
this.temp_basic_filter_data = null;
this.column_selector.setSelectGridData( this.default_display_columns );
this.sort_by_selector.setValue( null );
this.onSaveNewLayout( BaseViewController.default_layout_name );
return;
}
// this.column_selector.setSelectGridData( this.default_display_columns );
this.sort_by_selector.setValue( null );
var sort_filter = this.getSearchPanelSortFilter();
var selected_display_columns = this.getSearchPanelDisplayColumns();
var filter_data = this.getValidSearchFilter();
if ( do_update ) {
var args = {};
args.id = default_layout_id;
args.data = {};
args.data.display_columns = selected_display_columns;
args.data.filter_data = filter_data;
args.data.filter_sort = sort_filter;
}
var $this = this;
this.user_generic_data_api.setUserGenericData( args, {
onResult: function( res ) {
if ( res.isValid() ) {
$this.clearViewLayoutCache();
$this.need_select_layout_name = layout_name;
$this.initLayout();
}
}
} );
}
onSaveNewLayout( default_layout_name ) {
if ( Global.isSet( default_layout_name ) ) {
var layout_name = default_layout_name;
} else {
layout_name = this.save_search_as_input.getValue();
}
if ( !layout_name || layout_name.length < 1 ) {
return;
}
var sort_filter = this.getSearchPanelSortFilter();
var selected_display_columns = this.getSearchPanelDisplayColumns();
var filter_data = this.getValidSearchFilter();
var args = {};
args.script = this.script_name;
args.name = layout_name;
args.is_default = false;
args.data = {};
args.data.display_columns = selected_display_columns;
args.data.filter_data = filter_data;
args.data.filter_sort = sort_filter;
var $this = this;
var a_layout_name = ALayoutCache.layout_dic[this.script_name];
if ( a_layout_name && ALayoutCache.layout_dic[a_layout_name] ) {
ALayoutCache.layout_dic[a_layout_name] = null;
}
this.user_generic_data_api.setUserGenericData( args, {
onResult: function( res ) {
if ( res.isValid() ) {
$this.clearAwesomeboxLayoutCache();
$this.clearViewLayoutCache();
$this.need_select_layout_name = layout_name;
$this.initLayout();
} else {
TAlertManager.showErrorAlert( res );
}
}
} );
}
onUpdateLayout() {
var selectId = $( this.previous_saved_layout_selector ).children( 'option:selected' ).attr( 'value' );
var layout_name = $( this.previous_saved_layout_selector ).children( 'option:selected' ).text();
var sort_filter = this.getSearchPanelSortFilter();
var selected_display_columns = this.getSearchPanelDisplayColumns();
var filter_data = this.getValidSearchFilter();
var args = {};
args.id = selectId;
args.data = {};
args.data.display_columns = selected_display_columns;
args.data.filter_data = filter_data;
args.data.filter_sort = sort_filter;
var $this = this;
var a_layout_name = ALayoutCache.layout_dic[this.script_name];
if ( a_layout_name && ALayoutCache.layout_dic[a_layout_name] ) {
ALayoutCache.layout_dic[a_layout_name] = null;
}
this.user_generic_data_api.setUserGenericData( args, {
onResult: function( res ) {
if ( res.isValid() ) {
$this.clearAwesomeboxLayoutCache();
$this.clearViewLayoutCache();
$this.need_select_layout_name = layout_name;
$this.initLayout();
}
}
} );
}
clearViewLayoutCache() {
if ( LocalCacheData.view_layout_cache && LocalCacheData.view_layout_cache[this.script_name] ) {
LocalCacheData.view_layout_cache[this.script_name] = null;
}
}
clearAwesomeboxLayoutCache() {
// Removed saved view layout for awesomebox if it existed.
if ( ALayoutCache.layout_dic && ALayoutCache.layout_dic[this.script_name] ) {
ALayoutCache.layout_dic[ALayoutCache.layout_dic[this.script_name]] = null;
}
}
onDeleteLayout() {
var selectId = $( this.previous_saved_layout_selector ).children( 'option:selected' ).attr( 'value' );
var $this = this;
this.user_generic_data_api.deleteUserGenericData( selectId, {
onResult: function( res ) {
if ( res.isValid() ) {
$this.clearAwesomeboxLayoutCache();
$this.clearViewLayoutCache();
$this.need_select_layout_name = $this.select_layout.name;
$this.initLayout();
}
}
} );
}
buildSearchFields() {
//Override in all subview
}
buildCustomFieldSearchFields() {
if ( !this.search_fields ) {
this.search_fields = [];
}
this.custom_fields.forEach( ( field ) => {
if ( field.enable_search ) {
let field_settings = {
label: field.name,
in_column: 1,
field: this.getPrefixedCustomFieldID( field.id ),
basic_search: false,
adv_search: true,
};
let type_id = parseInt( field.type_id );
switch ( type_id ) {
case 500: //Checkbox
field_settings.form_item_type = FormItemType.AWESOME_BOX;
field_settings.multiple = false;
field_settings.layout_name = 'global_option_column';
field_settings.addition_source_function = ( target, source_data ) => {
source_data = [
{ value: TTUUID.zero_id, label: '-- ' + $.i18n._( 'ANY' ) + ' --' },
{ value: true, label: $.i18n._( 'Yes' ) },
{ value: false, label: $.i18n._( 'No' ) }
];
return source_data;
};
break;
case 1000: //Date
field_settings.form_item_type = FormItemType.DATE_PICKER;
break;
// case 1010: //Date Range Search Disabled
// field_settings.form_item_type = FormItemType.DATE_PICKER;
// break;
case 1100: //Time
field_settings.form_item_type = FormItemType.TIME_PICKER;
break;
case 1200: //Datetime
field_settings.form_item_type = FormItemType.DATE_PICKER;
field_settings.mode = 'date_time';
break;
case 1300: //Time Unit
field_settings.form_item_type = FormItemType.TEXT_INPUT;
field_settings.mode = 'time_unit';
field_settings.need_parser_sec = true;
break;
case 2100: //Single-select dropdown
case 2110: //Multi-select dropdown
field_settings.form_item_type = FormItemType.AWESOME_BOX;
field_settings.multiple = false;
field_settings.layout_name = 'global_option_column';
field_settings.addition_source_function = ( target, source_data ) => {
source_data = []; //Overwriting source data to empty array.
if ( field.meta_data.validation.multi_select_items ) {
field.meta_data.validation.multi_select_items.forEach( ( item ) => {
source_data.push( {
id: item.id,
value: item.id,
label: item.label
} );
} );
}
return source_data;
};
break;
default:
field_settings.form_item_type = FormItemType.TEXT_INPUT;
break;
}
this.search_fields.push( new SearchField( field_settings ) );
}
} );
}
buildBasicSearchUI() {
if ( !this.search_fields ) {
return;
}
var basic_search_div = this.search_panel.find( 'div #basic_search_content_div' );
var len = this.search_fields.length;
var $this = this;
var column1 = basic_search_div.find( '.first-column' );
var column2 = basic_search_div.find( '.second-column' );
var column3 = basic_search_div.find( '.third-column' );
var already_created_ui = false;
$.each( this.search_fields, function( index, search_field ) {
if ( Global.isSet( $this.basic_search_field_ui_dic[search_field.get( 'field' )] ) ) {
already_created_ui = true;
return false;
}
if ( !search_field.get( 'basic_search' ) ) {
return true;
}
// var form_item = $( Global.loadWidget( 'global/widgets/search_panel/FormItem.html' ) ); // TODO: #3023: Delete this line once widget html converted and no longer need this quick reference for the old format.
var form_item = $( $.fn.SearchPanel.html.form_item );
var form_item_label = form_item.find( '.form-item-label' );
var form_item_input_div = form_item.find( '.form-item-input-div' );
var form_item_input = $this.getFormItemInput( search_field );
form_item_label.text( search_field.get( 'label' ) );
form_item_input_div.append( form_item_input );
switch ( search_field.get( 'in_column' ) ) {
case 1:
column1.append( form_item );
column1.append( '<div class=\'clear-both-div\'></div>' );
break;
case 2:
column2.append( form_item );
column2.append( '<div class=\'clear-both-div\'></div>' );
break;
case 3:
column3.append( form_item );
column3.append( '<div class=\'clear-both-div\'></div>' );
break;
}
$this.basic_search_field_ui_dic[search_field.get( 'field' )] = form_item_input;
} );
if ( !already_created_ui ) {
this.onBuildBasicUIFinished();
}
}
buildAdvancedSearchUI() {
if ( !this.search_fields ) {
return;
}
var advSearchDiv = this.search_panel.find( 'div #adv_search_content_div' );
var $this = this;
var column1 = advSearchDiv.find( '.first-column' );
var column2 = advSearchDiv.find( '.second-column' );
var column3 = advSearchDiv.find( '.third-column' );
var already_created_ui = false;
var no_adv_ui = true;
$.each( this.search_fields, function( index, search_field ) {
if ( Global.isSet( $this.adv_search_field_ui_dic[search_field.get( 'field' )] ) ) {
already_created_ui = true;
no_adv_ui = false;
return false;
}
if ( !search_field.get( 'adv_search' ) ) {
return true;
}
var form_item = $( $.fn.SearchPanel.html.form_item );
var form_item_label = form_item.find( '.form-item-label' );
var form_item_input_div = form_item.find( '.form-item-input-div' );
var form_item_input = $this.getFormItemInput( search_field );
form_item_label.text( search_field.get( 'label' ) );
form_item_input_div.append( form_item_input );
switch ( search_field.get( 'in_column' ) ) {
case 1:
column1.append( form_item );
column1.append( '<div class=\'clear-both-div\'></div>' );
break;
case 2:
column2.append( form_item );
column2.append( '<div class=\'clear-both-div\'></div>' );
break;
case 3:
column3.append( form_item );
column3.append( '<div class=\'clear-both-div\'></div>' );
break;
}
$this.adv_search_field_ui_dic[search_field.get( 'field' )] = form_item_input;
no_adv_ui = false;
} );
if ( no_adv_ui ) {
this.search_panel.hideAdvSearchPanel();
}
if ( !already_created_ui ) {
this.onBuildAdvUIFinished();
}
}
onSetSearchFilterFinished() {
}
onBuildAdvUIFinished() {
//Always override in sub class
}
onBuildBasicUIFinished() {
//Always override in sub class
}
getFormItemInput( search_field ) {
var input;
var form_type = search_field.get( 'form_item_type' );
switch ( form_type ) {
case FormItemType.AWESOME_BOX:
input = Global.loadWidgetByName( FormItemType.AWESOME_BOX );
var show_search = false;
var key;
if ( search_field.get( 'layout_name' ) !== 'global_option_column' && search_field.get( 'layout_name' ) !== 'global_tree_column' ) {
show_search = true;
key = 'id';
} else {
if ( search_field.get( 'layout_name' ) === 'global_tree_column' ) {
key = 'id';
} else {
key = 'value';
}
}
input.AComboBox( {
api_class: search_field.get( 'api_class' ),
allow_multiple_selection: search_field.get( 'multiple' ),
layout_name: search_field.get( 'layout_name' ),
tree_mode: search_field.get( 'tree_mode' ),
default_args: search_field.get( 'default_args' ),
show_search_inputs: show_search,
set_any: search_field.get( 'set_any' ),
addition_source_function: search_field.get( 'addition_source_function' ),
script_name: search_field.get( 'script_name' ),
custom_first_label: search_field.get( 'custom_first_label' ),
key: key,
search_panel_model: true,
field: search_field.get( 'field' )
} );
if ( search_field.get( 'customSearchFilter' ) ) {
input.customSearchFilter = search_field.get( 'customSearchFilter' );
}
break;
case FormItemType.TEXT_INPUT:
input = Global.loadWidgetByName( FormItemType.TEXT_INPUT );
input.TTextInput( {
field: search_field.get( 'field' ),
need_parser_sec: search_field.get( 'need_parser_sec' ),
mode: search_field.get( 'mode' ),
} );
break;
case FormItemType.TIME_PICKER:
input = Global.loadWidgetByName( FormItemType.TIME_PICKER );
input.TTimePicker( {
field: search_field.get( 'field' )
} );
break;
case FormItemType.PASSWORD_INPUT:
input = Global.loadWidgetByName( FormItemType.PASSWORD_INPUT );
input.TTextInput( {
field: search_field.get( 'field' )
} );
break;
case FormItemType.COMBO_BOX:
input = Global.loadWidgetByName( FormItemType.COMBO_BOX );
input.TComboBox( {
field: search_field.get( 'field' ),
set_any: true
} );
break;
case FormItemType.TAG_INPUT:
input = Global.loadWidgetByName( FormItemType.TAG_INPUT );
input.TTagInput( {
field: search_field.get( 'field' ),
object_type_id: search_field.get( 'object_type_id' )
} );
break;
case FormItemType.DATE_PICKER:
input = Global.loadWidgetByName( form_type );
input = $( input );
input.TDatePicker( {
field: search_field.get( 'field' ),
mode: search_field.get( 'mode' ),
} );
break;
case FormItemType.CHECKBOX:
input = Global.loadWidgetByName( FormItemType.CHECKBOX );
input.TCheckbox( {
field: search_field.get( 'field' )
} );
break;
default:
Debug.Error( 'ERROR: Form type does not exist: '+ form_type, 'BaseViewController.js', 'BaseViewController', 'getFormItemInput', 2 );
break;
}
return input;
}
buildSearchAndLayoutUI() {
var layout_div = this.search_panel.find( 'div #saved_layout_content_div' );
//Display Columns
var form_item = $( $.fn.SearchPanel.html.form_item );
var form_item_label = form_item.find( '.form-item-label' );
var form_item_input_div = form_item.find( '.form-item-input-div' );
this.column_selector = Global.loadWidgetByName( FormItemType.AWESOME_DROPDOWN );
this.column_selector = this.column_selector.ADropDown( {
display_show_all: false,
id: this.ui_id + '_column_selector',
key: 'value',
allow_drag_to_order: true,
display_close_btn: false,
display_column_settings: false,
max_height: 150
} );
this.column_selector.on( 'formItemChange', function() {
$this.layout_changed = true;
} );
form_item_label.text( $.i18n._( 'Display Columns' ) );
form_item_label.addClass( 'SearchPanel-displayColumns-label' );
form_item_input_div.append( this.column_selector );
layout_div.append( form_item );
layout_div.append( '<div class=\'clear-both-div\'></div>' );
this.column_selector.setColumns( [
{ name: 'label', index: 'label', label: $.i18n._( 'Column Name' ), width: 100, sortable: false }
] );
//Sort By
form_item = $( $.fn.SearchPanel.html.form_item );
form_item_label = form_item.find( '.form-item-label' );
form_item_input_div = form_item.find( '.form-item-input-div' );
this.sort_by_selector = Global.loadWidgetByName( FormItemType.AWESOME_BOX );
this.sort_by_selector = this.sort_by_selector.AComboBox( {
allow_drag_to_order: true,
allow_multiple_selection: true,
set_empty: true,
layout_name: 'global_sort_columns'
} );
form_item_label.text( $.i18n._( 'Sort By' ) );
form_item_input_div.append( this.sort_by_selector );
layout_div.append( form_item );
layout_div.append( '<div class=\'clear-both-div\'></div>' );
//Save and update layout
form_item = $( $.fn.SearchPanel.html.form_item );
form_item_label = form_item.find( '.form-item-label' );
form_item_input_div = form_item.find( '.form-item-input-div' );
form_item_label.text( $.i18n._( 'Save Search As' ) );
this.save_search_as_input = Global.loadWidgetByName( FormItemType.TEXT_INPUT );
this.save_search_as_input.TTextInput();
var save_btn = $( '<button class="tt-button p-button p-component small-search-panel-button" type="button">\n' +
'<span class="tticon tticon-save_black_24dp"></span>\n' +
'<span class="p-button-label">' + $.i18n._( 'Save' ) + '</span>\n' +
'</button>' );
form_item_input_div.append( this.save_search_as_input );
form_item_input_div.append( save_btn );
var $this = this;
save_btn.click( function() {
$this.saving_layout_in_layout_tab = true;
$this.onSaveNewLayout();
$this.search();
} );
//Previous Saved Layout
this.previous_saved_layout_div = $( '<div class=\'previous-saved-layout-div\'></div>' );
form_item_input_div.append( this.previous_saved_layout_div );
form_item_label = $( '<span style=\'margin-left: 5px\' >' + $.i18n._( 'Previous Saved Searches' ) + ':</span>' );
this.previous_saved_layout_div.append( form_item_label );
this.previous_saved_layout_selector = $( '<select style=\'margin-left: 5px\' class=\'t-select\'>' );
var update_btn = $( '<button class="tt-button p-button p-component small-search-panel-button" type="button">\n' +
'<span class="tticon tticon-save_black_24dp"></span>\n' +
'<span class="p-button-label">' + $.i18n._( 'Update' ) + '</span>\n' +
'</button>' );
var del_btn = $( '<button class="tt-button p-button p-component small-search-panel-button" type="button">\n' +
'<span class="tticon tticon-delete_black_24dp"></span>\n' +
'<span class="p-button-label">' + $.i18n._( 'Delete' ) + '</span>\n' +
'</button>' );
update_btn.click( function() {
$this.onUpdateLayout();
} );
del_btn.click( function() {
$this.onDeleteLayout();
} );
this.previous_saved_layout_div.append( this.previous_saved_layout_selector );
this.previous_saved_layout_div.append( update_btn );
this.previous_saved_layout_div.append( del_btn );
layout_div.append( form_item );
this.previous_saved_layout_div.css( 'display', 'none' );
}
onGridSelectRow() {
$( '#ribbon_view_container .context-menu:visible a' ).click();
this.setDefaultMenu();
}
setPreviousSavedSearchSourcesAndValue( layouts_array ) {
var $this = this;
if ( this.previous_saved_layout_selector ) {
this.previous_saved_layout_selector.empty();
if ( layouts_array && layouts_array.length > 0 ) {
this.previous_saved_layout_div.css( 'display', 'inline' );
var len = layouts_array.length;
for ( var i = 0; i < len; i++ ) {
var item = layouts_array[i];
this.previous_saved_layout_selector.append( $( '<option value="' + item.id + '"></option>' ).text( item.name ) );
}
$( this.previous_saved_layout_selector.find( 'option' ) ).filter( function() {
return $( this ).attr( 'value' ) == $this.select_layout.id;
} ).prop( 'selected', true ).attr( 'selected', true );
} else {
this.previous_saved_layout_div.css( 'display', 'none' );
}
}
}
setSelectLayout( exclude_column ) {
var $this = this;
var grid;
var grid_id = 'grid';
if ( !Global.isSet( this.grid ) ) {
grid = $( this.el ).find( '#grid' );
grid.attr( 'id', this.ui_id + '_grid' ); //Grid's id is ScriptName + _grid
grid_id = this.ui_id + '_grid';
}
var column_info_array = [];
if ( !this.select_layout ) { //Set to default layout if no layout at all
this.select_layout = { id: '' };
this.select_layout.data = { filter_data: {}, filter_sort: {} };
this.select_layout.data.display_columns = this.default_display_columns;
}
var layout_data = this.select_layout.data;
if ( !layout_data.display_columns || layout_data.display_columns.length == 0 ) {
layout_data.display_columns = this.default_display_columns;
}
var display_columns = this.buildDisplayColumns( layout_data.display_columns );
if ( !this.sub_view_mode && this.search_panel ) {
//Set Display Column in layout panel
//Error: TypeError: null is not an object (evaluating 'this.column_selector.setSelectGridData')
if ( this.column_selector ) {
this.column_selector.setSelectGridData( display_columns );
//this.column_selector.setGridColumnsWidths(); //This is called in SearchPanel.setGridSize() on expand instead, as browsers seem to optimize out scrollbar calculations until the DOM element is visible.
}
//Set Sort by awesomebox in layout panel
//Error: TypeError: null is not an object (evaluating 'this.sort_by_selector.setSourceData')
if ( this.sort_by_selector ) {
this.sort_by_selector.setSourceData( this.buildSortSelectorUnSelectColumns( display_columns ) );
this.sort_by_selector.setValue( this.buildSortBySelectColumns() );
}
//Set Previoous Saved layout combobox in layout panel
var layouts_array = this.search_panel.getLayoutsArray();
this.setPreviousSavedSearchSourcesAndValue( layouts_array );
}
//Set Data Grid on List view
var len = display_columns.length;
for ( var i = 0; i < len; i++ ) {
var view_column_data = display_columns[i];
if ( $.inArray( view_column_data.value, exclude_column ) !== -1 ) {
continue;
}
var column_info = {
name: view_column_data.value,
index: view_column_data.value,
label: view_column_data.label,
width: 100,
sortable: false,
title: false
};
column_info_array.push( column_info );
}
var grid_needs_reload = false;
if ( this.grid ) {
grid_id = this.ui_id + '_grid';
if ( this.layout_changed == true ) {
$this.layout_changed = false;
this.grid.grid.jqGrid( 'GridUnload' );
this.grid = null;
} else {
//This is done in BaseViewControler->search() right before the data is set, which prevents "flashing".
// However some views override this function and need to be fixed manually.
//this.grid.clearGridData();
}
}
this.showGridBorders();
if ( !this.grid ) {
var grid_setup = this.getGridSetup();
if ( this.sub_view_mode ) {
grid_setup.height = 1;
}
this.grid = new TTGrid( grid_id, grid_setup, column_info_array );
if ( this.sub_view_mode ) {
this.grid.grid.hide();
}
this.setGridColumnsWidth(); //Helps makes changing layouts "flash" less, especially when going from only a few columns to many.
this.setGridSize( this.ui_id, this.sub_view_mode, this.sub_view_grid_autosize, this.pager_data );
}
if ( this.grid && grid_needs_reload ) {
this.grid.reloadGrid();
}
//Add widget on UI and bind events. Next set data in it in search result
if ( LocalCacheData.paging_type === 0 ) {
if ( this.paging_widget.parent().length > 0 ) {
this.paging_widget.remove();
}
this.paging_widget.css( 'width', this.grid.grid.width() );
this.grid.grid.append( this.paging_widget );
this.paging_widget.click( $this.onPaging() );
} else {
$( this.el ).find( '.total-number-div' ).append( this.paging_widget );
$( this.el ).find( '.bottom-div' ).append( this.paging_widget_2 );
this.paging_widget.on( 'paging', function( e, action, page_number ) {
$this.onPaging2( e, action, page_number );
} );
this.paging_widget_2.bind( 'paging', function( e, action, page_number ) {
$this.onPaging2( e, action, page_number );
} );
}
this.bindGridColumnEvents();
this.setGridHeaderStyle(); //Set Sort Style
//replace select layout filter_data to filter set in onNavigation function when goto view from navigation context group
if ( LocalCacheData.default_filter_for_next_open_view ) {
this.select_layout.data.filter_data = LocalCacheData.default_filter_for_next_open_view.filter_data;
LocalCacheData.default_filter_for_next_open_view = null;
}
this.filter_data = this.select_layout.data.filter_data;
if ( !this.sub_view_mode ) {
this.setSearchPanelFilter( true ); //Auto change to property tab when set value to search fields.
}
}
getGridSetup() {
var $this = this;
var container = this.grid_parent ? this.grid_parent : '.grid-div';
if ( !this.grid_parent && this.sub_view_mode ) {
if ( $( '#' + this.ui_id + '_grid' ).parents( '.sub-view' ).length > 0 ) {
container = '.sub-grid-view-div';
} else {
container = '.edit-view-tab-bar';
}
}
return {
container_selector: container,
sub_grid_mode: this.sub_view_mode,
onResizeGrid: true,
onSelectRow: function() {
$this.onGridSelectRow();
},
onCellSelect: function() {
$this.onGridSelectRow();
},
onSelectAll: function() {
$this.onGridSelectAll();
},
ondblClickRow: function( e ) {
$this.onGridDblClickRow( e );
},
onRightClickRow: function( rowId ) {
var id_array = $this.getGridSelectIdArray();
if ( id_array.indexOf( rowId ) < 0 ) {
$this.grid.grid.resetSelection();
$this.grid.grid.setSelection( rowId );
$this.onGridSelectRow();
}
},
height: 1, //Start really small to reduce flashing, as height is changed with setGridSize() shortly after anyways.
};
}
onGridSelectAll() {
this.setDefaultMenu();
}
unSelectAll() {
this.grid.grid.resetSelection();
}
onGridDblClickRow( e ) {
this.grid.grid.resetSelection();
this.grid.setSelection( e, false );
this.setDefaultMenu( true );
var context_menu_array = ContextMenuManager.getMenuModelByMenuId( this.determineContextMenuMountAttributes().id );
var len = context_menu_array.length;
var need_break = false;
for ( var i = 0; i < len; i++ ) {
if ( need_break ) {
break;
}
var id = context_menu_array[i].id;
switch ( id ) {
case 'edit':
if ( !context_menu_array[i].disabled && context_menu_array[i].visible ) {
ProgressBar.showOverlay();
this.onEditClick();
return;
}
break;
}
}
for ( var i = 0; i < len; i++ ) {
if ( need_break ) {
break;
}
var id = context_menu_array[i].id;
switch ( id ) {
case 'view':
need_break = true;
if ( !context_menu_array[i].disabled && context_menu_array[i].visible ) {
ProgressBar.showOverlay();
this.onViewClick();
return;
}
break;
}
}
for ( var i = 0; i < len; i++ ) {
var id = context_menu_array[i].id;
switch ( id ) {
case 'add':
if ( !context_menu_array[i].disabled && context_menu_array[i].visible ) {
this.onAddClick();
return;
}
break;
}
}
}
onPaging() {
this.search( true, 'next' );
}
onPaging2( e, action, page_number ) {
this.search( true, action, page_number );
}
//Bind column click event to change sort type and save columns to t_grid_header_array to use to set column style (asc or desc)
bindGridColumnEvents() {
var display_columns = this.grid.getColumnModel();
if ( !display_columns ) {
return;
}
var len = display_columns.length;
this.t_grid_header_array = [];
for ( var i = 0; i < len; i++ ) {
var column_info = display_columns[i];
var column_header = $( $( this.el ).find( '#gbox_' + this.ui_id + '_grid' ).find( 'div #jqgh_' + this.ui_id + '_grid_' + column_info.name ) );
this.t_grid_header_array.push( column_header.TGridHeader() );
if ( this.search_panel ) {
column_header.on( 'click', onColumnHeaderClick );
}
}
var $this = this;
function onColumnHeaderClick( e ) {
var field = $( this ).attr( 'id' );
field = field.substring( 10 + $this.ui_id.length + 1, field.length );
if ( field === 'cb' ) { //first column, check box column.
return;
}
e.preventDefault(); //can't be cancelled before cb is detected as we need the default event in that case.
if ( !$this.sorting_rows ) {
$this.sorting_rows = true;
TTPromise.add( 'init', 'init' );
TTPromise.wait( null, null, function() {
$this.sorting_rows = false; //prevent doubling up events ( which loops forever )
} );
if ( e.metaKey || e.ctrlKey ) {
$this.buildSortCondition( false, field );
} else {
$this.buildSortCondition( true, field );
}
if ( $this.sub_view_mode ) {
$this.search();
$this.setGridHeaderStyle();
} else {
if ( $this.sort_by_selector ) {
$this.sort_by_selector.setValue( $this.buildSortBySelectColumns() );
}
$this.onSearch();
}
} else {
Debug.Text( 'Skipping column sort call ', '', 'BaseViewController', 'onColumnHeaderClick', 10 );
}
}
}
getValidSearchFilter() {
var validFilterData = {};
for ( var key in this.filter_data ) {
// Error: Unable to get property 'value' of undefined or null reference in /interface/html5/views/BaseViewController.js?v=8.0.6-20150417-143734 line 4727
if ( Global.isSet( this.filter_data[key] ) && Global.isSet( this.filter_data[key].value ) && this.filter_data[key].value !== '' ) {
validFilterData[key] = this.filter_data[key];
}
}
return validFilterData;
}
getSearchPanelDisplayColumns() {
var display_columns = [];
var select_items = this.column_selector.getSelectItems();
if ( select_items && select_items.length > 0 ) {
$.each( select_items, function( index, content ) {
display_columns.push( content.value );
} );
}
if ( !display_columns || display_columns.length == 0 ) {
display_columns = this.default_display_columns;
}
return display_columns;
}
getSearchPanelSortFilter() {
var sort_filter = [];
if ( this.sort_by_selector ) {
var select_items = this.sort_by_selector.getValue( true );
if ( select_items && select_items.length > 0 ) {
$.each( select_items, function( index, content ) {
var sort = {};
sort[content.value] = content.sort;
sort_filter.push( sort );
} );
}
}
return sort_filter;
}
getSearchPanelFilter( getFromTabIndex, save_temp_filter ) {
if ( !this.search_panel ) {
return;
}
if ( Global.isSet( getFromTabIndex ) ) {
var search_tab_select_index = getFromTabIndex;
} else {
search_tab_select_index = this.search_panel.getSelectTabIndex();
}
// var basic_fields_len = this.search_fields.length;
var target_ui_dic = null;
if ( search_tab_select_index === 0 ) {
this.filter_data = [];
target_ui_dic = this.basic_search_field_ui_dic;
} else if ( search_tab_select_index === 1 && this.search_panel.isAdvTabVisible() ) {
this.filter_data = [];
target_ui_dic = this.adv_search_field_ui_dic;
} else {
return;
}
var $this = this;
$.each( target_ui_dic, function( key, content ) {
$this.filter_data[key] = { field: key, id: '', value: target_ui_dic[key].getValue( true ) };
if ( $this.temp_basic_filter_data ) {
$this.temp_basic_filter_data[key] = $this.filter_data[key];
}
if ( $this.temp_adv_filter_data ) {
$this.temp_adv_filter_data[key] = $this.filter_data[key];
}
} );
if ( save_temp_filter ) {
if ( search_tab_select_index === 0 ) {
$this.temp_basic_filter_data = Global.clone( $this.filter_data );
} else if ( search_tab_select_index === 1 ) {
$this.temp_adv_filter_data = Global.clone( $this.filter_data );
}
}
}
//Set value to field UI in search tab
setSearchPanelFilter( autoChangeTab, tab_index ) {
this.clearSearchPanel();
if ( !Global.isSet( autoChangeTab ) ) {
autoChangeTab = false;
}
var filter = this.filter_data;
if ( Global.isSet( tab_index ) ) {
if ( tab_index === 0 && this.temp_basic_filter_data ) {
filter = this.temp_basic_filter_data;
} else if ( tab_index === 1 && this.temp_adv_filter_data ) {
filter = this.temp_adv_filter_data;
}
}
if ( !Global.isSet( filter ) || !this.search_fields ) {
return;
}
var basic_fields_len = this.search_fields.length;
for ( var i = 0; i < basic_fields_len; i++ ) {
var field = this.search_fields[i];
var field_name = field.get( 'field' );
var search_input = this.basic_search_field_ui_dic[field_name];
var search_input_1 = this.adv_search_field_ui_dic[field_name];
if ( Global.isSet( filter[field_name] ) ) {
if ( Global.isSet( search_input ) ) {
if ( $.type( filter[field_name] ) === 'string' || $.type( filter[field_name] ) === 'number' ) {
search_input.setValue( filter[field_name] );
} else {
if ( filter[field_name].hasOwnProperty( 'value' ) ) { // when set default filter don't have 'value' in it, For example Invoice edit view
search_input.setValue( filter[field_name].value );
} else {
search_input.setValue( filter[field_name] );
}
}
} else if ( autoChangeTab && !this.saving_layout_in_layout_tab ) {
if ( this.search_panel.getSelectTabIndex() !== 1 ) {
this.search_panel.setSelectTabIndex( 1, false );
}
}
if ( Global.isSet( search_input_1 ) ) {
if ( $.type( filter[field_name] ) === 'string' || $.type( filter[field_name] ) === 'number' ) {
search_input_1.setValue( filter[field_name] );
} else {
if ( filter[field_name].hasOwnProperty( 'value' ) ) { // when set default filter don't have 'value' in it, For example Invoice edit view
search_input_1.setValue( filter[field_name].value );
} else {
search_input_1.setValue( filter[field_name] );
}
}
// search_input_1.setValue( filter[field_name].value );
}
}
}
this.getSearchPanelFilter(); //Make sure filter only has fields on current display ab
this.search_panel.setSearchFlag( this.getValidSearchFilter() ); // Add ! to tab which has search condition in it
this.onSetSearchFilterFinished();
}
//Set Grid header style for asc or desc
setGridHeaderStyle() {
for ( var i = 0; i < this.t_grid_header_array.length; i++ ) {
var t_grid_header = this.t_grid_header_array[i];
var field = t_grid_header.attr( 'id' );
if ( typeof field === 'string' || field instanceof String ) {
field = field.substring( 10 + this.ui_id.length + 1, field.length );
t_grid_header.cleanSortStyle();
if ( this.select_layout.data.filter_sort ) {
var sort_array_len = this.select_layout.data.filter_sort.length;
for ( var j = 0; j < sort_array_len; j++ ) {
var sort_item = this.select_layout.data.filter_sort[j];
var sortField = Global.getFirstKeyFromObject( sort_item );
if ( sortField === field ) {
if ( sort_array_len > 1 ) {
t_grid_header.setSortStyle( sort_item[sortField], j + 1 );
} else {
t_grid_header.setSortStyle( sort_item[sortField], 0 );
}
}
}
}
}
}
}
buildSortCondition( reset, field ) {
var next_sort = 'desc';
if ( reset ) {
if ( this.select_layout.data.filter_sort && this.select_layout.data.filter_sort.length > 0 ) {
var len = this.select_layout.data.filter_sort.length;
var found = false;
for ( var i = 0; i < len; i++ ) {
var sort_item = this.select_layout.data.filter_sort[i];
for ( var key in sort_item ) {
if ( !sort_item.hasOwnProperty( key ) ) {
continue;
}
if ( key === field ) {
if ( sort_item[key] === 'asc' ) {
next_sort = 'desc';
} else {
next_sort = 'asc';
}
found = true;
}
}
if ( found ) {
break;
}
}
}
this.select_layout.data.filter_sort = [
{}
];
this.select_layout.data.filter_sort[0][field] = next_sort;
} else {
if ( !this.select_layout.data.filter_sort ) {
this.select_layout.data.filter_sort = [
{}
];
this.select_layout.data.filter_sort[0][field] = 'asc';
} else {
len = this.select_layout.data.filter_sort.length;
found = false;
for ( var i = 0; i < len; i++ ) {
sort_item = this.select_layout.data.filter_sort[i];
for ( var key in sort_item ) {
if ( !sort_item.hasOwnProperty( key ) ) {
continue;
}
if ( key === field ) {
if ( sort_item[key] === 'asc' ) {
sort_item[key] = 'desc';
} else {
sort_item[key] = 'asc';
}
found = true;
}
}
if ( found ) {
break;
}
}
if ( !found ) {
this.select_layout.data.filter_sort.push( {} );
this.select_layout.data.filter_sort[len][field] = 'asc';
}
}
}
}
search( set_default_menu, page_action, page_number, callBack ) {
if ( !Global.isSet( set_default_menu ) ) {
set_default_menu = true;
}
var filter = {};
filter.filter_data = {};
filter.filter_sort = {};
filter.filter_columns = this.getFilterColumnsFromDisplayColumns();
filter.filter_items_per_page = 0; // Default to 0 to load user preference defined
if ( this.pager_data ) {
if ( LocalCacheData.paging_type === 0 ) {
if ( page_action === 'next' ) {
filter.filter_page = this.pager_data.next_page;
} else {
filter.filter_page = 1;
}
} else {
switch ( page_action ) {
case 'next':
filter.filter_page = this.pager_data.next_page;
break;
case 'last':
filter.filter_page = this.pager_data.previous_page;
break;
case 'start':
filter.filter_page = 1;
break;
case 'end':
filter.filter_page = this.pager_data.last_page_number;
break;
case 'go_to':
filter.filter_page = page_number;
break;
default:
filter.filter_page = this.pager_data.current_page;
break;
}
}
} else {
filter.filter_page = 1;
}
//Error: Uncaught TypeError: Cannot read property 'data' of null
if ( typeof this.select_layout != 'undefined' && this.sub_view_mode && this.parent_key ) {
this.select_layout.data.filter_data[this.parent_key] = this.parent_value;
}
//Error: Uncaught TypeError: Cannot read property 'data' of null
//If sub view controller set custom filters, get it
if ( typeof this.select_layout != 'undefined' && Global.isSet( this.getSubViewFilter ) ) {
this.select_layout.data.filter_data = this.getSubViewFilter( this.select_layout.data.filter_data );
}
//select_layout will not be null, it's set in setSelectLayout function
filter.filter_data = Global.convertLayoutFilterToAPIFilter( this.select_layout );
//Error: Uncaught TypeError: Cannot read property 'data' of null
if ( this.select_layout && this.select_layout.data ) {
filter.filter_sort = this.select_layout.data.filter_sort;
}
if ( TTUUID.isUUID( this.refresh_id ) ) {
filter.filter_data = {};
filter.filter_data.id = [this.refresh_id];
this.last_select_ids = filter.filter_data.id;
} else {
this.last_select_ids = [];
var ids = this.getGridSelectIdArray();
//ensure detached reference to value source or lose this.last_select_ids when grid is cleared.
for ( var i = 0; i < ids.length; i++ ) {
this.last_select_ids.push( ids[i] );
}
}
var $this = this;
this.api['get' + this.api.key_name]( filter, {
onResult: function( result ) {
var result_data = result.getResult();
var len;
if ( set_default_menu ) {
$this.setDefaultMenu( true );
}
if ( !Global.isArray( result_data ) && ( !TTUUID.isUUID( $this.refresh_id ) || $this.refresh_id == TTUUID.zero_id || $this.refresh_id == TTUUID.not_exist_id ) ) {
$this.refresh_id = null;
$this.showNoResultCover();
} else {
$this.removeNoResultCover();
if ( Global.isSet( $this.__createRowId ) ) {
result_data = $this.__createRowId( result_data );
}
if ( Global.isSet( $this.showGridOptionFields ) ) {
result_data = $this.showGridOptionFields( result_data );
}
result_data = Global.formatGridData( result_data, $this.api.key_name );
len = result_data.length;
}
if ( TTUUID.isUUID( $this.refresh_id ) ) {
$this.refresh_id = null;
var grid_source_data = $this.grid.getData();
len = grid_source_data.length;
if ( $.type( grid_source_data ) !== 'array' ) {
grid_source_data = [];
}
var found = false;
var new_record = result_data[0];
//Error: Uncaught TypeError: Cannot read property 'id' of undefined in /interface/html5/views/BaseViewController.js?v=7.4.3-20140924-084605 line 4851
if ( new_record ) {
for ( var i = 0; i < len; i++ ) {
var record = grid_source_data[i];
//Fixed === issue. The id set by jQGrid is string type.
//Commented out as we now expect the variable type of the ids to be UUID (string in javascript)
//if ( !isNaN( parseInt( record.id ) ) ) {
// record.id = parseInt( record.id );
//}
if ( record.id == new_record.id ) {
$this.grid.setRowData( new_record.id, new_record );
grid_source_data[i] = new_record;
found = true;
break;
}
}
if ( !found ) {
$this.grid.setData( grid_source_data.concat( new_record ) );
// $this.setGridColumnsWidth();
// if ( $this.sub_view_mode && Global.isSet( $this.resizeSubGrid ) ) {
// len = Global.isSet( len ) ? len : 0;
// $this.resizeSubGrid( len + 1 );
// }
$this.highLightGridRowById( new_record.id );
$this.reSelectLastSelectItems();
}
}
} else {
//Set Page data to widget, next show display info when setDefault Menu
$this.pager_data = result.getPagerData();
//CLick to show more mode no need this step
if ( LocalCacheData.paging_type !== 0 && $this.paging_widget && $this.paging_widget_2 ) {
$this.paging_widget.setPagerData( $this.pager_data );
$this.paging_widget_2.setPagerData( $this.pager_data );
}
if ( LocalCacheData.paging_type === 0 && page_action === 'next' ) {
var current_data = $this.grid.getData();
result_data = current_data.concat( result_data );
}
// Process result_data if necessary, this always needs override.
result_data = $this.processResultData( result_data );
if ( $this.grid ) {
$this.grid.setData( result_data ); //This calls clearGridData and reloadGrid.
//$this.setGridColumnsWidth(); //Handle in searchDone() instead.
// if ( $this.sub_view_mode && Global.isSet( $this.resizeSubGrid ) ) {
// $this.resizeSubGrid( len );
// }
$this.reSelectLastSelectItems();
}
}
$this.setGridCellBackGround(); //Set cell background for some views
ProgressBar.closeOverlay(); //Add this in initData
if ( LocalCacheData.paging_type === 0 ) {
if ( !$this.pager_data || $this.pager_data.is_last_page ) {
$this.paging_widget.css( 'display', 'none' );
} else {
$this.paging_widget.css( 'display', 'block' );
}
}
if ( callBack ) {
callBack( result );
}
// when call this from save and new result, we don't call auto open, because this will call onAddClick twice
if ( set_default_menu ) {
$this.autoOpenEditViewIfNecessary();
}
$this.searchDone();
}
} );
}
//This shouldn't be called anymore, in favor of: baseViewSubTabGridResize()
resizeSubGrid( length ) {
var height = ( length * 26 >= 200 ) ? 200 : length * 26;
if ( $( '.edit-view-tab:visible .grid-div' ).length > 1 ) {
if ( height < 100 ) {
height = 100;
}
} else {
height = ( $( '.edit-view-tab:visible' ).parent().height() - 85 );
}
this.setGridColumnsWidth();
this.setGridHeight( height );
}
setGridColumnsWidth() {
if ( this.grid ) {
this.grid.setGridColumnsWidth();
}
}
setGridHeight( height ) {
if ( this.grid ) {
this.grid.setGridHeight( height );
}
}
setGridWidth( width ) {
if ( this.grid ) {
this.grid.setGridWidth( width );
}
}
processResultData( result_data ) {
//Always needs override
return result_data;
}
searchDone() {
//the rotate icon from search panel
var $this = this;
$( '.button-rotate' ).removeClass( 'button-rotate' );
this.setTotalDisplaySpan();
this.setGridColumnsWidth();
this.setGridSize( this.ui_id, this.sub_view_mode, this.sub_view_grid_autosize, this.pager_data );
if ( this.sub_view_mode && this.grid ) {
this.grid.grid.show();
}
TTPromise.resolve( 'BaseViewController', 'onTabShow' );
TTPromise.resolve( 'init', 'init' );
}
reSelectLastSelectItems() {
var $this = this;
if ( this.last_select_ids && this.last_select_ids.length > 0 ) {
$.each( this.last_select_ids, function( index, content ) {
$this.grid.grid.setSelection( content, false );
if ( $this.grid_select_id_array ) {
$this.grid_select_id_array.push( content );
}
} );
this.last_select_ids = [];
if ( !this.edit_view ) {
this.setDefaultMenu();
}
}
}
autoOpenEditViewIfNecessary() {
//Auto open edit view. Should set in IndexController
//There are various bugs that happen when auto opening edit views during sub_view_mode from a "Jump To" action. (Master branch also and not onlu Vue)
//This is due to the fact that the view inherits the "LocalCacheData.current_doing_context_action" of the last view. Examples:
// - TimeSheet -> Add Punch -> Jump To -> Edit Employee and switching tabs would auto open a new entry instead of list view.
// - TimeSheet -> Add Punch -> Jump To -> Add Request would cause the user stuck to be stuck in the view.
if ( this.sub_view_mode && !LocalCacheData.edit_id_for_next_open_view ) {
return;
}
switch ( LocalCacheData.current_doing_context_action ) {
case 'edit':
if ( LocalCacheData.edit_id_for_next_open_view ) {
this.onEditClick( LocalCacheData.edit_id_for_next_open_view );
LocalCacheData.edit_id_for_next_open_view = null;
}
break;
case 'view':
if ( LocalCacheData.edit_id_for_next_open_view ) {
this.onViewClick( LocalCacheData.edit_id_for_next_open_view );
LocalCacheData.edit_id_for_next_open_view = null;
}
break;
case 'new':
if ( !this.edit_view ) {
this.onAddClick();
}
break;
}
this.autoOpenEditOnlyViewIfNecessary();
}
autoOpenEditOnlyViewIfNecessary() {
//Don't try to open anything if current loading a sub view
if ( this.sub_view_mode ) {
return;
}
if ( LocalCacheData.getAllURLArgs() && LocalCacheData.getAllURLArgs().sm && !LocalCacheData.current_open_edit_only_controller ) {
if ( LocalCacheData.getAllURLArgs().sm.indexOf( 'Report' ) < 0 ) {
IndexViewController.openEditView( this, LocalCacheData.getAllURLArgs().sm, LocalCacheData.getAllURLArgs().sid );
} else {
IndexViewController.openReport( this, LocalCacheData.getAllURLArgs().sm );
if ( LocalCacheData.getAllURLArgs().sid ) {
LocalCacheData.default_edit_id_for_next_open_edit_view = LocalCacheData.getAllURLArgs().sid;
}
}
}
}
setGridCellBackGround() {
//Set background color for in_use=false rows for all policy view and RecurringScheduleTemplateControlView
if ( this.grid
&&
(
this.script_name.indexOf( 'Policy' ) >= 0 ||
this.script_name === 'RecurringScheduleTemplateControlView' ||
this.script_name === 'PayCodeView' ||
this.script_name === 'RecurringHolidayView' ||
this.script_name === 'LegalEntityView' ||
this.script_name === 'RemittanceSourceAccountView' ||
this.script_name === 'PayrollRemittanceAgencyView' ||
this.script_name === 'RemittanceDestinationAccountView'
)
) {
var data = this.grid.getData();
//Error: TypeError: data is undefined in /interface/html5/framework/jquery.min.js?v=7.4.6-20141027-074127 line 2 > eval line 70
if ( !data ) {
return;
}
var len = data.length;
for ( var i = 0; i < len; i++ ) {
var item = data[i];
if ( item.is_in_use === false ) {
$( 'tr[id=\'' + item.id + '\']' ).addClass( 'policy-not-in-use' );
}
}
}
}
showGridBorders() {
var top_border = $( this.el ).find( '.grid-top-border' );
var bottom_border = $( this.el ).find( '.grid-bottom-border' );
top_border.css( 'display', 'block' );
bottom_border.css( 'display', 'block' );
}
_setGridSizeGroupheight( header_size ) {
this.grid.grid.setGridHeight( ( $( this.el ).height() - ( this.search_panel && this.search_panel.is( ':visible' ) ? this.search_panel.height() : 0 ) - 43 - header_size ) );
}
setEditViewTabSize() {
var $this = this;
var tab_bar_label = this.edit_view_tab.find( '.edit-view-tab-bar-label' );
var tab_width = this.edit_view_tab.width() - 80; // -80 is to hopefully account for the 20px padding and margin for the context-border
var nav_width = this.edit_view_tab.find( '.navigation-div' ).width();
var wrap_div = this.edit_view.find( '.tab-label-wrap' );
var total_tab_width = 0;
tab_bar_label.children().each( function() {
total_tab_width += $( this ).width();
} );
if ( total_tab_width > ( tab_width - nav_width - 25 ) ) {
tab_bar_label.width( total_tab_width + 20 );
if ( wrap_div.length === 0 ) {
var right_arrow = $( '<img class="tab-arrow tab-right-arrow" style="display: none" src="theme/default/images/right_big_arrow.png" >' );
var left_arrow = $( '<img class="tab-arrow tab-left-arrow" style="display: none" src="theme/default/images/left_big_arrow.png" >' );
wrap_div = $( '<div class="tab-label-wrap"><div class="label-wrap"></div><div class="btn-wrap"></div></div>' );
wrap_div.insertBefore( tab_bar_label );
wrap_div.width( tab_width - nav_width - 25 );
wrap_div.children().eq( 0 ).width( tab_width - nav_width - 100 );
wrap_div.children().eq( 0 ).append( tab_bar_label );
wrap_div.children().eq( 1 ).append( left_arrow );
wrap_div.children().eq( 1 ).append( right_arrow );
right_arrow.bind( 'click', function() {
wrap_div.children().eq( 0 ).scrollLeft( wrap_div.children().eq( 0 ).scrollLeft() + 500 );
setArrowStatus();
} );
left_arrow.bind( 'click', function() {
wrap_div.children().eq( 0 ).scrollLeft( wrap_div.children().eq( 0 ).scrollLeft() - 500 );
setArrowStatus();
} );
} else {
wrap_div.width( tab_width - nav_width - 25 );
wrap_div.children().eq( 0 ).width( tab_width - nav_width - 100 );
}
if ( tab_bar_label.children().eq( 0 ).is( ':visible' ) && !this.is_mass_editing ) {
this.edit_view_tab.find( '.tab-arrow' ).show();
} else {
this.edit_view_tab.find( '.tab-arrow' ).hide();
}
setArrowStatus();
} else {
tab_bar_label.width( 'auto' );
if ( wrap_div.length > 0 ) {
tab_bar_label.insertBefore( wrap_div );
wrap_div.remove();
}
}
function setArrowStatus() {
var left_arrow = $this.edit_view_tab.find( '.tab-left-arrow' );
var right_arrow = $this.edit_view_tab.find( '.tab-right-arrow' );
var label_wrap = wrap_div.children().eq( 0 );
left_arrow.removeClass( 'disable-image' );
right_arrow.removeClass( 'disable-image' );
if ( label_wrap.scrollLeft() === 0 ) {
left_arrow.addClass( 'disable-image' );
}
//Ceil and abs required as value can be off by a tiny pixel amount such as 1.2.
if ( Math.abs( label_wrap.scrollLeft() - Math.ceil( label_wrap[0].scrollWidth - label_wrap.width() ) ) < 2 ) {
right_arrow.addClass( 'disable-image' );
}
}
}
getFilterColumnsFromDisplayColumns( column_filter, enable_system_columns ) {
return this._getFilterColumnsFromDisplayColumns( column_filter, enable_system_columns );
}
/**
* super for getFilterColumnsFromDisplayColumns
* used when function is overridden by child class.
*
* @param column_filter
* @param enable_system_columns TRUE
* @returns {*}
* @private
*/
_getFilterColumnsFromDisplayColumns( column_filter, enable_system_columns ) {
if ( !column_filter ) {
column_filter = {};
}
if ( enable_system_columns == undefined || enable_system_columns == true ) {
column_filter.is_owner = true;
column_filter.id = true;
column_filter.is_child = true;
column_filter.in_use = true;
column_filter.first_name = true;
column_filter.last_name = true;
}
var display_columns = {};
if ( Global.isSet( LocalCacheData.view_layout_cache[this.script_name] ) ) {
var result = LocalCacheData.view_layout_cache[this.script_name].getResult();
if ( result != undefined && result.length > 0 ) {
display_columns = result[0].data.display_columns;
}
}
if ( this.select_layout && this.select_layout.data && this.select_layout.data.display_columns ) {
for ( var n in this.select_layout.data.display_columns ) {
display_columns[n] = this.select_layout.data.display_columns[n];
}
}
//get the default display columns if no columns have been defined.
if ( display_columns.length == undefined || ( display_columns.length == 0 && Global.isSet( this.default_display_columns ) ) ) {
display_columns = this.default_display_columns;
}
//Fixed possible exception -- Error: Unable to get property 'length' of undefined or null reference in /interface/html5/views/BaseViewController.js?v=7.4.3-20140924-090129 line 5031
if ( display_columns.length != undefined && display_columns.length > 0 ) {
var len = display_columns.length;
for ( var i = 0; i < len; i++ ) {
column_filter[display_columns[i]] = true;
}
}
return column_filter;
}
getAllLayouts( callBack ) {
var $this = this;
var current_select_layout_name;
if ( this.need_select_layout_name ) {
current_select_layout_name = this.need_select_layout_name;
this.need_select_layout_name = '';
} else {
current_select_layout_name = BaseViewController.default_layout_name;
}
//Issue #3286 - Users without permission to display "Current View" dropdown on TimeSheet still need to load select layout from user generic data
//This is to ensure the API attempts to update the current layout and not create a new one causing a validation error.
//force_get_select_layout still gets the layout data, but does not display it.
if ( !this.force_get_select_layout && ( this.sub_view_mode || !this.show_search_tab ) ) {
$this.select_layout = null;
if ( callBack ) {
callBack();
}
return;
}
// Check view layout cache.
if ( LocalCacheData.view_layout_cache[this.script_name] ) {
//Make this async way
setTimeout( function() {
onGetUserGenericDataResult( LocalCacheData.view_layout_cache[$this.script_name] );
}, 0 );
} else {
if ( !this.user_generic_data_api ) {
this.user_generic_data_api = TTAPI.APIUserGenericData;
}
this.user_generic_data_api.getUserGenericData( {
filter_data: {
script: this.script_name,
deleted: false
}
}, {
onResult: function( results ) {
onGetUserGenericDataResult( results );
}
} );
}
function onGetUserGenericDataResult( results ) {
if ( results ) {
var result_data = results.getResult();
$this.select_layout = null; //Reset select layout;
LocalCacheData.view_layout_cache[$this.script_name] = results;
if ( result_data && result_data.length > 0 ) {
result_data.sort( function( a, b ) {
return Global.compare( a, b, 'name' );
}
);
var len = result_data.length;
for ( var i = 0; i < len; i++ ) {
var layout = result_data[i];
if ( layout.name === current_select_layout_name ) {
$this.select_layout = layout;
break;
}
}
if ( !$this.select_layout ) {
$this.select_layout = result_data[0];
}
$this.search_panel.setLayoutsArray( result_data );
} else {
$this.select_layout = null;
if ( $this.search_panel ) {
$this.search_panel.setLayoutsArray( null );
}
}
if ( callBack ) {
callBack();
}
}
}
}
getAllColumns( callBack ) {
var $this = this;
this.api.getOptions( 'columns', {
onResult: function( columns_result ) {
var columns_result_data = columns_result.getResult();
$this.all_columns = Global.buildColumnArray( columns_result_data );
if ( !$this.sub_view_mode && $this.column_selector ) {
$this.column_selector.setUnselectedGridData( $this.all_columns );
$this.column_selector.setHeight( $this.all_columns.length * 32 );
}
if ( callBack ) {
callBack();
}
}
} );
}
getDefaultDisplayColumns( callBack ) {
var $this = this;
this.api.getOptions( 'default_display_columns', {
onResult: function( columns_result ) {
var columns_result_data = columns_result.getResult();
$this.default_display_columns = columns_result_data;
if ( callBack ) {
callBack();
}
}
} );
}
buildSortBySelectColumns() {
var sort_by_array = this.select_layout.data.filter_sort;
var sort_by_select_columns = [];
var sort_by_unselect_columns = this.sort_by_selector.getSourceData();
if ( sort_by_array ) {
$.each( sort_by_array, function( index, content ) {
for ( var key in content ) {
$.each( sort_by_unselect_columns, function( index1, content1 ) {
if ( content1.value === key ) {
content1.sort = content[key];
sort_by_select_columns.push( content1 );
return false;
}
} );
}
} );
}
return sort_by_select_columns;
}
buildSortSelectorUnSelectColumns( display_columns ) {
var fina_array = [];
var i = 100;
$.each( display_columns, function( index, content ) {
var new_content = $.extend( {}, content );
new_content.id = i; //Need
new_content.sort = 'asc';
fina_array.push( new_content );
i = i + 1;
} );
return fina_array;
}
buildDisplayColumns( apiDisplayColumnsArray ) {
var len = this.all_columns.length;
var len1 = apiDisplayColumnsArray.length;
var display_columns = [];
for ( var j = 0; j < len1; j++ ) {
for ( var i = 0; i < len; i++ ) {
if ( apiDisplayColumnsArray[j] === this.all_columns[i].value ) {
display_columns.push( this.all_columns[i] );
}
}
}
return display_columns;
}
buildDisplayColumnsByColumnModel( colModel ) {
if ( !colModel ) {
return;
}
var len = colModel.length;
var display_columns = [];
var id = 2000; // Makse sure the id not duplicate with all_columns, this wiil be used in acombox, set possible columns in navigation mode
for ( var i = 0; i < len; i++ ) {
var column = colModel[i];
if ( column.name === 'cb' ) {
continue;
}
display_columns.push( { label: column.label, value: column.name, id: id } );
id = id + 1;
}
return display_columns;
}
removeContentMenuByName( name ) {
// VUE NOTE: This function is for the legacy context menu, this is not for the Vue context menu, as legacy only has to delete a contextmenu from a view, Vue has menus in multiple places instead. See BaseViewController.unmountContextMenu and related functions.
if ( !LocalCacheData.current_open_primary_controller ) {
return;
}
var primary_view_id = LocalCacheData.current_open_primary_controller.viewId;
if ( !Global.isSet( name ) ) {
name = this.context_menu_name;
}
var tab = $( '#ribbon ul a' ).filter( function() {
return $( this ).attr( 'ref' ) === name;
} ).parent();
var index = $( 'li', $( '#ribbon' ) ).index( tab );
if ( index >= 0 ) {
// $( '#ribbon_view_container' ).tabs( {'remove': index} );
$( '#ribbon_view_container' ).tabs( 'refresh' );
}
}
movePermissionValidate( p_id ) {
if ( !Global.isSet( p_id ) ) {
p_id = this.permission_id;
}
if ( p_id === 'report' ) {
return true;
}
if ( this.addPermissionValidate( p_id ) && this.deletePermissionValidate( p_id ) ) {
return true;
}
return false;
}
subAuditValidate() {
if ( this.editPermissionValidate() ) {
return true;
}
return false;
}
subDocumentValidate() {
if ( ( Global.getProductEdition() >= 20 ) && PermissionManager.checkTopLevelPermission( 'Document' ) ) {
return true;
}
return false;
}
addPermissionValidate( p_id ) {
if ( !Global.isSet( p_id ) ) {
p_id = this.permission_id;
}
if ( p_id === 'report' ) {
return true;
}
if ( PermissionManager.validate( p_id, 'add' ) ) {
return true;
}
return false;
}
getRecordFromGridById( id ) {
var data = this.grid.getData();
var result = null;
/* jshint ignore:start */
//id could be string or number.
$.each( data, function( index, value ) {
if ( value.id == id ) {
result = Global.clone( value );
return false;
}
} );
/* jshint ignore:end */
return result;
}
getSelectedItems() {
var $this = this;
var selected_items = [];
if ( this.edit_view ) {
selected_items = [this.current_edit_record];
} else {
var grid_selected_id_array = this.getGridSelectIdArray();
var grid_selected_length = grid_selected_id_array.length;
selected_items = _.map( grid_selected_id_array, function( id ) {
return $this.getRecordFromGridById( id );
} );
}
return selected_items;
}
getSelectedItem() {
var selected_item = null;
if ( this.edit_view ) {
selected_item = this.current_edit_record;
} else {
var grid_selected_id_array = this.getGridSelectIdArray();
var grid_selected_length = grid_selected_id_array.length;
if ( grid_selected_length > 0 ) {
selected_item = this.getRecordFromGridById( grid_selected_id_array[0] );
}
}
if ( selected_item ) {
return Global.clone( selected_item );
} else {
return null;
}
}
deleteOwnerOrChildPermissionValidate( p_id, selected_item ) {
if ( !p_id ) {
p_id = this.permission_id;
}
if ( !selected_item ) {
selected_item = this.getSelectedItem();
}
if ( p_id === 'report' ) {
return true;
}
if (
PermissionManager.validate( p_id, 'delete' ) ||
( selected_item && selected_item.is_owner && PermissionManager.validate( p_id, 'delete_own' ) ) ||
( selected_item && selected_item.is_child && PermissionManager.validate( p_id, 'delete_child' ) ) ) {
return true;
}
return false;
}
viewOwnerOrChildPermissionValidate( p_id, selected_item ) {
if ( !p_id ) {
p_id = this.permission_id;
}
if ( p_id === 'report' ) {
return true;
}
if ( !selected_item ) {
selected_item = this.getSelectedItem();
}
if (
PermissionManager.validate( p_id, 'view' ) ||
( selected_item && selected_item.is_owner && PermissionManager.validate( p_id, 'view_own' ) ) ||
( selected_item && selected_item.is_child && PermissionManager.validate( p_id, 'view_child' ) ) ) {
return true;
}
return false;
}
editOwnerOrChildPermissionValidate( p_id, selected_item ) {
if ( !p_id ) {
p_id = this.permission_id;
}
if ( !selected_item ) {
selected_item = this.getSelectedItem();
}
if ( p_id === 'report' ) {
return true;
}
if (
PermissionManager.validate( p_id, 'edit' ) ||
( selected_item && selected_item.is_owner && PermissionManager.validate( p_id, 'edit_own' ) ) ||
( selected_item && selected_item.is_child && PermissionManager.validate( p_id, 'edit_child' ) ) ) {
return true;
}
return false;
}
ownerOrChildPermissionValidate( p_id, permission_name, selected_item ) {
var field;
if ( permission_name.indexOf( 'child' ) > -1 ) {
field = 'is_child';
} else {
field = 'is_owner';
}
//
// if ( PermissionManager.validate( p_id, permission_name ) &&
// (!selected_item ||
// ( selected_item && (selected_item[field] || (!selected_item.id && !selected_item.hasOwnProperty( field )) ) ) ) ) {
// return true;
// }
if ( PermissionManager.validate( p_id, permission_name ) ) {
return true;
}
return false;
}
editChildPermissionValidate( p_id, selected_item ) {
if ( !Global.isSet( p_id ) ) {
p_id = this.permission_id;
}
if ( !Global.isSet( selected_item ) ) {
selected_item = this.getSelectedItem();
}
if ( p_id === 'report' ) {
return true;
}
if ( !PermissionManager.validate( p_id, 'enabled' ) ) {
return false;
}
if ( PermissionManager.validate( p_id, 'edit' ) ||
this.ownerOrChildPermissionValidate( p_id, 'edit_child', selected_item ) ) {
return true;
}
return false;
}
editPermissionValidate( p_id, selected_item ) {
if ( !Global.isSet( p_id ) ) {
p_id = this.permission_id;
}
if ( !Global.isSet( selected_item ) ) {
selected_item = this.getSelectedItem();
}
if ( p_id === 'report' ) {
return true;
}
if ( PermissionManager.validate( p_id, 'edit' ) || this.ownerOrChildPermissionValidate( p_id, 'edit_child', selected_item ) || this.ownerOrChildPermissionValidate( p_id, 'edit_own', selected_item ) ) {
return true;
}
return false;
}
copyPermissionValidate( p_id, selected_item ) {
if ( !Global.isSet( p_id ) ) {
p_id = this.permission_id;
}
if ( !Global.isSet( selected_item ) ) {
selected_item = this.getSelectedItem();
}
if ( p_id === 'report' ) {
return true;
}
if ( this.viewPermissionValidate( p_id, selected_item ) && this.addPermissionValidate( p_id, selected_item ) ) {
return true;
}
return false;
}
copyAsNewPermissionValidate( p_id, selected_item ) {
if ( !Global.isSet( p_id ) ) {
p_id = this.permission_id;
}
if ( !Global.isSet( selected_item ) ) {
selected_item = this.getSelectedItem();
}
if ( p_id === 'report' ) {
return true;
}
if ( this.viewPermissionValidate( p_id, selected_item ) && this.addPermissionValidate( p_id, selected_item ) ) {
return true;
}
return false;
}
viewPermissionValidate( p_id, selected_item ) {
if ( !Global.isSet( p_id ) ) {
p_id = this.permission_id;
}
if ( !Global.isSet( selected_item ) ) {
selected_item = this.getSelectedItem();
}
if ( p_id === 'report' ) {
return true;
}
if ( PermissionManager.validate( p_id, 'view' ) || this.ownerOrChildPermissionValidate( p_id, 'view_child', selected_item ) || this.ownerOrChildPermissionValidate( p_id, 'view_own', selected_item ) ) {
return true;
}
return false;
}
deletePermissionValidate( p_id, selected_item ) {
if ( !Global.isSet( p_id ) ) {
p_id = this.permission_id;
}
if ( !Global.isSet( selected_item ) ) {
selected_item = this.getSelectedItem();
}
if ( p_id === 'report' ) {
return true;
}
if ( PermissionManager.validate( p_id, 'delete' ) || this.ownerOrChildPermissionValidate( p_id, 'delete_child', selected_item ) || this.ownerOrChildPermissionValidate( p_id, 'delete_own', selected_item ) ) {
return true;
}
return false;
}
saveValidate( context_btn, p_id ) {
if ( ( !this.current_edit_record || !this.current_edit_record.id ) && !this.is_mass_editing ) {
if ( !this.addPermissionValidate( p_id ) ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
} else if ( ( ( !this.current_edit_record || !this.current_edit_record.id ) && this.is_mass_editing ) || this.current_edit_record.id ) {
if ( !this.editPermissionValidate( p_id ) ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
}
}
saveAndCopyValidate( context_btn, p_id ) {
if ( ( !this.current_edit_record || !this.current_edit_record.id ) && !this.is_mass_editing ) {
if ( !this.addPermissionValidate( p_id ) ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
} else if ( ( ( !this.current_edit_record || !this.current_edit_record.id ) && this.is_mass_editing ) || this.current_edit_record.id ) {
if ( !this.editPermissionValidate( p_id ) || !this.addPermissionValidate( p_id ) ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
}
if ( this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
}
saveAndContinueValidate( context_btn, p_id ) {
if ( ( !this.current_edit_record || !this.current_edit_record.id ) && !this.is_mass_editing ) {
if ( !this.addPermissionValidate( p_id ) || !this.editPermissionValidate( p_id ) ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
} else if ( ( ( !this.current_edit_record || !this.current_edit_record.id ) && this.is_mass_editing ) || this.current_edit_record.id ) {
if ( !this.editPermissionValidate( p_id ) ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
}
if ( this.showSaveAndContinueOnEditOnly() == false ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
}
showSaveAndContinueOnEditOnly() {
//By default, views marked as edit_only_mode do not show save and continue.
//However, in certain cases we do want to show it, such as when clicking "Hire Applicant" on JobApplication view
if ( this.edit_only_mode == true && ( this.parent_view_controller && this.viewId === 'Employee' && this.parent_view_controller.viewId === 'JobApplication' ) == false ) {
return false;
}
return true;
}
saveAndNewValidate( context_btn, p_id ) {
if ( ( !this.current_edit_record || !this.current_edit_record.id ) && !this.is_mass_editing ) {
if ( !this.addPermissionValidate( p_id ) ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
} else if ( ( !Global.isSet( this.current_edit_record.id ) && this.is_mass_editing ) || Global.isSet( this.current_edit_record.id ) ) {
if ( !this.editPermissionValidate( p_id ) || !this.addPermissionValidate( p_id ) ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
}
if ( this.edit_only_mode ) {
ContextMenuManager.hideMenuItem( this.determineContextMenuMountAttributes().id, context_btn.id, false )
}
}
setSubLogViewFilter() {
// #2761 Refactor of setSubLogViewController and setSubViewFilterFunction into setSubLogViewFilter
// This refactor is because the key value attributes are linked with the filter.
// In general, it was found that either the key value are set, or the filters, but not both. So makes sense to be in the same function. Not confirmed that this is the case in all views, so its not been made into an 'either or' function.
if ( !this.sub_log_view_controller ) {
return false;
}
// Option #1: filter on single criteria (default)
this.sub_log_view_controller.parent_key = 'object_id';
this.sub_log_view_controller.parent_value = this.uniformVariable( this.current_edit_record ).id;
this.sub_log_view_controller.table_name_key = this.table_name_key;
// Option #2: filter on multiple criteria.
// #2761: Filter function appears to only work if parent_key, value and table are null or not set.
// Filter structure works similar to pseudo code: WHERE ( table_name = 'punch' AND object_id = '$punch_id') OR ( table_name = 'punch_control' AND object_id = '$punch_control_id' )
// key, value, table lines can just be ommitted, as default state is null. Included here for emphasis in example.
// this.sub_log_view_controller.parent_key = null;
// this.sub_log_view_controller.parent_value = null;
// this.sub_log_view_controller.table_name_key = null;
// this.sub_log_view_controller.getSubViewFilter = function ( filter ) {
// filter['table_name_object_id'] = {
// 'punch': [this.parent_edit_record.id],
// 'punch_control': [this.parent_edit_record.punch_control_id]
// };
//
// return filter;
// };
return true;
}
initSubLogView( tab_id ) {
var $this = this;
if ( !this.current_edit_record.id || this.current_edit_record.id == TTUUID.zero_id ) {
TTPromise.resolve( 'BaseViewController', 'onTabShow' ); //Since search() isn't called in this case, and we just display the "Please Save This Record ..." message, resolve the promise.
return;
}
if ( this.sub_log_view_controller ) {
// If the Audit tab has already been opened before in this edit view.
this.sub_log_view_controller.buildContextMenu( true );
this.sub_log_view_controller.setDefaultMenu();
this.sub_log_view_controller.parent_edit_record = this.current_edit_record;
this.setSubLogViewFilter(); // triggers the setting of the filter function for views that need it.
// $this.sub_log_view_controller.parent_key = 'object_id';
// $this.sub_log_view_controller.parent_value = $this.current_edit_record.id;
// $this.sub_log_view_controller.table_name_key = $this.table_name_key;
this.sub_log_view_controller.search();
} else {
// If the Audit tab has NOT yet been opened before in this edit view.
Global.loadScript( 'views/core/log/LogViewController.js', function() {
if ( !$this.edit_view_tab ) {
return;
}
var tab = $this.edit_view_tab.find( '#' + tab_id );
var firstColumn = tab.find( '.first-column-sub-view' );
TTPromise.add( 'initSubAudit', 'init' );
TTPromise.wait( 'initSubAudit', 'init', function() {
firstColumn.css( 'opacity', '1' );
} );
firstColumn.css( 'opacity', '0' ); //Hide the grid while its loading/sizing.
Global.trackView( 'Sub' + 'Log' + 'View', LocalCacheData.current_doing_context_action );
LogViewController.loadSubView( firstColumn, beforeLoadView, afterLoadView );
} );
}
function beforeLoadView() {
}
function afterLoadView( subViewController ) {
$this.sub_log_view_controller = subViewController;
$this.sub_log_view_controller.parent_view_controller = $this;
$this.sub_log_view_controller.parent_edit_record = $this.current_edit_record;
$this.setSubLogViewFilter(); // triggers the setting of the filter function for views that need it.
// $this.sub_log_view_controller.parent_key = 'object_id';
// $this.sub_log_view_controller.parent_value = $this.current_edit_record.id;
// $this.sub_log_view_controller.table_name_key = $this.table_name_key;
$this.sub_log_view_controller.postInit = function() {
this.initData();
};
}
}
showNoResultCover( show_new_btn ) {
if ( !show_new_btn ) {
show_new_btn = this.ifContextButtonExist( 'add' );
}
this.removeNoResultCover();
this.no_result_box = Global.loadWidgetByName( WidgetNamesDic.NO_RESULT_BOX );
this.no_result_box.NoResultBox( { related_view_controller: this, is_new: show_new_btn } );
this.no_result_box.attr( 'id', this.ui_id + '_no_result_box' );
var grid_div = $( this.el ).find( '.grid-div' );
grid_div.append( this.no_result_box );
this.initRightClickMenu( RightClickMenuType.NORESULTBOX );
}
removeNoResultCover() {
if ( this.no_result_box && this.no_result_box.length > 0 ) {
this.no_result_box.remove();
}
this.no_result_box = null;
}
cleanWhenUnloadView( callBack ) {
this.unmountContextMenu(); // This is just in case, contextmenu should already be unmounted in IndexController.removeCurrentView
this.removeContentMenuByName();
if ( Global.isSet( callBack ) ) {
callBack();
}
}
gridScrollTop() {
if ( this.viewId === 'TimeSheet' || this.viewId === 'Schedule' ) {
return;
}
if ( !this.grid ) {
return;
}
this.grid.grid.parent().parent().scrollTop( 0 );
}
gridScrollDown() {
if ( this.viewId === 'TimeSheet' || this.viewId === 'Schedule' ) {
return;
}
if ( !this.grid ) {
return;
}
this.grid.grid.parent().parent().scrollTop( 10000 );
}
selectAll() {
if ( this.viewId === 'TimeSheet' || this.viewId === 'Schedule' ) {
return;
}
if ( !this.grid ) {
return;
}
this.grid.grid.resetSelection();
var source_data = this.grid.getData();
var len = source_data.length;
for ( var i = 0; i < len; i++ ) {
var item = source_data[i];
if ( Global.isSet( item.id ) ) {
this.grid.grid.setSelection( item.id, false );
} else {
this.grid.grid.setSelection( i + 1, false );
}
}
this.grid.grid.parent().parent().parent().find( '.cbox-header' ).prop( 'checked', true );
this.setDefaultMenu();
}
detachElement( key ) {
//Error: Uncaught TypeError: Cannot read property 'detach' of undefined in interface/html5/views/BaseViewController.js?v=9.0.0-20150824-110300 line 6441
if ( !this.edit_view_form_item_dic || !this.edit_view_form_item_dic[key] ) {
return;
}
var place_holder = $( '<p style="display: none">' );
place_holder.addClass( '.edit-view:visible place_holder_' + key );
place_holder.insertBefore( this.edit_view_form_item_dic[key] );
this.edit_view_form_item_dic[key].detach();
}
attachElement( key ) {
//Error: Uncaught TypeError: Cannot read property 'insertBefore' of undefined in interface/html5/views/BaseViewController.js?v=9.0.0-20150822-210544 line 6439
if ( !this.edit_view_form_item_dic || !this.edit_view_form_item_dic[key] ) {
return;
}
//var place_holder = $( '.edit-view:visible .edit-view-tab:visible .place_holder_' + key);
var place_holder = $( '.edit-view:visible .place_holder_' + key );
this.edit_view_form_item_dic[key].insertBefore( place_holder );
place_holder.remove();
}
getBalanceHandler( result, last_date_stamp ) {
var $this = this;
var available_balance_value, current_time_value, remaining_balance_value, summary_available_value;
//Error: TypeError: this.edit_view_ui_dic.available_balance is undefined in /interface/html5/framework/jquery.min.js?v=8.0.0-20141117-091433 line 2 > eval line 6570
if ( !$this.edit_view_ui_dic || !$this.edit_view_ui_dic['available_balance'] ) {
return;
}
if ( Global.isObject( result ) ) {
var result_data = result.getResult();
if ( !result_data ) {
$this.detachElement( 'available_balance' );
return;
}
} else {
$this.detachElement( 'available_balance' );
return;
}
$this.attachElement( 'available_balance' );
available_balance_value = Global.getTimeUnit( result_data.available_balance );
current_time_value = Global.getTimeUnit( result_data.current_time );
remaining_balance_value = Global.getTimeUnit( result_data.remaining_balance );
summary_available_value = Global.getTimeUnit( result_data.projected_remaining_balance );
if ( result_data.hasOwnProperty( 'remaining_dollar_balance' ) ) {
available_balance_value = available_balance_value + ' / ' + LocalCacheData.getCurrentCurrencySymbol() + result_data.available_dollar_balance;
current_time_value = current_time_value + ' / ' + LocalCacheData.getCurrentCurrencySymbol() + result_data.current_dollar_amount;
remaining_balance_value = remaining_balance_value + ' / ' + LocalCacheData.getCurrentCurrencySymbol() + result_data.remaining_dollar_balance;
summary_available_value = summary_available_value + ' / ' + LocalCacheData.getCurrentCurrencySymbol() + result_data.remaining_dollar_balance;
}
$this.edit_view_ui_dic['available_balance'].setValue( summary_available_value );
//If available balance is negative, change font color to red so its more noticable.
if ( result_data.projected_remaining_balance < 0 ) {
$this.edit_view_ui_dic['available_balance'].css( 'color', 'red' ); //Font color to red.
} else {
$this.edit_view_ui_dic['available_balance'].css( 'color', 'black' );
}
if ( $this.available_balance_info ) {
$this.available_balance_info.qtip(
{
show: {
event: 'click',
delay: 10,
effect: true
},
hide: {
event: ['unfocus click'],
},
style: {
//classes: 'cream',
width: 340 //Dynamically changing the width causes display bugs when switching between Absence Policies and thereby widths.
},
content: '<div style="width:100%;">' +
'<div style="width:100%; clear: both;"><span style="float:left;">' + $.i18n._( 'Available Balance' ) + ': </span><span style="float:right;">' + available_balance_value + '</span></div>' +
'<div style="width:100%; clear: both;"><span style="float:left;">' + $.i18n._( 'Current Time' ) + ': </span><span style="float:right;">' + current_time_value + '</span></div>' +
'<div style="width:100%; clear: both;"><span style="float:left;">' + $.i18n._( 'Remaining Balance' ) + ': </span><span style="float:right;">' + remaining_balance_value + '</span></div>' +
'<div style="width:100%; height: 20px; clear: both;"></div>' +
'<div style="width:100%; clear: both;"><span style="float:left;">' + $.i18n._( 'Projected Balance by' ) + ' ' + last_date_stamp + ': </span><span style="float:right;">' + Global.getTimeUnit( result_data.projected_balance ) + '</span></div>' +
'<div style="width:100%; clear: both;"><span style="float:left;">' + $.i18n._( 'Projected Remaining Balance' ) + ':</span><span style="float:right;">' + Global.getTimeUnit( result_data.projected_remaining_balance ) + '</span></div>' +
'</div>'
} );
}
}
onExportClick( method ) {
ProgressBar.showOverlay();
if ( method == undefined ) {
method = this.api['export' + this.api.key_name];
}
//Debug.Text('Exporting Grid To CSV: '+method, 'BaseViewController.js', 'BaseViewController', 'onExportClick', 10);
var args = {};
args.filter_columns = this._getFilterColumnsFromDisplayColumns( null, false );
args.filter_data = Global.convertLayoutFilterToAPIFilter( this.select_layout );
if ( Global.isSet( this.sort_by_selector ) ) {
args.filter_sort = this.getSearchPanelSortFilter();
}
var post_data = { 0: 'csv', 1: args, 2: true };
Global.APIFileDownload( this.api.className, method, post_data );
}
highLightGridRowById( id ) {
if ( this.grid && this.grid.grid ) {
this.grid.grid.find( 'tr#' + id ).addClass( 'flashBackground' );
this.gridScrollDown();
}
}
setConversionRateExampleText( conversion_rate, iso_code, currency_id ) {
var data = {};
data.filter_data = Global.convertLayoutFilterToAPIFilter( this.select_layout );
var api = TTAPI.APICurrency;
var my_currencies = api.getCurrency( data, { async: false } ).getResult();
var base_currency_iso_code = '';
if ( this.edit_view_ui_dic.round_decimal_places ) {
var decimal_places = this.edit_view_ui_dic.round_decimal_places.getValue();
}
for ( var i = 0; i < my_currencies.length; i++ ) {
if ( my_currencies[i].is_base ) {
base_currency_iso_code = my_currencies[i].iso_code;
}
if ( currency_id && !iso_code && my_currencies[i].id == currency_id ) {
iso_code = my_currencies[i].iso_code;
if ( !decimal_places ) {
decimal_places = my_currencies[i].round_decimal_places;
}
}
}
//need different id on the subview for rate.
if ( iso_code != base_currency_iso_code ) {
if ( this.sub_view_mode ) {
$( '#rate_conversion_rate_clarification_box' ).html( '&nbsp;&nbsp;1.00 ' + base_currency_iso_code + ' = ' + Global.removeTrailingZeros( conversion_rate, decimal_places ) + ' ' + iso_code );
} else {
$( '#conversion_rate_clarification_box' ).html( '&nbsp;&nbsp;1.00 ' + base_currency_iso_code + ' = ' + Global.removeTrailingZeros( conversion_rate, decimal_places ) + ' ' + iso_code );
}
} else {
$( '#conversion_rate_clarification_box' ).hide();
}
}
/**
* gets default coordinates object for maps.
*/
startMapCoordinates() {
var lat = 39.50;
var lng = -98.35;
if ( LocalCacheData.getCurrentCompany().latitude != 0 && LocalCacheData.getCurrentCompany().longitude != 0 ) {
lat = LocalCacheData.getCurrentCompany().latitude;
lng = LocalCacheData.getCurrentCompany().longitude;
Debug.Text( 'Using company coordinates.', 'BaseViewController.js', 'BaseViewController', 'startMapCoordinates', 10 );
} else if ( LocalCacheData.getLoginUser().latitude != 0 && LocalCacheData.getLoginUser().longitude != 0 ) {
lat = LocalCacheData.getLoginUser().latitude;
lng = LocalCacheData.getLoginUser().longitude;
Debug.Text( 'Using user coordinates.', 'BaseViewController.js', 'BaseViewController', 'startMapCoordinates', 10 );
} else {
var company_api = TTAPI.APICompany;
var country_arr = company_api.getOptions( 'country', { async: false } ).getResult();
var province_arr = company_api.getOptions( 'province', LocalCacheData.getCurrentCompany().country, { async: false } ).getResult();
if ( APIGlobal.pre_login_data.map_geocode_url && province_arr && country_arr && province_arr[LocalCacheData.getCurrentCompany().province] && country_arr[LocalCacheData.getCurrentCompany().country] ) {
var query = LocalCacheData.getCurrentCompany().city + ' ' + province_arr[LocalCacheData.getCurrentCompany().province] + ', ' + country_arr[LocalCacheData.getCurrentCompany().country];
var url = APIGlobal.pre_login_data.map_geocode_url + '?q=' + query + '&format=json&tt_key=' + APIGlobal.pre_login_data.registration_key;
var result = jQuery.ajax( { url: url, async: false } );
Debug.Arr( 'Geocoding address: ' + query, result, 'BaseViewController.js', 'BaseViewController', 'startMapCoordinates', 10 );
}
if ( result && result.responseJSON && result.responseJSON[0] && result.responseJSON[0].lat && result.responseJSON[0].lon ) {
lat = result.responseJSON[0].lat;
lng = result.responseJSON[0].lon;
Debug.Text( 'Using company address coordinates.', 'BaseViewController.js', 'BaseViewController', 'startMapCoordinates', 10 );
} else {
Debug.Text( 'Using default coordinates.', 'BaseViewController.js', 'BaseViewController', 'startMapCoordinates', 10 );
}
}
Debug.Text( 'Coordinates (lat,long): ' + lat + ',' + lng, 'BaseViewController.js', 'BaseViewController', 'startMapCoordinates', 10 );
return new L.LatLng( lat, lng );
}
initSubDocumentView() {
var $this = this;
if ( !this.current_edit_record.id ) {
TTPromise.resolve( 'BaseViewController', 'onTabShow' ); //Since search() isn't called in this case, and we just display the "Please Save This Record ..." message, resolve the promise.
return;
}
if ( this.sub_document_view_controller ) {
this.sub_document_view_controller.buildContextMenu( true );
this.sub_document_view_controller.setDefaultMenu();
$this.sub_document_view_controller.parent_value = $this.current_edit_record.id;
$this.sub_document_view_controller.parent_edit_record = $this.current_edit_record;
$this.sub_document_view_controller.initData();
return;
}
Global.loadScript( 'views/document/DocumentViewController.js', function() {
if ( !$this.edit_view_tab ) {
return;
}
var tab_contact_info = $this.edit_view_tab.find( '#tab_attachment' );
var firstColumn = tab_contact_info.find( '.first-column-sub-view' );
TTPromise.add( 'initSubDocumentView', 'init' );
TTPromise.wait( 'initSubDocumentView', 'init', function() {
firstColumn.css( 'opacity', '1' );
} );
firstColumn.css( 'opacity', '0' ); //Hide the grid while its loading/sizing.
Global.trackView( 'SubDocumentView' );
DocumentViewController.loadSubView( firstColumn, beforeLoadView, afterLoadView );
} );
function beforeLoadView() {
}
function afterLoadView( subViewController ) {
$this.sub_document_view_controller = subViewController;
$this.sub_document_view_controller.parent_key = 'object_id';
$this.sub_document_view_controller.parent_value = $this.current_edit_record.id;
$this.sub_document_view_controller.document_object_type_id = $this.document_object_type_id;
$this.sub_document_view_controller.parent_edit_record = $this.current_edit_record;
$this.sub_document_view_controller.parent_view_controller = $this;
$this.sub_document_view_controller.initData();
}
}
onDeleteImage( callback ) {
var $this = this;
this.api.deleteImage( this.current_edit_record.id, {
onResult: function( result ) {
$this.onEditClick( $this.current_edit_record.id, true );
}
} );
}
onTreeGridNavigationRowSelect( id ) {
if ( !id ) {
return;
}
//don't close on collapse of tree mode element
if ( LocalCacheData.currently_collapsing_navigation_tree_element != true ) {
this.onEditClick( id );
$( '.a-dropdown-div' ).remove();
LocalCacheData.openAwesomeBox = null;
} else {
LocalCacheData.currently_collapsing_navigation_tree_element = false;
this.onEditClick( id, true );
this.setNavigation();
}
}
parserDatesRange( date ) {
var dates = date.split( " - " );
var resultArray = [];
var beginDate = Global.strToDate( dates[0] );
var endDate = Global.strToDate( dates[1] );
var nextDate = beginDate;
while ( nextDate.getTime() < endDate.getTime() ) {
resultArray.push( nextDate.format() );
nextDate = new Date( new Date( nextDate.getTime() ).setDate( nextDate.getDate() + 1 ) );
}
resultArray.push( dates[1] );
return resultArray;
}
baseViewSubTabGridResize( id ) {
var $this = this;;
if ( !id ) {
id = '.edit-view-tab-outside-sub-view';
} else if ( id.indexOf( '#' ) === -1 && id.indexOf( '.' ) != 0 ) {
id = '#' + id;
}
if ( this.grid.grid.parents( id ).length > 0 ) {
var height = Math.floor( this.getAvailableHeightForGrid( id ) );
this.grid.setup.container_selector = id;
Debug.Text( 'Special SubView ID: ' + id + ' Height: ' + height + ' Offset: ' + offset, 'TTGrid.js', 'TTGrid', 'baseViewSubTabGridResize', 10 );
} else {
var offset = this.getDefaultHeightOffset();
var height = ( this.grid.grid.parents( '.edit-view-tab' ).innerHeight() - offset );
Debug.Text( 'Normal SubView ID: ' + id + ' Height: ' + height + ' Offset: ' + offset, 'TTGrid.js', 'TTGrid', 'baseViewSubTabGridResize', 10 );
}
if ( height < 250 ) {
height = 250;
}
this.setGridHeight( height );
this.setGridWidth();
}
/**
* Sets the grid's height.
* @param ui_id
* @param sub_view_mode
* @param sub_view_grid_autosize
* @param pager_data
*/
setGridSize( ui_id, sub_view_mode, sub_view_grid_autosize, pager_data ) {
var $this = this;
if ( this.grid && this.grid.setup && this.grid.setup.setGridSize && typeof this.grid.setup.setGridSize == 'function' ) {
this.grid.setup.setGridSize();
return;
}
if ( ( !ui_id && !this.ui_id ) || !this.grid ) {
Debug.Text( 'ERROR: You must provide at least a ui_id for setGridSize()', 'TTGrid.js', 'TTGrid', 'setGridSize', 10 );
return;
}
if ( !ui_id && this.ui_id ) {
ui_id = this.ui_id;
}
if ( !sub_view_mode && this.sub_view_mode ) {
sub_view_mode = this.sub_view_mode;
}
if ( !sub_view_grid_autosize && this.sub_view_grid_autosize ) {
sub_view_grid_autosize = this.sub_view_grid_autosize;
}
//this.setGridWidth ( this.setGridColumnsWidth() );
var height = 100;
if ( sub_view_mode &&
this.grid.grid.parents( '.grid-div' ).find( '.no-result-div:visible' ).length > 0 &&
this.grid.grid.parents( '#tab_history, #tab_qualifications' ).length > 0
) {
height = 100;
} else if ( this.grid.setup.static_height ) {
height = this.grid.setup.static_height;
} else if ( this.grid.setup.verticalResize && this.grid.setup.verticalResize === true ) {
if ( sub_view_mode ) {
if ( this.grid.grid.parents( '.edit-view-tab-outside-sub-view' ).find( '.context-border' ).length > 1 || this.grid.grid.parents( '.edit-view-tab-outside-sub-view' ).find( '.ui-jqgrid-htable' ).length > 1 ) {
//This tab has multiple grids or sub views.
//Tabs like this are "Employee -> Edit Employee -> Qualifications" or Recruitment -> Job Applicant History and Qualification tab with multiple grids.
let length = this.grid.getRecordCount();
let cell_height = this.grid.grid.find( 'tr:last td:first' ).height();
if ( cell_height < 18 ) { //If cannot determine cell height, use default of 22.
cell_height = 22;
}
//Grid height is between 3 and 6 rows. Nothing too small or tall so that all grids can be viewed easily
let rows_to_show = 3;
if ( length > 6 ) {
rows_to_show = 6;
} else if ( length > 3 ) {
rows_to_show = length;
}
height = ( rows_to_show * cell_height );
} else {
//Normal single grid sub view.
if ( this.grid.grid.parents( '.edit-view-tab-outside-sub-view' ) && this.grid.grid.parents( '.edit-view-tab-outside-sub-view' ).length > 0 && this.grid.grid.parents( '.edit-view-tab-outside-sub-view' )[0] ) {
height = this.getAvailableHeightForGrid( this.grid.grid.parents( '.edit-view-tab-outside-sub-view' )[0].id );
let child_context_border = this.grid.grid.parents( '.edit-view-tab-outside-sub-view' ).find( '.context-border' );
if ( child_context_border.length !== 0 ) {
//Adjust height by margins of the context border.
height -= ( child_context_border.outerHeight( true ) - child_context_border.innerHeight() );
}
}
}
} else {
height = this.getAvailableHeightForGrid( ui_id );
}
}
//Ensure grid has a minimum height.
if ( height < 100 ) {
height = 100;
}
this.grid.grid.setGridHeight( height );
//this looks odd, but css does not have a has selector.
$( '.sub-view .bottom-div:has(.paging-2-div:visible)' ).css( 'height', '20px' );
$( '.sub-view .bottom-div:has(.paging-2-div:hidden)' ).css( 'height', 'auto' );
//this.reloadGrid(); //slows down awesomeboxes
}
getAvailableHeightForGrid( element_id, offset ) {
//The available height for the table is the view height minus the difference between top of view and bottom of table header.
if ( element_id.indexOf( '#' ) === -1 && element_id.indexOf( '.' ) != 0 ) {
element_id = '#' + element_id;
}
let table_header = $( element_id ).find( '#gbox_' + this.grid.getGridId() + ' .ui-jqgrid-labels' );
if ( table_header.length === 0 ) {
//Issue #3120 - Certain sub views have grid in a different part of the DOM.
//Need to make sure to check for that else the grid will be given an incorrect or 0 height;
table_header = $( '#gbox_' + this.grid.getGridId() + ' .ui-jqgrid-labels' );
if ( table_header.length === 0 ) {
return 100; //Default height.
}
}
let container_height = $( element_id ).children('.context-border').length !== 0 ? $( element_id ).children('.context-border').innerHeight() : $( element_id ).height();
let height = container_height - ( ( table_header.offset().top + table_header.height() ) - $( element_id ).offset().top );
//Check if view has a paging / bottom div and adjust grid height accordingly.
let bottom_div = $( element_id ).find( '.bottom-div' );
if ( bottom_div.length > 0 && bottom_div.is(":visible") ) {
height -= 50;
}
if ( Global.isHorizontalScrollBarRequired( $( '#gbox_' + this.grid.getGridId() )[0] ) ) { //pass dom element not jquery object
height -= Global.getScrollbarHeight();
}
return height;
}
getDefaultHeightOffset() {
//protect against NaNs
var offset = this.grid.grid.parents( '.ui-jqgrid-jquery-ui' ).find( '.ui-jqgrid-hbox' ).height() - 22; // 22 is default cell height. we just want the overage here.
Debug.Text( 'Initial offset: ' + offset, 'BaseViewController.js', 'BaseViewController', 'getDefaultHeightOffset', 10 );
//getting these selectors right for every grid was a lot of trial and error.
if ( this.grid.grid.parents( '.ui-jqgrid-bdiv' ).width() > this.grid.grid.parents( '.ui-jqgrid-jquery-ui' ).width() ) {
offset += 15; //scrollbar offset
Debug.Text( 'Scrollbar offset detected: 15', 'BaseViewController.js', 'BaseViewController', 'getDefaultHeightOffset', 10 );
}
if ( this.search_panel && this.search_panel.is( ':visible' ) == true ) {
offset += this.search_panel.height();
Debug.Text( 'Search panel detected: ' + this.search_panel.height(), 'BaseViewController.js', 'BaseViewController', 'getDefaultHeightOffset', 10 );
}
var total_number_div_height = ( $( '.total-number-div:visible' ).length > 0 ) ? $( '.total-number-div:visible' ).height() : 0;
if ( total_number_div_height || total_number_div_height === 0 ) {
offset += total_number_div_height;
Debug.Text( 'Total number DIV height offset detected: ' + $( '.total-number-div:visible' ).height(), 'BaseViewController.js', 'BaseViewController', 'getDefaultHeightOffset', 10 );
}
var footer_height = $( '.bottom-div' ).height() + 5;
if ( footer_height || footer_height === 0 ) {
offset += footer_height;
Debug.Text( 'Footer height offset detected: ' + footer_height, 'BaseViewController.js', 'BaseViewController', 'getDefaultHeightOffset', 10 );
}
var red_border_height = $( '.grid-top-border' ).height() * 2;
if ( red_border_height || red_border_height === 0 ) {
offset += red_border_height;
Debug.Text( 'Red border height offset detected: ' + red_border_height, 'BaseViewController.js', 'BaseViewController', 'getDefaultHeightOffset', 10 );
}
return offset;
}
fillCurrentRecord() {
// Overrides form with data from push notification and http get variables.
if ( LocalCacheData.getAutoFillData() ) {
this.current_edit_record = Object.assign( this.current_edit_record, this.filterAutoFillData( LocalCacheData.auto_fill_data ) );
LocalCacheData.setAutoFillData( null );
}
// Filter http get variables.
var filtered_auto_fill_data = this.filterAutoFillData( LocalCacheData.all_url_args );
// Remove common variables from url to prevent unintended overrides.
for ( var key in filtered_auto_fill_data ) {
if ( key === 'sid' || key === 'm' || key === 'sm' || key === 'tab' ) {
continue;
}
this.current_edit_record[key] = filtered_auto_fill_data[key];
}
}
filterAutoFillData( auto_fill_data ) {
// Auto fill variables only override data if the field exists on UI.
// Helps prevent invisible changes in current_edit_record from users sharing links with purpose to trick/exploit.
var filtered_auto_fill_data = {};
for ( var key in auto_fill_data ) {
// Ignore password fields
if ( key.includes( 'password' ) ) {
continue;
}
if ( this.edit_view_ui_dic.hasOwnProperty( key ) ) {
filtered_auto_fill_data[key] = auto_fill_data[key];
}
}
return filtered_auto_fill_data;
}
//Compare two arrays of records and return an array of records that changed.
getChangedRecords( new_data, old_data, ignored_keys ) {
let changed_data = new_data.filter( ( record ) => {
let old_record = old_data.find( ( old_item ) => old_item.id == record.id );
//If record id does not exist in old_data, it is a new record and should be marked as changed.
if ( !old_record ) {
return true;
}
//Compare each key for changed data. Loop over the keys in the current record and not old incase a new key was added that is not in the old record.
for ( let keys in record ) {
//Some views add extra data to the record which is only used locally and should not be used for comparison.
if ( ignored_keys.length > 0 && ignored_keys.includes( keys ) ) {
continue;
}
//If the value is an array check each value exists in the old record array.
if ( Array.isArray( record[keys] ) && Array.isArray( old_record[keys] ) ) {
//If the arrays are different lengths, we know they are different, and do not need to check the values.
if ( record[keys].length !== old_record[keys].length || !record[keys].every( value => old_record[keys].includes( value ) ) ) {
return true;
}
}
//Compare values of each key in the record.
else if ( record[keys] != old_record[keys] ) {
return true;
}
}
return false;
} );
return changed_data;
}
}
//Don't check the file for now. Too many issues
/* jshint ignore:end */
BaseViewController.loadView = function( view_id ) {
Global.loadViewSource( view_id, view_id + 'View.html', function( result ) {
// #VueContextMenu# Vue route change, this triggers the context menu.
// TODO: BaseViewController.loadView is overriden in many places. Also need to handle those.
// Which is better, here or in IndexController.onViewChange? here will catch all changes from hash to login to final viewcontroller. will onViewChange catch that too?
// console.log('aaaa BaseV.loadView', view_id); // comparing triggers against IndexController.
// TODO: Can we simplify this and remove the needs for props:true in router?
// Note: This behaviour/router call is also in IndexController.openReport()
// VueRouter.push('/view/'+$this.viewId);
// window.context_menus[ view_id ] = new ContextMenuManager(); // Initialize Vue ContextMenuManager here so that each view has their own unique one.
// VueRouter.push({
// name: 'view',
// params: {
// viewId: view_id
// }
// }).then(function() {
// doNext( result );
// });
doNext( result ); // Now using one global context menu, so no need for router calls. Just using the one single LegacyView for now.
} );
function doNext( result ) {
var args = {};
switch ( view_id ) {
case 'TimeSheet':
Global.loadViewSource( view_id, view_id + 'View.css' );
args = {
accumulated_time: $.i18n._( 'Accumulated Time' ),
verify: $.i18n._( 'Verify' ),
timesheet_verification: $.i18n._( 'TimeSheet Verification' )
};
break;
case 'Login':
$( 'body' ).addClass( 'login-bg' );
$( 'body' ).removeClass( 'application-bg' );
// Global.loadViewSource( view_id, view_id + 'View.css' ); // #2833 Login CSS was being loaded twice. Now only loaded in the index.php file for speed.
break;
case 'PortalJobVacancyDetail':
args = {
search_label: $.i18n._( 'Search' )
};
break;
case 'PortalJobVacancy':
args = {
search_label: $.i18n._( 'Search' ),
load_more: $.i18n._( 'Loading' ) + '...'
};
break;
case 'MyJobApplication':
case 'MyProfile':
break;
case 'Schedule':
Global.loadViewSource( view_id, view_id + 'View.css' );
break;
}
IndexViewController.instance.router.removeCurrentView();
var template = _.template( result );
Global.contentContainer().html( template( args ) );
LocalCacheData.current_open_view_id = view_id;
Global.trackView( view_id, LocalCacheData.current_doing_context_action );
}
};
BaseViewController.default_layout_name = $.i18n._( '-- Default --' );