<!-- 
RSS generated by JIRA (8.13.3#813003-sha1:22ebedbb75c99b147c66f14e031dd8a2d214753a) at Sat Feb 10 07:16:46 CET 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Jira</title>
    <link>https://jira.astppbilling.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>8.13.3</version>
        <build-number>813003</build-number>
        <build-date>14-01-2021</build-date>
    </build-info>


<item>
            <title>[ASTPPCOM-399] Feature Request - Rates Management</title>
                <link>https://jira.astppbilling.org/browse/ASTPPCOM-399</link>
                <project id="10608" key="ASTPPCOM">ASTPP Community</project>
                    <description>&lt;p&gt;Hello!&lt;/p&gt;

&lt;p&gt;How can we create an origination list, which is a list of all our lowest termination rates + markup?&lt;/p&gt;

&lt;p&gt;For example, we have 10 termination partners. All 10 have code +38093 with different prices.&lt;/p&gt;

&lt;p&gt;But when we want to re-sell, we need to create an A-Z list with only one code of +38093.&lt;/p&gt;

&lt;p&gt;The list should have only one code, based on some logic. Which would be the lowest cost + markup.&lt;/p&gt;

&lt;p&gt;Is this possible?&lt;/p&gt;</description>
                <environment></environment>
        <key id="12219">ASTPPCOM-399</key>
            <summary>Feature Request - Rates Management</summary>
                <type id="10000" iconUrl="https://jira.astppbilling.org/secure/viewavatar?size=xsmall&amp;avatarId=10318&amp;avatarType=issuetype">Task</type>
                                                <status id="10001" iconUrl="https://jira.astppbilling.org/images/icons/status_generic.gif" description="">Done</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10000">Done</resolution>
                                        <assignee username="samir.doshi">Samir Doshi</assignee>
                                    <reporter username="slango-im">slango-im</reporter>
                        <labels>
                    </labels>
                <created>Fri, 13 Apr 2018 14:16:11 +0530</created>
                <updated>Sun, 27 Oct 2019 15:20:24 +0530</updated>
                            <resolved>Mon, 17 Jun 2019 16:26:16 +0530</resolved>
                                                    <fixVersion>v4.0.2</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>0</watches>
                                                                <comments>
                            <comment id="13307" author="powerpbx" created="Sat, 14 Apr 2018 03:15:35 +0530"  >&lt;p&gt;That almost sounds like you are asking for a call simulator.  I know call simulators for one number are fairly common on platforms like this.  You enter the number and it will show the details such as what plan/rate/route it would take etc.  It sounds like you want to do that for all your codes which may be a rather heavy job and may take some time.&lt;/p&gt;

&lt;p&gt;I would like to at least see a call simulator for testing individual numbers.&lt;/p&gt;</comment>
                            <comment id="13308" author="slango-im" created="Sun, 15 Apr 2018 17:03:43 +0530"  >&lt;p&gt;Hi &lt;span class=&quot;error&quot;&gt;&amp;#91;~powerpbx&amp;#93;&lt;/span&gt; , I&apos;m not sure it&apos;s a call simulator. Simply, how can we create our own A-Z list so other terminators can buy from us?&lt;/p&gt;

&lt;p&gt;I have 10 termination partners. I want to take the best price of each one and create an A-Z origination list to give to buyers.&lt;/p&gt;

&lt;p&gt;... Does that make sense? &lt;/p&gt;</comment>
                            <comment id="13309" author="devangn" created="Mon, 16 Apr 2018 12:32:30 +0530"  >&lt;p&gt;@slango-im As per existing configuration, you can create a list of origination rates manually for particular prefix and set the force-trunk to whichever trunk under one rate group and assign that rate group to whoever you want sell that rate card.&lt;br/&gt;
For automatic procedure, you need quite a modification as per your exact requirement. If you need we may help you with you it, contact us sales@inextrix.com&lt;/p&gt;</comment>
                            <comment id="13310" author="alexheylin" created="Fri, 8 Jun 2018 21:16:44 +0530"  >&lt;p&gt;In mysql, something like this&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-sql&quot;&gt;
&lt;span class=&quot;code-keyword&quot;&gt;select&lt;/span&gt; comment, &lt;span class=&quot;code-keyword&quot;&gt;replace&lt;/span&gt;(&lt;span class=&quot;code-keyword&quot;&gt;replace&lt;/span&gt;(pattern,&lt;span class=&quot;code-quote&quot;&gt;&quot;.*&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;&quot;),&quot;&lt;/span&gt;^&lt;span class=&quot;code-quote&quot;&gt;&quot;,&quot;&lt;/span&gt;&quot;) &lt;span class=&quot;code-keyword&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;prefix&lt;/span&gt;, &lt;span class=&quot;code-keyword&quot;&gt;min&lt;/span&gt;(cost) &lt;span class=&quot;code-keyword&quot;&gt;as&lt;/span&gt; MinPrice &lt;span class=&quot;code-keyword&quot;&gt;from&lt;/span&gt; routes
&lt;span class=&quot;code-keyword&quot;&gt;group&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;by&lt;/span&gt; pattern
&lt;span class=&quot;code-keyword&quot;&gt;order&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;by&lt;/span&gt; comment &lt;span class=&quot;code-keyword&quot;&gt;ASC&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;I&apos;m not sure this is the best way to do this, but it seems to work. Test yourself before relying on this.&lt;/p&gt;

&lt;p&gt;Note this will only match exact prefix / pattern / code matching, it will not take account of longer or shorter prefixes which may be cheaper. However this is what you requested.&lt;/p&gt;

&lt;p&gt;You requested this was based on termination rates + markup, however this uses the origination rate card cost instead. It should give you an idea where to head.&lt;/p&gt;</comment>
                            <comment id="13311" author="hemdip" created="Mon, 17 Jun 2019 16:26:16 +0530"  >&lt;p&gt;@slango-im that feature is available in V-4.0 you can simply duplicate rategroup and it will copy all origination rates also. You can update version and use that feature&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10000" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10703" key="com.atlassian.jira.plugin.system.customfieldtypes:textfield">
                        <customfieldname>External issue ID</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>399</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10006" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i00b3j:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        </customfields>
    </item>
</channel>
</rss>