We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the ability to search call records by employee name in the call records journal.
Currently, the call records journal doesn't provide direct search functionality by employee name.
Add a new search field/filter for employee names in the call records journal that would:
Add a new column in the search form for employee names
Modify the backend search query to include:
// Add join with employees table $query->leftJoin( 'employees AS e', 'e.id = call_records.employee_id' ); // Add search condition for employee name if (!empty($filters['employee_name'])) { $query->andWhere( 'e.name LIKE :employee_name', ['employee_name' => '%' . $filters['employee_name'] . '%'] ); }
Update the frontend to:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add the ability to search call records by employee name in the call records journal.
Current Behavior
Currently, the call records journal doesn't provide direct search functionality by employee name.
Proposed Solution
Add a new search field/filter for employee names in the call records journal that would:
Technical Implementation
Add a new column in the search form for employee names
Modify the backend search query to include:
Update the frontend to:
Benefits
Additional Notes
The text was updated successfully, but these errors were encountered: