getPermissionObject()->Check( 'payroll_remittance_agency', 'enabled' ) || !( $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'view' ) || $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'view_own' ) ) ) ) { $name = 'list_columns'; } return parent::getOptions( $name, $parent ); } /** * Get default payroll remittance agency data for creating new payroll remittance agency. * @return array */ function getPayrollRemittanceAgencyEventDefaultData() { Debug::Text( 'Getting payroll remittance agency default data...', __FILE__, __LINE__, __METHOD__, 10 ); $data = [ //FIXME: need better default data. 'status_id' => 10, 'type_id' => 10, 'reminder_user_id' => $this->getCurrentUserObject()->getId(), 'reminder_days' => 2, 'due_date_delay_days' => 0, ]; return $this->returnHandler( $data ); } /** * Get payroll remittance agency data for one or more agencies. * @param array $data filter data * @param bool $disable_paging * @return array|bool */ function getPayrollRemittanceAgencyEvent( $data = null, $disable_paging = false ) { $data = $this->initializeFilterAndPager( $data, $disable_paging ); if ( $this->getPermissionObject()->checkAuthenticationType( 700 ) == false ) { //700=HTTP Auth with username/password return $this->getPermissionObject()->AuthenticationTypeDenied(); } if ( !$this->getPermissionObject()->Check( 'payroll_remittance_agency', 'enabled' ) || !( $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'view' ) || $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'view_own' ) ) ) { //return $this->getPermissionObject()->PermissionDenied(); //Rather then permission denied, restrict to just 'list_view' columns. $data['filter_columns'] = $this->handlePermissionFilterColumns( ( isset( $data['filter_columns'] ) ) ? $data['filter_columns'] : null, Misc::trimSortPrefix( $this->getOptions( 'list_columns' ) ) ); } $blf = TTnew( 'PayrollRemittanceAgencyEventListFactory' ); /** @var PayrollRemittanceAgencyEventListFactory $blf */ $blf->getAPISearchByCompanyIdAndArrayCriteria( $this->getCurrentCompanyObject()->getId(), $data['filter_data'], $data['filter_items_per_page'], $data['filter_page'], null, $data['filter_sort'] ); Debug::Text( 'Record Count: ' . $blf->getRecordCount(), __FILE__, __LINE__, __METHOD__, 10 ); if ( $blf->getRecordCount() > 0 ) { $this->getProgressBarObject()->start( $this->getAPIMessageID(), $blf->getRecordCount() ); $this->setPagerObject( $blf ); $retarr = []; foreach ( $blf as $b_obj ) { $retarr[] = $b_obj->getObjectAsArray( $data['filter_columns'] ); $this->getProgressBarObject()->set( $this->getAPIMessageID(), $blf->getCurrentRow() ); } $this->getProgressBarObject()->stop( $this->getAPIMessageID() ); return $this->returnHandler( $retarr ); } return $this->returnHandler( true ); //No records returned. } /** * Get only the fields that are common across all records in the search criteria. Used for Mass Editing of records. * @param array $data filter data * @return array */ function getCommonPayrollRemittanceAgencyEventData( $data ) { return Misc::arrayIntersectByRow( $this->stripReturnHandler( $this->getPayrollRemittanceAgencyEvent( $data, true ) ) ); } /** * Validate payroll remittance agency data for one or more agencies. * @param array $data payroll remittance agency data * @return array */ function validatePayrollRemittanceAgencyEvent( $data ) { return $this->setPayrollRemittanceAgencyEvent( $data, true ); } /** * Set payroll remittance agency data for one or more agencies. * @param array $data payroll remittance agency * @param bool $validate_only * @param bool $ignore_warning * @return array|bool */ function setPayrollRemittanceAgencyEvent( $data, $validate_only = false, $ignore_warning = true ) { $validate_only = (bool)$validate_only; $ignore_warning = (bool)$ignore_warning; if ( !is_array( $data ) ) { return $this->returnHandler( false ); } if ( $this->getPermissionObject()->checkAuthenticationType( 700 ) == false ) { //700=HTTP Auth with username/password return $this->getPermissionObject()->AuthenticationTypeDenied(); } if ( !$this->getPermissionObject()->Check( 'payroll_remittance_agency', 'enabled' ) || !( $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'edit' ) || $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'edit_own' ) || $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'add' ) ) ) { return $this->getPermissionObject()->PermissionDenied(); } if ( $validate_only == true ) { Debug::Text( 'Validating Only!', __FILE__, __LINE__, __METHOD__, 10 ); } [ $data, $total_records ] = $this->convertToMultipleRecords( $data ); Debug::Text( 'Received data for: ' . $total_records . ' payroll remittance agencies', __FILE__, __LINE__, __METHOD__, 10 ); Debug::Arr( $data, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 ); $validator_stats = [ 'total_records' => $total_records, 'valid_records' => 0 ]; $validator = $save_result = []; $key = false; if ( is_array( $data ) && $total_records > 0 ) { $this->getProgressBarObject()->start( $this->getAPIMessageID(), $total_records ); foreach ( $data as $key => $row ) { $primary_validator = new Validator(); $lf = TTnew( 'PayrollRemittanceAgencyEventListFactory' ); /** @var PayrollRemittanceAgencyEventListFactory $lf */ $lf->StartTransaction(); if ( isset( $row['id'] ) && $row['id'] != '' ) { //Modifying existing object. $lf->getByIdAndCompanyId( $row['id'], $this->getCurrentCompanyObject()->getId() ); if ( $lf->getRecordCount() == 1 ) { //Object exists, check edit permissions if ( $validate_only == true || ( $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'edit' ) || ( $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'edit_own' ) && $this->getPermissionObject()->isOwner( $lf->getCurrent()->getCreatedBy(), $lf->getCurrent()->getID() ) === true ) ) ) { Debug::Text( 'Row Exists, getting current data for ID: ' . $row['id'], __FILE__, __LINE__, __METHOD__, 10 ); $lf = $lf->getCurrent(); $row = array_merge( $lf->getObjectAsArray(), $row ); } else { $primary_validator->isTrue( 'permission', false, TTi18n::gettext( 'Edit permission denied' ) ); } } else { //Object doesn't exist. $primary_validator->isTrue( 'id', false, TTi18n::gettext( 'Edit permission denied, record does not exist' ) ); } } else { //Adding new object, check ADD permissions. $primary_validator->isTrue( 'permission', $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'add' ), TTi18n::gettext( 'Add permission denied' ) ); //Because this class has sub-classes that depend on it, when adding a new record we need to make sure the ID is set first, //so the sub-classes can depend on it. We also need to call Save( TRUE, TRUE ) to force a lookup on isNew() $row['id'] = $lf->getNextInsertId(); } Debug::Arr( $row, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 ); $is_valid = $primary_validator->isValid(); if ( $is_valid == true ) { //Check to see if all permission checks passed before trying to save data. Debug::Text( 'Setting object data...', __FILE__, __LINE__, __METHOD__, 10 ); $lf->setObjectFromArray( $row ); $lf->Validator->setValidateOnly( $validate_only ); $is_valid = $lf->isValid( $ignore_warning ); if ( $is_valid == true ) { Debug::Text( 'Saving data...', __FILE__, __LINE__, __METHOD__, 10 ); if ( $validate_only == true ) { $save_result[$key] = true; } else { $save_result[$key] = $lf->Save( true, true ); } $validator_stats['valid_records']++; } } if ( $is_valid == false ) { Debug::Text( 'Data is Invalid...', __FILE__, __LINE__, __METHOD__, 10 ); $lf->FailTransaction(); //Just rollback this single record, continue on to the rest. $validator[$key] = $this->setValidationArray( [ $primary_validator, $lf ] ); } else if ( $validate_only == true ) { $lf->FailTransaction(); } $lf->CommitTransaction(); $this->getProgressBarObject()->set( $this->getAPIMessageID(), $key ); } $this->getProgressBarObject()->stop( $this->getAPIMessageID() ); return $this->handleRecordValidationResults( $validator, $validator_stats, $key, $save_result ); } return $this->returnHandler( false ); } /** * Delete one or more payroll remittance agencies. * @param array $data payroll remittance agency data * @return array|bool */ function deletePayrollRemittanceAgencyEvent( $data ) { if ( !is_array( $data ) ) { $data = [ $data ]; } if ( !is_array( $data ) ) { return $this->returnHandler( false ); } if ( $this->getPermissionObject()->checkAuthenticationType( 700 ) == false ) { //700=HTTP Auth with username/password return $this->getPermissionObject()->AuthenticationTypeDenied(); } if ( !$this->getPermissionObject()->Check( 'payroll_remittance_agency', 'enabled' ) || !( $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'delete' ) || $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'delete_own' ) ) ) { return $this->getPermissionObject()->PermissionDenied(); } Debug::Text( 'Received data for: ' . count( $data ) . ' payroll remittance agencies', __FILE__, __LINE__, __METHOD__, 10 ); Debug::Arr( $data, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 ); $total_records = count( $data ); $validator = $save_result = []; $key = false; $validator_stats = [ 'total_records' => $total_records, 'valid_records' => 0 ]; if ( is_array( $data ) && $total_records > 0 ) { $this->getProgressBarObject()->start( $this->getAPIMessageID(), $total_records ); foreach ( $data as $key => $id ) { $primary_validator = new Validator(); $lf = TTnew( 'PayrollRemittanceAgencyEventListFactory' ); /** @var PayrollRemittanceAgencyEventListFactory $lf */ $lf->StartTransaction(); if ( $id != '' ) { //Modifying existing object. $lf->getByIdAndCompanyId( $id, $this->getCurrentCompanyObject()->getId() ); if ( $lf->getRecordCount() == 1 ) { //Object exists, check edit permissions if ( $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'delete' ) || ( $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'delete_own' ) && $this->getPermissionObject()->isOwner( $lf->getCurrent()->getCreatedBy(), $lf->getCurrent()->getID() ) === true ) ) { Debug::Text( 'Record Exists, deleting record ID: ' . $id, __FILE__, __LINE__, __METHOD__, 10 ); $lf = $lf->getCurrent(); } else { $primary_validator->isTrue( 'permission', false, TTi18n::gettext( 'Delete permission denied' ) ); } } else { //Object doesn't exist. $primary_validator->isTrue( 'id', false, TTi18n::gettext( 'Delete permission denied, record does not exist' ) ); } } else { $primary_validator->isTrue( 'id', false, TTi18n::gettext( 'Delete permission denied, record does not exist' ) ); } //Debug::Arr($lf, 'AData: ', __FILE__, __LINE__, __METHOD__, 10); $is_valid = $primary_validator->isValid(); if ( $is_valid == true ) { //Check to see if all permission checks passed before trying to save data. Debug::Text( 'Attempting to delete record...', __FILE__, __LINE__, __METHOD__, 10 ); $lf->setDeleted( true ); $is_valid = $lf->isValid(); if ( $is_valid == true ) { Debug::Text( 'Record Deleted...', __FILE__, __LINE__, __METHOD__, 10 ); $save_result[$key] = $lf->Save(); $validator_stats['valid_records']++; } } if ( $is_valid == false ) { Debug::Text( 'Data is Invalid...', __FILE__, __LINE__, __METHOD__, 10 ); $lf->FailTransaction(); //Just rollback this single record, continue on to the rest. $validator[$key] = $this->setValidationArray( [ $primary_validator, $lf ] ); } $lf->CommitTransaction(); $this->getProgressBarObject()->set( $this->getAPIMessageID(), $key ); } $this->getProgressBarObject()->stop( $this->getAPIMessageID() ); return $this->handleRecordValidationResults( $validator, $validator_stats, $key, $save_result ); } return $this->returnHandler( false ); } /** * Copy one or more payroll remittance agencies. * @param array $data payroll remittance agency IDs * @return array */ function copyPayrollRemittanceAgencyEvent( $data ) { if ( !is_array( $data ) ) { $data = [ $data ]; } if ( !is_array( $data ) ) { return $this->returnHandler( false ); } Debug::Text( 'Received data for: ' . count( $data ) . ' Payroll remittance agencies', __FILE__, __LINE__, __METHOD__, 10 ); Debug::Arr( $data, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 ); $src_rows = $this->stripReturnHandler( $this->getPayrollRemittanceAgencyEvent( [ 'filter_data' => [ 'id' => $data ] ], true ) ); if ( is_array( $src_rows ) && count( $src_rows ) > 0 ) { Debug::Arr( $src_rows, 'SRC Rows: ', __FILE__, __LINE__, __METHOD__, 10 ); foreach ( $src_rows as $key => $row ) { unset( $src_rows[$key]['id'] ); //Clear fields that can't be copied unset( $row ); //code standards } //Debug::Arr($src_rows, 'bSRC Rows: ', __FILE__, __LINE__, __METHOD__, 10); return $this->setPayrollRemittanceAgencyEvent( $src_rows ); //Save copied rows } return $this->returnHandler( false ); } /** * Returns report data intended for the tax wizard * @param $prae_id * @param $report_id * @param null $data * @return array|bool */ function getReportData( $prae_id, $report_id, $data = null ) { if ( !$this->getPermissionObject()->Check( 'payroll_remittance_agency', 'enabled' ) || !( $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'edit' ) || $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'edit_own' ) ) ) { return $this->getPermissionObject()->PermissionDenied(); } $praelf = TTnew( 'PayrollRemittanceAgencyEventListFactory' ); /** @var PayrollRemittanceAgencyEventListFactory $praelf */ $praelf->getByIdAndCompanyId( $prae_id, $this->getCurrentCompanyObject()->getId() ); if ( $praelf->getRecordCount() > 0 ) { $prae_obj = $praelf->getCurrent(); /** @var PayrollRemittanceAgencyEventFactory $prae_obj */ $user_obj = $this->getCurrentUserObject(); $permission_obj = $this->getPermissionObject(); $report_obj = $prae_obj->getReport( $report_id, $data, $user_obj, ( ( is_object( $prae_obj->getPayrollRemittanceAgencyObject() ) && $prae_obj->getPayrollRemittanceAgencyObject()->getContactUserObject() ) ? $prae_obj->getPayrollRemittanceAgencyObject()->getContactUserObject() : null ), $permission_obj ); if ( is_object( $report_obj ) ) { $report_obj->setAPIMessageID( $this->getAPIMessageID() ); //Be sure to pass along the APIMessageId so progress bars work properly, specifically from the Tax Wizard. $output_arr = $report_obj->getOutput( $report_id ); //Copy progress bar from Report object to this API object so returnHandler() can attach any error messages or stop it when needed. if ( $this->isProgressBarStarted() == false ) { $this->setProgressBarObject( $report_obj->getProgressBarObject() ); } if ( isset( $output_arr['file_name'] ) && isset( $output_arr['mime_type'] ) && isset( $output_arr['data'] ) ) { //If using the SOAP API, return data base64 encoded so it can be decoded on the client side. if ( defined( 'TIMETREX_SOAP_API' ) && TIMETREX_SOAP_API == true ) { $output_arr['data'] = base64_encode( $output_arr['data'] ); $retval = $this->returnHandler( $output_arr ); } else { if ( $output_arr['mime_type'] === 'text/html' ) { $retval = $this->returnHandler( $output_arr['data'] ); } else { Misc::APIFileDownload( $output_arr['file_name'], $output_arr['mime_type'], $output_arr['data'] ); return null; //Don't send any additional data, so JSON encoding doesn't corrupt the download. } } } else if ( isset( $output_arr['api_retval'] ) ) { //Pass through validation errors. Debug::Text( 'Report returned VALIDATION error, passing through...', __FILE__, __LINE__, __METHOD__, 10 ); $retval = $this->returnHandler( $output_arr['api_retval'], $output_arr['api_details']['code'], $output_arr['api_details']['description'] ); } else if ( $output_arr !== false ) { //Likely RAW data, return untouched. $retval = $this->returnHandler( $output_arr ); } else { //getOutput() returned FALSE, some error occurred. Likely load too high though. $retval = $this->returnHandler( false, 'VALIDATION', TTi18n::getText( 'ERROR: Report is too large, please try again later or narrow your search criteria to decrease the size of your report' ) . '...' ); } return $this->returnHandler( $retval ); //This is double wrapped in returnHandler() for some reason } else { Debug::Text( 'Report likely has VALIDATION error, show to user...', __FILE__, __LINE__, __METHOD__, 10 ); return $this->returnHandler( false, 'VALIDATION', TTi18n::getText( 'ERROR: Unable to generate report, likely due to missing or invalid Form Setup, or the event is configured to use a custom Saved Report that is invalid' ) . '...' ); } } return $this->returnHandler( false ); } /** * Returns make payment data intended for the tax wizard * @param $prae_id * @param $action_id * @param null $data * @return array|bool */ function getMakePaymentData( $prae_id, $action_id, $data = null ) { if ( !$this->getPermissionObject()->Check( 'payroll_remittance_agency', 'enabled' ) || !( $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'edit' ) || $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'edit_own' ) ) ) { return $this->getPermissionObject()->PermissionDenied(); } $praelf = TTnew( 'PayrollRemittanceAgencyEventListFactory' ); /** @var PayrollRemittanceAgencyEventListFactory $praelf */ $praelf->getByIdAndCompanyId( $prae_id, $this->getCurrentCompanyObject()->getId() ); if ( $praelf->getRecordCount() == 1 ) { $prae_obj = $praelf->getCurrent(); $retval = $prae_obj->getURL( $action_id ); return $this->returnHandler( $retval ); } return $this->returnHandler( false ); } /** * Submits data to Payment Services for filing and payment. * @param $prae_id * @param $action_id * @param null $data * @return array|bool */ function getFileAndPayWithPaymentServicesData( $prae_id, $action_id, $data = null ) { if ( !$this->getPermissionObject()->Check( 'payroll_remittance_agency', 'enabled' ) || !( $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'edit' ) || $this->getPermissionObject()->Check( 'payroll_remittance_agency', 'edit_own' ) ) ) { return $this->getPermissionObject()->PermissionDenied(); } $praelf = TTnew( 'PayrollRemittanceAgencyEventListFactory' ); /** @var PayrollRemittanceAgencyEventListFactory $praelf */ $praelf->getByIdAndCompanyId( $prae_id, $this->getCurrentCompanyObject()->getId() ); if ( $praelf->getRecordCount() == 1 ) { $prae_obj = $praelf->getCurrent(); /** @var PayrollRemittanceAgencyEventFactory $prae_obj */ if ( $prae_obj->getStatus() == 15 ) { //15=Full Service $retval = [ 'result' => false, 'user_message' => TTi18n::gettext( 'ERROR: General error occurred, please contact customer service immediately.' ), ]; if ( is_object( $prae_obj->getPayrollRemittanceAgencyObject() ) ) { $pra_obj = $prae_obj->getPayrollRemittanceAgencyObject(); /** @var PayrollRemittanceAgencyFactory $pra_obj */ $rs_obj = $pra_obj->getRemittanceSourceAccountObject(); /** @var RemittanceSourceAccountFactory $rs_obj */ $le_obj = $rs_obj->getLegalEntityObject(); /** @var RemittanceSourceAccountFactory $le_obj */ if ( $rs_obj->getType() == 3000 && $rs_obj->getDataFormat() == 5 ) { //3000=EFT/ACH, 5=TimeTrex EFT if ( is_object( $pra_obj->getContactUserObject() ) ) { Debug::Text( ' Agency Event: Agency: ' . $prae_obj->getPayrollRemittanceAgencyObject()->getName() . ' Legal Entity: ' . $prae_obj->getPayrollRemittanceAgencyObject()->getLegalEntity() . ' Type: ' . $prae_obj->getType() . ' Due Date: ' . TTDate::getDate( 'DATE', $prae_obj->getDueDate() ) . ' ID: ' . $prae_obj->getId(), __FILE__, __LINE__, __METHOD__, 10 ); Debug::Text( ' Remittance Source: Name: ' . $rs_obj->getName() . ' API Username: ' . $rs_obj->getValue5(), __FILE__, __LINE__, __METHOD__, 10 ); //When running reports, we use the permissions from the ContactUserObject, which is different than the currently logged in user. // So its possible that this user gets switched to a "Regular Employee" permission group when the user trying to run the report might be an Administrator. // This is required so custom agency reports can be run as the user who created them. $pra_user_obj = $pra_obj->getContactUserObject(); $report_obj = $prae_obj->getReport( 'raw', null, $this->getCurrentUserObject(), $pra_user_obj, new Permission() ); //$report_obj = $prae_obj->getReport( '123456', NULL, $pra_user_obj, new Permission() ); //Test with generic TaxSummaryReport $output_data = $report_obj->getPaymentServicesData( $prae_obj, $pra_obj, $rs_obj, $pra_user_obj ); Debug::Arr( $output_data, 'Report Payment Services Data: ', __FILE__, __LINE__, __METHOD__, 10 ); if ( is_array( $output_data ) ) { if ( !isset( $output_data['user_success_message'] ) ) { $output_data['user_success_message'] = TTi18n::gettext( 'Data submitted successfully.' ); } if ( PRODUCTION == true && is_object( $le_obj ) && $le_obj->getPaymentServicesStatus() == 10 && $le_obj->getPaymentServicesUserName() != '' && $le_obj->getPaymentServicesAPIKey() != '' ) { //10=Enabled try { $tt_ps_api = $le_obj->getPaymentServicesAPIObject(); $agency_report_arr = $tt_ps_api->convertReportPaymentServicesDataToAgencyReportArray( $output_data, $prae_obj, $pra_obj, $rs_obj, $pra_user_obj ); $retval = $tt_ps_api->setAgencyReport( $agency_report_arr ); //P=Payment Debug::Arr( $retval, 'TimeTrexPaymentServices Retval: ', __FILE__, __LINE__, __METHOD__, 10 ); if ( $retval->isValid() == true ) { $retval = [ 'result' => true, 'user_message' => $output_data['user_success_message'], ]; } else { $retval = [ 'result' => false, 'user_message' => TTi18n::gettext( 'Payment Services Validation ERROR: %1', [ $retval->getDescription() ] ), ]; } unset( $agency_report_arr ); } catch ( Exception $e ) { Debug::Text( 'ERROR! Unable to upload agency report data... (b) Exception: ' . $e->getMessage(), __FILE__, __LINE__, __METHOD__, 10 ); $retval = [ 'result' => false, 'user_message' => TTi18n::gettext( 'Payment Services ERROR: %1', [ $e->getMessage() ] ), ]; } unset( $tt_ps_api, $agency_report_arr, $batch_id, $remote_id ); } else { Debug::Text( 'WARNING: Production is off, not calling payment services API...', __FILE__, __LINE__, __METHOD__, 10 ); $retval = [ 'result' => false, 'user_message' => TTi18n::gettext( 'WARNING: Not in PRODUCTION mode, unable to send data to Payment Services.' ), ]; //$retval = TRUE; } } else { Debug::Arr( $output_data, 'Report returned unexpected number of rows, not transmitting...', __FILE__, __LINE__, __METHOD__, 10 ); $retval = [ 'result' => false, 'user_message' => TTi18n::gettext( 'NOTICE: Report is empty, therefore nothing will be transmitted to Payment Services. Please ensure this is accurate before continuing.' ), ]; } } else { Debug::Text( ' ERROR! Contact user assign to agency is invalid!', __FILE__, __LINE__, __METHOD__, 10 ); } } else { Debug::Text( ' ERROR! Remittance Source Account is not EFT or TimeTrex Payment Services!', __FILE__, __LINE__, __METHOD__, 10 ); } } else { Debug::Text( ' ERROR! Remittance Agency Object is invalid!', __FILE__, __LINE__, __METHOD__, 10 ); } } else { $retval = [ 'result' => false, 'user_message' => TTi18n::gettext( 'ERROR: Agency event is not configured for full service processing.' ), ]; } return $this->returnHandler( $retval ); } return $this->returnHandler( false ); } /** * @param $data * @return array|bool */ function calculateNextRunDate( $data ) { $praef = new PayrollRemittanceAgencyEventFactory(); $praef->setObjectFromArray( $data ); $due_date_array = $praef->calculateNextDate(); if ( $due_date_array != false ) { $due_date = $due_date_array['due_date']; $next_reminder_date = $praef->calculateNextReminderDate( $due_date ); return [ 'start_date' => TTDate::getDate( 'DATE', $due_date_array['start_date'] ), 'end_date' => TTDate::getDate( 'DATE', $due_date_array['end_date'] ), 'due_date' => TTDate::getDate( 'DATE', $due_date ), 'next_reminder_date' => TTDate::getDate( 'DATE+TIME', $next_reminder_date ), ]; } return false; } function doLogWizardEvent( $agency_event_id, $event, $step, $action ) { if ( TTUUID::isUUID( $agency_event_id ) == false ) { return false; } $remittance_agency_event_data = $this->stripReturnHandler( $this->getPayrollRemittanceAgencyEvent( [ 'filter_data' => [ 'id' => $agency_event_id ] ], true ) ); if ( isset( $remittance_agency_event_data[0]['id'] ) && $agency_event_id == $remittance_agency_event_data[0]['id'] ) { //Make sure user has access to this event. //Events to Log: // Each button clicked on each Wizard Step // // When Skipping a Step without completing required actions. // When Completing a Step with completing required actions. // // When cancelling out of the Wizard without completing actions/steps. // When cancelling out of the wizard with completeting actions/steps // Events: 'step', 'step_action', 'wizard' // Step: variable // Action: skip/complete/cancel $log_action = 500; //500=NOTICE if ( strtolower( $action ) == 'start' ) { $action_label = TTi18n::getText( 'Started' ); } else if ( strtolower( $action ) == 'skip' ) { $action_label = TTi18n::getText( 'Skipped Without Required Actions' ); $log_action = 510; //510=WARNING } else if ( strtolower( $action ) == 'cancel' ) { $action_label = TTi18n::getText( 'Cancelled' ); $log_action = 510; //510=WARNING } else if ( strtolower( $action ) == 'complete' ) { $action_label = TTi18n::getText( 'Completed' ); } else { $action_label = TTi18n::getText( 'Unknown' ); } if ( strpos( $event, 'step' ) !== false ) { //Step events. if ( strpos( $event, 'step_action' ) !== false ) { //Step events. $retval = TTLog::addEntry( $agency_event_id, $log_action, TTi18n::getText( 'Processing Event Step: %1 Action: %2', [ ucwords( $step ), $action ] ), null, $this->getMainClassObject()->getTable() ); //500=NOTICE } else { $retval = TTLog::addEntry( $agency_event_id, $log_action, TTi18n::getText( 'Processing Event Step: %1 - %2', [ ucwords( $step ), $action_label ] ), null, $this->getMainClassObject()->getTable() ); //500=NOTICE } } else if ( strpos( $event, 'wizard' ) !== false ) { //Wizard events. $retval = TTLog::addEntry( $agency_event_id, $log_action, TTi18n::getText( 'Processing Event - %1', [ $action_label ] ), null, $this->getMainClassObject()->getTable() ); //500=NOTICE } return $retval; } return false; } } ?>