You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by pa...@apache.org on 2019/06/22 11:48:52 UTC

svn commit: r1861849 - /ofbiz/ofbiz-framework/trunk/applications/accounting/groovyScripts/agreement/GetPartyNameForDate.groovy

Author: pawan
Date: Sat Jun 22 11:48:52 2019
New Revision: 1861849

URL: http://svn.apache.org/viewvc?rev=1861849&view=rev
Log:
Fixed: Issue of agreement overview does not show names of parties.
(OFBIZ-10900)
Thanks Pierre Smits for your contribution.

Modified:
    ofbiz/ofbiz-framework/trunk/applications/accounting/groovyScripts/agreement/GetPartyNameForDate.groovy

Modified: ofbiz/ofbiz-framework/trunk/applications/accounting/groovyScripts/agreement/GetPartyNameForDate.groovy
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/accounting/groovyScripts/agreement/GetPartyNameForDate.groovy?rev=1861849&r1=1861848&r2=1861849&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/applications/accounting/groovyScripts/agreement/GetPartyNameForDate.groovy (original)
+++ ofbiz/ofbiz-framework/trunk/applications/accounting/groovyScripts/agreement/GetPartyNameForDate.groovy Sat Jun 22 11:48:52 2019
@@ -16,8 +16,6 @@
  * specific language governing permissions and limitations
  * under the License.
  *******************************************************************************/
-partyIdFrom = parameters.partyIdFrom
-partyIdTo = parameters.partyIdTo
 if (partyIdFrom) {
     context.partyNameResultFrom = runService("getPartyNameForDate", [partyId: partyIdFrom, compareDate: agreementDate, lastNameFirst: "Y"])
 }