<!-- 
RSS generated by JIRA (8.13.3#813003-sha1:22ebedbb75c99b147c66f14e031dd8a2d214753a) at Sat Feb 10 07:15:26 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-244] Rate Import with Mapper.  (Updated Fix Supplied)</title>
                <link>https://jira.astppbilling.org/browse/ASTPPCOM-244</link>
                <project id="10608" key="ASTPPCOM">ASTPP Community</project>
                    <description>&lt;p&gt;It is saying the records are processed, but nothing is actually inserted into the outbound routes table.&lt;/p&gt;</description>
                <environment></environment>
        <key id="12064">ASTPPCOM-244</key>
            <summary>Rate Import with Mapper.  (Updated Fix Supplied)</summary>
                <type id="10201" iconUrl="https://jira.astppbilling.org/secure/viewavatar?size=xsmall&amp;avatarId=10700&amp;avatarType=issuetype">New Feature</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="countrdd">countrdd</reporter>
                        <labels>
                    </labels>
                <created>Tue, 10 Oct 2017 12:42:29 +0530</created>
                <updated>Thu, 1 Apr 2021 19:02:01 +0530</updated>
                            <resolved>Thu, 1 Apr 2021 19:02:01 +0530</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>0</watches>
                                                                <comments>
                            <comment id="13004" author="countrdd" created="Tue, 10 Oct 2017 13:47:22 +0530"  >&lt;p&gt;When I print the Result from the bulk insert this is what is coming back.&lt;/p&gt;

&lt;p&gt;A PHP Error was encountered&lt;br/&gt;
Severity: Warning&lt;br/&gt;
Message: Missing argument 2 for rates_model::bulk_insert_termination_rate(), called in /var/www/html/astpp/application/modules/rates/controllers/rates.php on line 1331 and defined&lt;br/&gt;
Filename: models/rates_model.php&lt;br/&gt;
Line Number: 312&lt;br/&gt;
A PHP Error was encountered&lt;br/&gt;
Severity: Notice&lt;br/&gt;
Message: Undefined variable: count&lt;br/&gt;
Filename: models/rates_model.php&lt;br/&gt;
Line Number: 331&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;
	&lt;ul&gt;
		&lt;li&gt;Found problem and fixed, also noticed init_inc was not being uploaded after fix was applied.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;



&lt;p&gt;Fix: &lt;/p&gt;

&lt;p&gt;Add Line Number 1304:  $csv_data &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;init_inc&amp;#39;&amp;#93;&lt;/span&gt; = ($this-&amp;gt;input-&amp;gt;post ( &quot;init_inc-select&quot; )) ? $csv_data &lt;span class=&quot;error&quot;&gt;&amp;#91;$this-&amp;gt;input-&amp;gt;post ( &amp;quot;init_inc-select&amp;quot; )&amp;#93;&lt;/span&gt; : &quot;0&quot;;&lt;br/&gt;
Add Line Number 1305: $csv_data &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;init_inc&amp;#39;&amp;#93;&lt;/span&gt; = ($this-&amp;gt;input-&amp;gt;post ( &quot;init_inc-prefix&quot; )) ? $this-&amp;gt;input-&amp;gt;post ( &quot;init_inc-prefix&quot; ) . $csv_data &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;init_inc&amp;#39;&amp;#93;&lt;/span&gt; : $csv_data &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;init_inc&amp;#39;&amp;#93;&lt;/span&gt;;   &lt;br/&gt;
Add Line Number 1326:  $new_final_arr &lt;span class=&quot;error&quot;&gt;&amp;#91;$i&amp;#93;&lt;/span&gt; &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;init_inc&amp;#39;&amp;#93;&lt;/span&gt; = isset ( $csv_data &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;init_inc&amp;#39;&amp;#93;&lt;/span&gt; ) ? $csv_data &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;init_inc&amp;#39;&amp;#93;&lt;/span&gt; : 0;    &lt;/p&gt;

&lt;p&gt;at Line number 1287 Add:  $row_count = 0;&lt;br/&gt;
at Line number 1327 Add: $row_count ++;&lt;br/&gt;
at line number 1335 add second argument $row_count&lt;br/&gt;
 $result = $this-&amp;gt;rates_model-&amp;gt;bulk_insert_termination_rate ( $new_final_arr,$row_count );&lt;/p&gt;</comment>
                            <comment id="13005" author="countrdd" created="Tue, 10 Oct 2017 14:34:46 +0530"  >&lt;p&gt;Also, Found another bug....&lt;br/&gt;
Lines 1299, 1301, 1303, 1306 and 1309&lt;br/&gt;
&quot;0&quot; should be replaced with &quot;&quot;.&lt;/p&gt;

&lt;p&gt;If not the logic is setting the value to 0, and then adding then concatenating the default/prefix value to 0. Making a default value of 6 into 60.&lt;/p&gt;</comment>
                            <comment id="13006" author="countrdd" created="Wed, 11 Oct 2017 15:07:13 +0530"  >
&lt;p&gt;&lt;a href=&quot;https://github.com/iNextrix/ASTPP/files/1375040/ASTPP35.patch.txt&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ASTPP35.patch.txt&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="13007" author="devangn" created="Wed, 3 Jan 2018 11:49:09 +0530"  >&lt;p&gt;Thanks &lt;span class=&quot;error&quot;&gt;&amp;#91;~countrdd&amp;#93;&lt;/span&gt; &lt;br/&gt;
Is that possible for you to send PR for this modification so that we can verify and merge it with source?&lt;/p&gt;
</comment>
                            <comment id="13008" author="countrdd" created="Sat, 6 Jan 2018 02:59:05 +0530"  >&lt;p&gt;I have not masters pR&apos;s yet.&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>244</customfieldvalue>

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

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