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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

Pawan Verma-2
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"])
 }