thanks mate,<br><br>for useful and good information provided by you, i am not asking you that please write down your all LOGIC and explain everything to me, as per your explanation i can see it will deduct amount for only 1 call but what actually i am searching for is if user made 5 concurrent calls and i have to limit <br>
all calls and each destination number having different rate may be some of them ISD and some of them local. that will create more problem to me, i think there is some solutions for this . could you suggest any reference for the same, it will be more helpful to me.<br>
<br>thanks in advance,<br>regards<br>Dhaval <br><br><div class="gmail_quote">On Thu, Oct 21, 2010 at 12:49 PM, Sherwood McGowan <span dir="ltr">&lt;<a href="mailto:sherwood.mcgowan@gmail.com">sherwood.mcgowan@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div><div></div><div class="h5"><br><br><div class="gmail_quote">On Thu, Oct 21, 2010 at 1:30 AM, DHAVAL INDRODIYA <span dir="ltr">&lt;<a href="mailto:dhaval.it01034@gmail.com" target="_blank">dhaval.it01034@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

<span>Hi Sherwood </span>,<br><br>well , i think you did not understand my question , i want real time billing<br>like as i mentioned that if i want to dial 5 number with different call rate how can i access same <br>
balance into those 5 people, if all are connected how can i periodically update billing , as you suggested it will assign total balance to those 5 people but actually we can not do like this as total balance of user $100 , as per your suggestion it will give $100 for those 5 people which is practically wrong i think. <br>



<br>give your thougts.<br><br>regards<br><font color="#888888">dhaval</font><div><div></div><div><br><br><div class="gmail_quote">On Thu, Oct 21, 2010 at 11:44 AM, Sherwood McGowan <span dir="ltr">&lt;<a href="mailto:sherwood.mcgowan@gmail.com" target="_blank">sherwood.mcgowan@gmail.com</a>&gt;</span> wrote:<br>



<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="gmail_quote"><div><div></div><div>On Thu, Oct 21, 2010 at 12:24 AM, DHAVAL INDRODIYA <span dir="ltr">&lt;<a href="mailto:dhaval.it01034@gmail.com" target="_blank">dhaval.it01034@gmail.com</a>&gt;</span> wrote:<br>



</div></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div><div></div><div>

Hello All,<br><br>after so long time i posted a new question regarding billing, hope  anyone have some solution.<br><br>I have situation in that i want to do billing of more than 1 call in real time below are scenario and explanation. <br>






<br><br>Scenario:<br> A customer called my DID number and after that from here i dial few number let say 5 number. once number are placed into DIAL<br>i will put this customer into conference [MEETME] , once a Members are picked up call they will also patched into conference and <br>






talking is started, every thing working fine with DIAL-PLAN and DB look up. <br><br>Now, i want to do billing on customer dialed my DID, and from that actually it DIALED 5 numbers, how can i DO real time billing <br>into this situation, like numbers can be different It can be ISD,STD,Local and also free .<br>






<br>if customer having initial balance of $100 then how can i check balance every <a href="http://time.in" target="_blank">time.in</a> a situation once balance is nil then i want to disconnect <br>calls . is any one facing this type of situation.<br>






<br>give me some  idea ,<br><br>regards<br><font color="#888888">Dhaval<br><br>
</font><br></div></div><div>--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
               <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br></div></blockquote></div><br><br>Dhaval,<br>This sounds very much like a system I&#39;m working on for a client right 
now. I&#39;m not permitted to disclose much about it due to the NDA i 
signed, but I&#39;ll risk giving you a point in the right direction. <br>
<br>First, you should create a table in your database that has a column called callid, and other columns that you will have to decide upon. This table will be called something like &#39;<i>call_references</i>&#39;. Oh, and you&#39;ll want to define callid as the primary key for records in that table, but DO NOT make it an autoincrement, you&#39;re going to populate it with a value that is described in the next step.<br>





