Author: hansbak
Date: Tue Oct 28 02:04:35 2008
New Revision: 708486
URL:
http://svn.apache.org/viewvc?rev=708486&view=revLog:
remove debug log line and show invoice in corrent cirrency to customer
Modified:
ofbiz/trunk/specialpurpose/mypage/widget/MyPageForms.xml
ofbiz/trunk/specialpurpose/projectmgr/webapp/projectmgr/WEB-INF/actions/GanttChart.groovy
Modified: ofbiz/trunk/specialpurpose/mypage/widget/MyPageForms.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/mypage/widget/MyPageForms.xml?rev=708486&r1=708485&r2=708486&view=diff==============================================================================
--- ofbiz/trunk/specialpurpose/mypage/widget/MyPageForms.xml (original)
+++ ofbiz/trunk/specialpurpose/mypage/widget/MyPageForms.xml Tue Oct 28 02:04:35 2008
@@ -199,7 +199,7 @@
<script location="component://mypage/webapp/mypage/WEB-INF/actions/ConvertInvoiceCurrency.groovy"/>
</row-actions>
<field name="invoiceId" widget-style="buttontext">
- <hyperlink description="${invoiceId}" target="invoice.pdf?invoiceId=${invoiceId}&other=Y"/>
+ <hyperlink description="${invoiceId}" target="invoice.pdf?invoiceId=${invoiceId}"/>
</field>
<field name="invoiceTypeId"><display-entity entity-name="InvoiceType" description="${description}"/></field>
<field name="invoiceDate"><display/></field>
Modified: ofbiz/trunk/specialpurpose/projectmgr/webapp/projectmgr/WEB-INF/actions/GanttChart.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/webapp/projectmgr/WEB-INF/actions/GanttChart.groovy?rev=708486&r1=708485&r2=708486&view=diff==============================================================================
--- ofbiz/trunk/specialpurpose/projectmgr/webapp/projectmgr/WEB-INF/actions/GanttChart.groovy (original)
+++ ofbiz/trunk/specialpurpose/projectmgr/webapp/projectmgr/WEB-INF/actions/GanttChart.groovy Tue Oct 28 02:04:35 2008
@@ -68,7 +68,6 @@
taskInfo = resultTaskInfo.taskInfo;
taskInfo.taskNr = task.workEffortId;
taskInfo.phaseNr = phase.phaseId;
- Debug.log("=====" + taskInfo.currentStatusId);
if (taskInfo.plannedHours && !taskInfo.currentStatusId.equals("PTS_COMPLETED") && taskInfo.plannedHours > taskInfo.actualHours) {
taskInfo.resource = taskInfo.plannedHours + " Hrs";
} else {