$filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return $this */ function getAll( $limit = null, $page = null, $where = null, $order = null ) { $query = ' select * from ' . $this->getTable() . ' WHERE deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, null, $limit, $page ); return $this; } /** * @param string $id UUID * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserGenericStatusListFactory */ function getById( $id, $where = null, $order = null ) { if ( $id == '' ) { return false; } $ph = [ 'id' => TTUUID::castUUID( $id ), ]; $query = ' select * from ' . $this->getTable() . ' where id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $company_id UUID * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserGenericStatusListFactory */ function getByCompanyId( $company_id, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } $uf = new UserFactory(); $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), ]; $query = ' select a.* from ' . $this->getTable() . ' as a LEFT JOIN ' . $uf->getTable() . ' as b on a.user_id = b.id where b.company_id = ? AND a.deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $id UUID * @param string $company_id UUID * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserGenericStatusListFactory */ function getByIdAndCompanyId( $id, $company_id, $where = null, $order = null ) { if ( $id == '' ) { return false; } if ( $company_id == '' ) { return false; } $uf = new UserFactory(); $ph = [ 'id' => TTUUID::castUUID( $id ), 'company_id' => TTUUID::castUUID( $company_id ), ]; $query = ' select a.* from ' . $this->getTable() . ' as a LEFT JOIN ' . $uf->getTable() . ' as b on a.user_id = b.id where a.id = ? AND b.company_id = ? AND a.deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $id UUID * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserGenericStatusListFactory */ function getByUserId( $id, $limit = null, $page = null, $where = null, $order = null ) { if ( $id == '' ) { return false; } $ph = [ 'user_id' => TTUUID::castUUID( $id ), ]; $query = ' select * from ' . $this->getTable() . ' where user_id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph, $limit, $page ); return $this; } /** * @param string $user_id UUID * @param string $batch_id UUID * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserGenericStatusListFactory */ function getByUserIdAndBatchId( $user_id, $batch_id, $limit = null, $page = null, $where = null, $order = null ) { if ( $user_id == '' ) { return false; } if ( $batch_id == '' ) { return false; } if ( $order == null ) { $order = [ 'status_id' => 'asc', 'label' => 'asc' ]; $strict = false; } else { $strict = true; } $ph = [ 'user_id' => TTUUID::castUUID( $user_id ), 'batch_id' => TTUUID::castUUID( $batch_id ), ]; $query = ' select * from ' . $this->getTable() . ' where user_id = ? AND batch_id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict ); $this->rs = $this->ExecuteSQL( $query, $ph, $limit, $page ); return $this; } /** * @param string $user_id UUID * @param string $batch_id UUID * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return array|bool */ function getStatusCountArrayByUserIdAndBatchId( $user_id, $batch_id, $where = null, $order = null ) { if ( $user_id == '' ) { return false; } if ( $batch_id == '' ) { return false; } $ph = [ 'user_id' => TTUUID::castUUID( $user_id ), 'batch_id' => TTUUID::castUUID( $batch_id ), ]; $query = ' select status_id, count(*) as total from ' . $this->getTable() . ' where user_id = ? AND batch_id = ? AND deleted = 0 GROUP BY status_id'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $result = $this->db->GetArray( $query, $ph ); $total = 0; foreach ( $result as $row ) { $total = ( $total + $row['total'] ); } $retarr = []; $retarr['total'] = $total; $retarr['status'] = [ 10 => [ 'total' => 0, 'percent' => 0 ], 20 => [ 'total' => 0, 'percent' => 0 ], 30 => [ 'total' => 0, 'percent' => 0 ], ]; foreach ( $result as $row ) { $retarr['status'][$row['status_id']] = [ 'total' => $row['total'], 'percent' => round( ( ( $row['total'] / $total ) * 100 ), 1 ) ]; } if ( empty( $retarr ) == false ) { return $retarr; } return false; } } ?>