getPermissionObject()->Check( 'pay_stub_account', 'enabled' ) || !( $this->getPermissionObject()->Check( 'pay_stub_account', 'view' ) || $this->getPermissionObject()->Check( 'pay_stub_account', 'view_own' ) || $this->getPermissionObject()->Check( 'pay_stub_account', 'view_child' ) ) ) ) { $name = 'list_columns'; } return parent::getOptions( $name, $parent ); } /** * Get default paystub_entry_account data for creating new paystub_entry_accountes. * @return array */ function getPayStubEntryAccountDefaultData() { $company_obj = $this->getCurrentCompanyObject(); Debug::Text( 'Getting paystub_entry_account default data...', __FILE__, __LINE__, __METHOD__, 10 ); $data = [ 'company_id' => $company_obj->getId(), 'status_id' => 10, 'type_id' => 10, 'amount' => '0.00', 'accrual_pay_stub_entry_account_id' => 0, 'accrual_type_id' => 10, ]; return $this->returnHandler( $data ); } /** * Get paystub_entry_account data for one or more paystub_entry_accountes. * @param array $data filter data * @param bool $disable_paging * @return array|bool */ function getPayStubEntryAccount( $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 they have permissions to add/edit/view PS amendments, also allow them to view pay stub accounts, as its mandatory for PS amendments. if ( ( !$this->getPermissionObject()->Check( 'pay_stub_account', 'enabled' ) || !( $this->getPermissionObject()->Check( 'pay_stub_account', 'view' ) || $this->getPermissionObject()->Check( 'pay_stub_account', 'view_child' ) ) ) && ( !$this->getPermissionObject()->Check( 'pay_stub_amendment', 'enabled' ) || !( $this->getPermissionObject()->Check( 'pay_stub_amendment', 'view' ) || $this->getPermissionObject()->Check( 'pay_stub_amendment', 'view_own' ) || $this->getPermissionObject()->Check( 'pay_stub_amendment', 'view_child' ) ) ) ) { return $this->getPermissionObject()->PermissionDenied(); } //If they can view any pay stub account, allow to them to view all, since this isn't an object that a limited view makes sense. //$data['filter_data']['permission_children_ids'] = $this->getPermissionObject()->getPermissionChildren( 'pay_stub_account', 'view' ); $blf = TTnew( 'PayStubEntryAccountListFactory' ); /** @var PayStubEntryAccountListFactory $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->setPagerObject( $blf ); $retarr = []; foreach ( $blf as $b_obj ) { $retarr[] = $b_obj->getObjectAsArray( $data['filter_columns'] ); } return $this->returnHandler( $retarr ); } return $this->returnHandler( true ); //No records returned. } /** * Export data to csv * @param string $format file format (csv) * @param array $data filter data * @param bool $disable_paging * @return array */ function exportPayStubEntryAccount( $format = 'csv', $data = null, $disable_paging = true ) { $result = $this->stripReturnHandler( $this->getPayStubEntryAccount( $data, $disable_paging ) ); return $this->exportRecords( $format, 'export_pay_stub_account', $result, ( ( isset( $data['filter_columns'] ) ) ? $data['filter_columns'] : null ) ); } /** * 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 getCommonPayStubEntryAccountData( $data ) { return Misc::arrayIntersectByRow( $this->stripReturnHandler( $this->getPayStubEntryAccount( $data, true ) ) ); } /** * Validate paystub_entry_account data for one or more paystub_entry_accountes. * @param array $data paystub_entry_account data * @return array */ function validatePayStubEntryAccount( $data ) { return $this->setPayStubEntryAccount( $data, true ); } /** * Set paystub_entry_account data for one or more paystub_entry_accountes. * @param array $data paystub_entry_account data * @param bool $validate_only * @param bool $ignore_warning * @return array|bool */ function setPayStubEntryAccount( $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( 'pay_stub_account', 'enabled' ) || !( $this->getPermissionObject()->Check( 'pay_stub_account', 'edit' ) || $this->getPermissionObject()->Check( 'pay_stub_account', 'edit_own' ) || $this->getPermissionObject()->Check( 'pay_stub_account', 'edit_child' ) || $this->getPermissionObject()->Check( 'pay_stub_account', '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 . ' PayStubEntryAccounts', __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 ) { foreach ( $data as $key => $row ) { $primary_validator = new Validator(); $lf = TTnew( 'PayStubEntryAccountListFactory' ); /** @var PayStubEntryAccountListFactory $lf */ $lf->StartTransaction(); if ( isset( $row['id'] ) && $row['id'] != '' ) { //Modifying existing object. //Get paystub_entry_account object, so we can only modify just changed data for specific records if needed. $lf->getByIdAndCompanyId( $row['id'], $this->getCurrentCompanyObject()->getId() ); if ( $lf->getRecordCount() == 1 ) { //Object exists, check edit permissions if ( $validate_only == true || ( $this->getPermissionObject()->Check( 'pay_stub_account', 'edit' ) || ( $this->getPermissionObject()->Check( 'pay_stub_account', '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( 'pay_stub_account', 'add' ), TTi18n::gettext( 'Add permission denied' ) ); } Debug::Arr( $row, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 ); if ( $validate_only == true ) { $lf->Validator->setValidateOnly( $validate_only ); } $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 ); //Force Company ID to current company. $row['company_id'] = $this->getCurrentCompanyObject()->getId(); $lf->setObjectFromArray( $row ); $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(); } $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(); } return $this->handleRecordValidationResults( $validator, $validator_stats, $key, $save_result ); } return $this->returnHandler( false ); } /** * Delete one or more paystub_entry_accounts. * @param array $data paystub_entry_account data * @return array|bool */ function deletePayStubEntryAccount( $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( 'pay_stub_account', 'enabled' ) || !( $this->getPermissionObject()->Check( 'pay_stub_account', 'delete' ) || $this->getPermissionObject()->Check( 'pay_stub_account', 'delete_own' ) || $this->getPermissionObject()->Check( 'pay_stub_account', 'delete_child' ) ) ) { return $this->getPermissionObject()->PermissionDenied(); } Debug::Text( 'Received data for: ' . count( $data ) . ' PayStubEntryAccounts', __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 ) { foreach ( $data as $key => $id ) { $primary_validator = new Validator(); $lf = TTnew( 'PayStubEntryAccountListFactory' ); /** @var PayStubEntryAccountListFactory $lf */ $lf->StartTransaction(); if ( $id != '' ) { //Modifying existing object. //Get paystub_entry_account object, so we can only modify just changed data for specific records if needed. $lf->getByIdAndCompanyId( $id, $this->getCurrentCompanyObject()->getId() ); if ( $lf->getRecordCount() == 1 ) { //Object exists, check edit permissions if ( $this->getPermissionObject()->Check( 'pay_stub_account', 'delete' ) || ( $this->getPermissionObject()->Check( 'pay_stub_account', '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(); } return $this->handleRecordValidationResults( $validator, $validator_stats, $key, $save_result ); } return $this->returnHandler( false ); } /** * Copy one or more paystub_entry_accountes. * @param array $data paystub_entry_account IDs * @return array */ function copyPayStubEntryAccount( $data ) { if ( !is_array( $data ) ) { $data = [ $data ]; } if ( !is_array( $data ) ) { return $this->returnHandler( false ); } Debug::Text( 'Received data for: ' . count( $data ) . ' PayStubEntryAccounts', __FILE__, __LINE__, __METHOD__, 10 ); Debug::Arr( $data, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 ); $src_rows = $this->stripReturnHandler( $this->getPayStubEntryAccount( [ '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'], $src_rows[$key]['manual_id'] ); //Clear fields that can't be copied $src_rows[$key]['name'] = Misc::generateCopyName( $row['name'] ); //Generate unique name } //Debug::Arr($src_rows, 'bSRC Rows: ', __FILE__, __LINE__, __METHOD__, 10); return $this->setPayStubEntryAccount( $src_rows ); //Save copied rows } return $this->returnHandler( false ); } /** * Migrate time from one pay stub account to another without recalculating pay stubs. * @param array $src_ids Source PayStubAccount IDs * @param string $dst_id Destination PayStubAccount IDs * @param int $effective_date EPOCH * @return array|bool * @internal param bool $user_ids Users to affect. */ function migratePayStubEntryAccount( $src_ids, $dst_id, $effective_date ) { if ( $this->getPermissionObject()->checkAuthenticationType( 700 ) == false ) { //700=HTTP Auth with username/password return $this->getPermissionObject()->AuthenticationTypeDenied(); } if ( !$this->getPermissionObject()->Check( 'pay_stub_account', 'enabled' ) || !( $this->getPermissionObject()->Check( 'pay_stub_account', 'edit' ) || $this->getPermissionObject()->Check( 'pay_stub_account', 'edit_own' ) || $this->getPermissionObject()->Check( 'pay_stub_account', 'edit_child' ) || $this->getPermissionObject()->Check( 'pay_stub_account', 'add' ) ) ) { return $this->getPermissionObject()->PermissionDenied(); } $pseaf = TTNew( 'PayStubEntryAccountFactory' ); /** @var PayStubEntryAccountFactory $pseaf */ $retval = $pseaf->migrate( $this->getCurrentCompanyObject()->getId(), $src_ids, $dst_id, TTDate::parseDateTime( $effective_date ) ); if ( $retval == true ) { return $this->returnHandler( true ); } $pseaf->Validator->isTrue( 'pay_stub_entry_account_id', false, TTi18n::gettext( 'Invalid Pay Stub Accounts' ) ); return $this->returnHandler( false, 'VALIDATION', TTi18n::getText( 'INVALID DATA' ), $pseaf->Validator->getErrorsArray(), [ 'total_records' => 1, 'valid_records' => 0 ] ); } } ?>