I've implemented a new leads module and want to have the same ability for users to create calls and set task as you would using the leads module
I am having issues I beleive with the var_defs and language file.
Has anyone been able to implement in the same manor subpanels seen in leads in a new module.


LinkBack URL
About LinkBacks



Reply With Quote
SELECT count(*) FROM meetings where ( leads.id= '' AND leads.deleted=0 AND (meetings.status='Planned')) AND meetings.deleted=0 ) UNION ALL ( SELECT count(*) FROM tasks where ( leads.id= '' AND leads.deleted=0 AND (tasks.status='Not Started' OR tasks.status='In Progress' OR tasks.status='Pending Input')) AND tasks.deleted=0 ) UNION ALL ( SELECT count(*) FROM calls where ( leads.id= '' AND leads.deleted=0 AND (calls.status='Planned')) AND calls.deleted=0 )::MySQL error 1109: Unknown table 'leads' in where clause
Bookmarks