Advertisement
Guest User

Untitled

a guest
Jan 27th, 2015
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. my $tmpl = read_template("crm_notes.html");
  2.  
  3. my @notes;
  4.  
  5. my $temp;
  6.  
  7. push(@notes, {html => generateCrmDisplay(0, $area, $obj_id, "profile")});
  8. push(@notes, {html => generateCrmDisplay(0, $area, $obj_id, "dialogue")});
  9. push(@notes, {html => generateCrmDisplay(0, $area, $obj_id, "offer")});
  10. push(@notes, {html => generateCrmDisplay(0, $area, $obj_id, "agreement")});
  11.  
  12. $tmpl->param(notes => \@notes);
  13.  
  14. print $tmpl->output;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement