search for: salesrep

Displaying 7 results from an estimated 7 matches for "salesrep".

Did you mean: sales_rep
2006 Jun 23
2
Foreign key - relations
...name varchar(50)); So project.user_id has a foreign key to user.id - all is good. Everything works fine. Now my question.. How can set a relationship from two different fields to the users table ?? Fx. I will user_is who might be the owner of the project, afterwards I would like to assign a salesrep to the project.. so sales_id should also be looked up in the users table.. How do I tell rails about this relation ? TIA, /mich -- Posted via http://www.ruby-forum.com/.
2007 May 02
2
delay in switching between contexts
...conf) . This is how my extensions looks like. [salesivr] exten => _X.,1,NoOp(Incoming call from user ${EXTEN} and caller id ${CALLERID}) exten => _X.,2,Playback(emptyy) exten => _X.,3,Background(Main_Sales) exten => _X.,4,WaitExten(2) exten => _X.,5,Goto(_X.,3) exten => 0,1,Goto(SalesRep,s,1) exten => 1,1,Goto(Inquiry,s,1) exten => 9,1,Goto(_X.,3) [BalanceInquiry] ;extensions [Inquiry] ;extensions When I press a digit in _X,3 or _X,4 it takes some time before switching to the desired context. When switching context I see this on the cli Executing BackGround("SIP/10...
2006 May 09
1
Beginner questions on attributes and arrays
..."sales_rep", "territories[3][1]", :size => 6) %> - <%= text_field("sales_rep", "territories[3][2]", :size => 6) %> ________________________________________ This of course gives me a "undefined method `territories[1][1]'' for #<SalesRep:0xb76bc074>" error because there is no territories attribute in my model. I try to declare it in my model like this (and around 12 variations of this which are all apparently incorrect): ________________________________________ attr_accessible :self.territories[3][2] def initialize self...
2005 Feb 26
0
How to grab CallerId information
...during the initial call setup, but I don't really know that the call is active. I can get the last busy and last unanswered callerid using ${DIALSTATUS}, but not the last or current answered. Anyone have any ideas? Here's what I want to do (not using the Flash Operator Panel). If a salesrep is on the phone, I want them to click a link on a webpage that will open up a window with all of the customer information they would need, based on the callerid of the active call. I already have a really nice click to dial application and don't want a separate app. I also don't want...
2008 Mar 19
0
How configure Voice mail for multi users.
...ON,1,Background(vm-nobodyavail) exten => s-CONGESTION,n,VoiceMail(${EXTEN}@usersmail) exten => s-CONGESTION,n,Hangup() exten => s-CANCEL,1,Background(vm-nobodyavail) exten => s-CANCEL,n,VoiceMail(${EXTEN}@usersmail) exten => s-CANCEL,n,Hangup() exten => s-BUSY,1,Background(salesrep) exten => s-BUSY,n,VoiceMail(${EXTEN}@usersmail) exten => s-BUSY,n,Hangup() exten => s-CHANUNAVAIL,1,Background(vm-nobodyavail) exten => s-CHANUNAVAIL,n,VoiceMail(${EXTEN}@usersmail) exten => s-CHANUNAVAIL,n,Hangup() my voicemail.conf [usersmail] 1000 => 1212, userm, 100...
2008 Mar 19
3
How to configure Voice mail for multi users.
...NGESTION,1,Background(vm-nobodyavail) exten => s-CONGESTION,n,VoiceMail(${EXTEN}@usersmail) exten => s-CONGESTION,n,Hangup() exten => s-CANCEL,1,Background(vm-nobodyavail) exten => s-CANCEL,n,VoiceMail(${EXTEN}@usersmail) exten => s-CANCEL,n,Hangup() exten => s-BUSY,1,Background(salesrep) exten => s-BUSY,n,VoiceMail(${EXTEN}@usersmail) exten => s-BUSY,n,Hangup() exten => s-CHANUNAVAIL,1,Background(vm-nobodyavail) exten => s-CHANUNAVAIL,n,VoiceMail(${EXTEN}@usersmail) exten => s-CHANUNAVAIL,n,Hangup() my voicemail.conf [usersmail] 1000 => 1212, userm, 1000 at abc...
2006 May 29
9
design recommendations for authenticating users with lots of different attributes..?
I''ve been struggling a bit trying to figure out the best way to design/implement a system with authentication/authorization, and was hoping some of you may be able to offer some advice.. At the moment, I have a system with 4 different types of users - clients, administrators, sales_reps, and public_users. I''m using "Authorizing Users with Roles" from the Rails Recipes