<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions tagged opportunities</title>
<link>https://overflow.efficy.io/?qa=tag/opportunities</link>
<description>Powered by Question2Answer</description>
<item>
<title>Opportunity Kanban &quot;Select date&quot; and duration buttons</title>
<link>https://overflow.efficy.io/?qa=5595/opportunity-kanban-select-date-and-duration-buttons</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;The Opportunity Kanban uses the target date as the date to be filtered in the &quot;Select date&quot; button. I would like to replace it with Start date since we are not using the Target date. What file/s do I need to modify in order to achieve the said functionality? Thank you.! I have attached some screenshots to better understand this. &lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=17993598859520943223&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=1539729426133635131&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=5409561065637951354&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5595/opportunity-kanban-select-date-and-duration-buttons</guid>
<pubDate>Tue, 22 Sep 2020 08:35:04 +0000</pubDate>
</item>
<item>
<title>How to display more rows in Kanban ?</title>
<link>https://overflow.efficy.io/?qa=4782/how-to-display-more-rows-in-kanban</link>
<description>&lt;p&gt;Hello Efficy Team, &lt;/p&gt;

&lt;p&gt;In the kanban view (oppo) / MacroKanban.txt, I see how to add new &quot;columns&quot;, but I don't find what's define the rows. &lt;/p&gt;

&lt;p&gt;The customer would like to see &lt;strong&gt;all&lt;/strong&gt; opportunities and even with the &quot;&lt;em&gt;expend all&lt;/em&gt;&quot; option, we cannot display more than two rows : &lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=3586906559973309654&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;What's the solution ? &lt;/p&gt;

&lt;p&gt;Regards, &lt;/p&gt;

&lt;p&gt;Loïc&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4782/how-to-display-more-rows-in-kanban</guid>
<pubDate>Fri, 13 Sep 2019 09:52:31 +0000</pubDate>
</item>
<item>
<title>Updating Linked Product lines in Oppo Edit &gt; OK in IE, not in Other browsers</title>
<link>https://overflow.efficy.io/?qa=2937/updating-linked-product-lines-oppo-edit-not-other-browsers</link>
<description>&lt;p&gt;I keep getting problems with the following.&lt;/p&gt;

&lt;p&gt;When a field in edit of an oppo is changed, I want to update linked products directly.&lt;/p&gt;

&lt;p&gt;The following 2 pieces each work on IE, but not in Firefox or Chrome, there the fields in the product grid aren't up to date...&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;function updateSelectedProducts(valueInput,type){
            var scriptFile = &quot;OppoScripts&quot;;
            var scriptFunc = &quot;updateProducts&quot;;
            var extraParam = format(&quot;&amp;amp;editHandle={editHandle}&amp;amp;value=$0&amp;amp;type=$1&quot;,valueInput,type);
            CebPerform(&quot;CEB_STATE&quot;);
            $.ajax({
                url: format(&quot;dialog?_macrofile=MacroAjax&amp;amp;_macro=RunScript&amp;amp;File=$0&amp;amp;Func=$1&quot;, scriptFile, scriptFunc),
                data: extraParam,
                async: false
            }).done(function (result) {
                console.log('updateSelectedProducts A');
            });
        }

        function updateSelectedProductsOLD(valueInput,type){
            var URL = format(&quot;dialog?_macrofile=MacroAjax&amp;amp;_macro=RunScript&amp;amp;file=OppoScripts;libjson&amp;amp;func=updateProducts&amp;amp;editHandle={editHandle}&amp;amp;value=$0&amp;amp;type=$1&quot;,valueInput,type);
            CebPerform(&quot;CEB_STATE&quot;);
            $.ajax({
                url: URL,
                type: &quot;GET&quot;,
                success: function (html, textStatus, jqXHR) {
                    if (IsNotEfficyErrorHtml(html, function(errorMsg) {alert(errorMsg)})) {
                        console.log('updateSelectedProducts B');
                    }
                }
            });
        }
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I Really need this to work on all browsers. Or is there a better way to do this ?&lt;/p&gt;

&lt;p&gt;My Serverscript is the following : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;function updateProducts(){
var editHandle = StrToIntDef(Request.Argument(&quot;editHandle&quot;), 0);
var Value = Request.Argument(&quot;value&quot;);
var type = Request.Argument(&quot;type&quot;);

var ProdDataSet = Database.GetDetailDataSet(editHandle, ntProd);
ProdDataSet.First
var updated = 0;
while (!ProdDataSet.Eof) {
    ProdDataSet.Edit
    var K_Product = ProdDataSet.FieldByName('K_PRODUCT').AsFloat
    var K_Relation = ProdDataSet.FieldByName('K_RELATION').AsInteger

    var Price = ProdDataSet.FieldByName('PRICE').AsFloat
    var Price_USD = ProdDataSet.FieldByName('F_PRICE_USD').AsFloat

    var F_TYPE = ProdDataSet.FieldByName('F_TYPE').AsInteger
    if (F_TYPE == type){
        updated++;
        ProdDataSet.FieldByName('QUANTITY').AsFloat =  parseFloat(Value)   //Value
        ProdDataSet.FieldByName('F_TOTAL_USD').AsFloat =  parseFloat(Value) * Price_USD;
        ProdDataSet.FieldByName('TOTAL').AsFloat =  parseFloat(Value) * Price;
    }
    ProdDataSet.Next
}   
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;}&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2937/updating-linked-product-lines-oppo-edit-not-other-browsers</guid>
<pubDate>Thu, 15 Feb 2018 14:44:50 +0000</pubDate>
</item>
<item>
<title>Shared reference number for opportunities and projects</title>
<link>https://overflow.efficy.io/?qa=2450/shared-reference-number-for-opportunities-and-projects</link>
<description>&lt;p&gt;I would like to use only one counter for opportunities as well as for projects. Now the counters are seperated and not related to each other. This results in strange, non-logical sequences&lt;/p&gt;

&lt;p&gt;How can I use the reference counter of the opportunities also for the projects?&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2450/shared-reference-number-for-opportunities-and-projects</guid>
<pubDate>Fri, 21 Apr 2017 16:02:55 +0000</pubDate>
</item>
</channel>
</rss>