<br>Second, at the beginning of the original call you mentioned, define a variable that will be unique to that call. I personally have done this by stripping all non-digits from the caller&#39;s callerid (using Set(newcid=${FILTER(0123456789,${CALLERID(number)})} ), and then adding the to ${EPOCH}. I did it this way: ${MATH(${newcid}+${EPOCH})}. <br>





<br>Next (this is where I have to start being a bit vague), you&#39;re going to perform an INSERT query, creating a new call_references record (using that variable I just showed you how to construct as callid&#39;s value). <br>





<br>Now, when you defined that variable, you should have preceded the variable name with two underscores ( __ ), which will tell Asterisk that channels spawned by the current channel will inherit that variable and it&#39;s value. <br>





<br>Voila, you now have a method for storing realtime data such as billing information between MULTIPLE calls. <br><br>I wish I could tell you more, but I can&#39;t violate my client&#39;s Non-Disclosure Agreement.<br><br>





Hope this helps you out!<br><font color="#888888"><br>Sherwood McGowan<br><br>
</font><br>--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
               <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br></blockquote></div><br>
</div></div><br>--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
               <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br></blockquote></div><br></div></div>Well, you got the right guy, I&#39;ve written several different RT billing setups for clients ranging from small residential ITSPs all the way up to a wholesale carrier in Austria. . .<br>


<br>What you&#39;d have to do is have a column called &quot;freeze&quot; in your table that you keep customer accounts and billing info in (mainly, the balance). Then, you&#39;d need a &#39;frozen&#39; table, with three columns: id, accountid (or some other name/reference that references the customer in question), and amount.<br>


<br>Now, the &quot;freeze&quot; column in the account table defines how many minutes worth of funds (at the rate the call is being charged to the customer) you&#39;re going to make unavailable to the customer until the call is completed. You multiply the value from &quot;freeze&quot; against the rate the call is going to be charged at, resulting in &quot;amount_to_freeze&quot;. Subtract that number from the customer&#39;s current balance, and then create a record in the &quot;frozen&quot; table with that customer&#39;s accountid and put the value of amount_to_freeze into the &quot;amount&quot; column. <br>


<br>Finally,when the customer&#39;s call(s) completes, calculate the total charge for the call, check to see if it&#39;s more than `frozen`.`amount`, and if it is, subtract `frozen`.`amount` from the total charge, and then subtract the remaining amount from the customer&#39;s balance. If the total is <u>not</u> more than than `frozen`.`amount`, you&#39;ll subtract total from `frozen`.`amount`, and then ADDING the remaining amount to the customer&#39;s balance. (Being the doofus I am, I called that procedure &quot;thawing&quot;, LOL)<br>


<br>In addition to the freezing of funds, you&#39;ll need to perform some magic and limit the length of the customer&#39;s calls based on the balance of the account just before freezing funds. This will need to be in conjunction with having a maximum number of concurrent calls the customer can have, and taking that into account when limiting each call. <br>


<br>It sounds complicated but I wrote this type of system several times, the first couple were native to Asterisk using AELv2 (no AGI calls, more secure, less resources hogged, etc), and then I wrote the last one using MySQL stored procedures to perform just about ALL of the calculations and logic. Basically at the beginning of a call, Asterisk would execute a stored procedure called something like freeze_and_limit and passing two arguments, the accountid and the rate per minute their call is going to cost (could have also just fed the SP the destination and let it calculate THAT too). MySQL would return the number of milliseconds the customer&#39;s call could be. <br>


<br>Alright, hopefully THAT gets you heading in the right direction, because if I write much more I&#39;d be getting into EXACTLY how I wrote up the &quot;FLaT&quot; (Freeze, Limit, and Thaw) system, and that would be depriving me of potential consulting fees I&#39;d normally get for just implementing it for a customer.<br>


<br>Cheers mate, and good luck :)<br><font color="#888888">Sherwood McGowan<br>
</font><br>--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
               <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br></blockquote></div><br>