[jira] Closed: (OFBIZ-1719) small bugs due to bad ui labels

2008-03-25 Thread Jacques Le Roux (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-1719?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jacques Le Roux closed OFBIZ-1719.
--

Resolution: Fixed
  Assignee: Jacques Le Roux

Thanks Valentina,

Your patch is in trunk rev. 640723  


 small bugs due to bad ui labels
 ---

 Key: OFBIZ-1719
 URL: https://issues.apache.org/jira/browse/OFBIZ-1719
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Valentina Sirkova
Assignee: Jacques Le Roux
Priority: Trivial
 Fix For: SVN trunk

 Attachments: uom.patch


 In framework CurrencyData.xml file the uom for bg levs is defined as BGN but 
 in the CommonEntityLabels the description label is BGL.
 I think the right one is BGN so maybe we should change that in  
 CommonEntityLabels. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Re: svn commit: r640357 - /ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml

2008-03-25 Thread Hans Bakker
Hi David,

the reason i changed it is, that i got an error message together with
the message of the missing OUT parameter. This was blocking me to use
the order creation function. This change fixed the problem and i was
able to create the order.

Hans


On Mon, 2008-03-24 at 07:29 -0600, David E Jones wrote:
 I haven't looked into exactly what is behind this, but generally if  
 there is an error then the OUT parameters are not validated.
 
 OUT parameters should be designed for the success, or rather non- 
 error, scenarios and it is expected that if there is an error then the  
 expected output parameters will likely not be there.
 
 -David
 
 
 On Mar 24, 2008, at 3:50 AM, [EMAIL PROTECTED] wrote:
  Author: hansbak
  Date: Mon Mar 24 02:50:23 2008
  New Revision: 640357
 
  URL: http://svn.apache.org/viewvc?rev=640357view=rev
  Log:
  in case of error no id is returned so made the outgoing service  
  field optional
 
  Modified:
 ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml
 
  Modified: ofbiz/trunk/applications/accounting/servicedef/ 
  services_ledger.xml
  URL: 
  http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml?rev=640357r1=640356r2=640357view=diff
  = 
  = 
  = 
  = 
  = 
  = 
  = 
  = 
  ==
  --- ofbiz/trunk/applications/accounting/servicedef/ 
  services_ledger.xml (original)
  +++ ofbiz/trunk/applications/accounting/servicedef/ 
  services_ledger.xml Mon Mar 24 02:50:23 2008
  @@ -259,7 +259,7 @@
  auto-attributes include=pk mode=IN optional=true/
  auto-attributes include=nonpk mode=IN optional=true/
  attribute name=acctgTransEntries type=java.util.List  
  mode=IN optional=false/
  -attribute name=acctgTransId type=String mode=OUT/
  +attribute name=acctgTransId type=String mode=OUT  
  optional=true/!-- no transaction is created when an error  
  occurred --
  /service
  service name=calculateAcctgTransTrialBalance default-entity- 
  name=AcctgTrans engine=simple
  location=org/ofbiz/accounting/ledger/ 
  AcctgTransServices.xml invoke=calculateAcctgTransTrialBalance  
  auth=true
 
 
 
 
-- 
AntWebsystems.com: Quality OFBiz services for competitive rates.



Re: svn commit: r640357 - /ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml

2008-03-25 Thread Scott Gray
Hi Hans

That's not a bugfix, that's just working around (and hiding) the actual bug.

If you don't want to fix the bug then it would be best to just comment out
the offending seca in your local copy until the bug gets fixed.

My 2 cents anyway

Regards
Scott

On 25/03/2008, Hans Bakker [EMAIL PROTECTED] wrote:

 Hi David,

 the reason i changed it is, that i got an error message together with
 the message of the missing OUT parameter. This was blocking me to use
 the order creation function. This change fixed the problem and i was
 able to create the order.

 Hans



 On Mon, 2008-03-24 at 07:29 -0600, David E Jones wrote:
  I haven't looked into exactly what is behind this, but generally if
  there is an error then the OUT parameters are not validated.
 
  OUT parameters should be designed for the success, or rather non-
  error, scenarios and it is expected that if there is an error then the
  expected output parameters will likely not be there.
 
  -David
 
 
  On Mar 24, 2008, at 3:50 AM, [EMAIL PROTECTED] wrote:
   Author: hansbak
   Date: Mon Mar 24 02:50:23 2008
   New Revision: 640357
  
   URL: http://svn.apache.org/viewvc?rev=640357view=rev
   Log:
   in case of error no id is returned so made the outgoing service
   field optional
  
   Modified:
  ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml
  
   Modified: ofbiz/trunk/applications/accounting/servicedef/
   services_ledger.xml
   URL:
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml?rev=640357r1=640356r2=640357view=diff
   =
   =
   =
   =
   =
   =
   =
   =
   ==
   --- ofbiz/trunk/applications/accounting/servicedef/
   services_ledger.xml (original)
   +++ ofbiz/trunk/applications/accounting/servicedef/
   services_ledger.xml Mon Mar 24 02:50:23 2008
   @@ -259,7 +259,7 @@
   auto-attributes include=pk mode=IN optional=true/
   auto-attributes include=nonpk mode=IN optional=true/
   attribute name=acctgTransEntries type=java.util.List
   mode=IN optional=false/
   -attribute name=acctgTransId type=String mode=OUT/
   +attribute name=acctgTransId type=String mode=OUT
   optional=true/!-- no transaction is created when an error
   occurred --
   /service
   service name=calculateAcctgTransTrialBalance default-entity-
   name=AcctgTrans engine=simple
   location=org/ofbiz/accounting/ledger/
   AcctgTransServices.xml invoke=calculateAcctgTransTrialBalance
   auth=true
  
  
 
 

 --
 AntWebsystems.com: Quality OFBiz services for competitive rates.




[jira] Commented: (OFBIZ-1716) POS: CVV2 code is not always deleted from the DB

2008-03-25 Thread Jacques Le Roux (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1716?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12581814#action_12581814
 ] 

Jacques Le Roux commented on OFBIZ-1716:


Hi Chris,

AS long as you don't persist the CV2 code in DB there is no problems to keep it 
in a session.

 POS: CVV2 code is not always deleted from the DB
 

 Key: OFBIZ-1716
 URL: https://issues.apache.org/jira/browse/OFBIZ-1716
 Project: OFBiz
  Issue Type: Bug
  Components: ALL COMPONENTS
Affects Versions: SVN trunk, Release Branch 4.0
Reporter: Chris Lombardi
Assignee: Jacques Le Roux
Priority: Critical

 I ran a transaction that was declined by the processor.  I later noticed that 
 the cvv2 code was still present in the database.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (OFBIZ-1707) Ability to add Note with each TimeEntry

2008-03-25 Thread Rishi Solanki (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1707?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12581939#action_12581939
 ] 

Rishi Solanki commented on OFBIZ-1707:
--

After loading data by ant run-install, you need to go to the page ;

https://localhost:8443/projectmgr/control/MyTimesheet

Here you will get a timesheet for the admin and task associated with it.

When you enter time in the task in the related block then it will be the 
onChange
and now at this point you need to write the java script for the pop up. On 
click 
updateMyTimesheet will call and set the entered hours in to the 'TimeEntry'.

Here for the particular noteId you need to persist your Note entered for 
a particular timeEntry. And need to map the relation of timeEntryId of 
'TimeEntry' with the noteId 'NoteData'. Also need to find the way to do so.

Thanks and Regards :
 [Rishi Solanki]

 Ability to add Note with each TimeEntry
 ---

 Key: OFBIZ-1707
 URL: https://issues.apache.org/jira/browse/OFBIZ-1707
 Project: OFBiz
  Issue Type: Improvement
  Components: specialpurpose/projectmgr
Reporter: Anil K Patel
Priority: Minor

 Link Time Entry with notedata. If possible provide a auto pop up window using 
 javascript that will auto save content on lost focus. 
 Rishi Solanki, Thanks for suggesting.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (OFBIZ-1720) service receiveInventoryProduct failed on existant inventoryItem

2008-03-25 Thread nicolas malin (JIRA)
service receiveInventoryProduct failed on existant inventoryItem


 Key: OFBIZ-1720
 URL: https://issues.apache.org/jira/browse/OFBIZ-1720
 Project: OFBiz
  Issue Type: Bug
  Components: product
Affects Versions: SVN trunk
Reporter: nicolas malin
 Fix For: SVN trunk
 Attachments: receiveInventoryProduct.patch

When you call the service receiveInventoryProduct with a currentInventoryItemId 
attribute, the service failed because it call updateInventoryItem service 
without inventoryItemId.

The patch correct this issue.

Nicolas

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (OFBIZ-1720) service receiveInventoryProduct failed on existant inventoryItem

2008-03-25 Thread nicolas malin (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-1720?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

nicolas malin updated OFBIZ-1720:
-

Attachment: receiveInventoryProduct.patch

 service receiveInventoryProduct failed on existant inventoryItem
 

 Key: OFBIZ-1720
 URL: https://issues.apache.org/jira/browse/OFBIZ-1720
 Project: OFBiz
  Issue Type: Bug
  Components: product
Affects Versions: SVN trunk
Reporter: nicolas malin
 Fix For: SVN trunk

 Attachments: receiveInventoryProduct.patch

   Original Estimate: 0.03h
  Remaining Estimate: 0.03h

 When you call the service receiveInventoryProduct with a 
 currentInventoryItemId attribute, the service failed because it call 
 updateInventoryItem service without inventoryItemId.
 The patch correct this issue.
 Nicolas

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Assigned: (OFBIZ-1720) service receiveInventoryProduct failed on existant inventoryItem

2008-03-25 Thread Jacques Le Roux (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-1720?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jacques Le Roux reassigned OFBIZ-1720:
--

Assignee: Jacques Le Roux

 service receiveInventoryProduct failed on existant inventoryItem
 

 Key: OFBIZ-1720
 URL: https://issues.apache.org/jira/browse/OFBIZ-1720
 Project: OFBiz
  Issue Type: Bug
  Components: product
Affects Versions: SVN trunk
Reporter: nicolas malin
Assignee: Jacques Le Roux
 Fix For: SVN trunk

 Attachments: receiveInventoryProduct.patch

   Original Estimate: 0.03h
  Remaining Estimate: 0.03h

 When you call the service receiveInventoryProduct with a 
 currentInventoryItemId attribute, the service failed because it call 
 updateInventoryItem service without inventoryItemId.
 The patch correct this issue.
 Nicolas

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (OFBIZ-1698) Locale labels in language different from the fallback sometime are not displayed

2008-03-25 Thread Bruno Busco (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-1698?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bruno Busco updated OFBIZ-1698:
---

Attachment: cleanlabels.patch.zip

Hi Jacques,
i have updated the script with your suggestion about the files hierarchy and 
have attached the cleanlabels.patch.zip that includes the (large) patch, the 
updated script that has been used and the script report file.

According to the script report the patch removes 887 redundant label 
definitions.

Of course a deep test must be done to be sure that all labels are still found.


 Locale labels in language different from the fallback sometime are not 
 displayed
 

 Key: OFBIZ-1698
 URL: https://issues.apache.org/jira/browse/OFBIZ-1698
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Bruno Busco
Assignee: Jacques Le Roux
 Attachments: cleanlabels.patch.zip


 A label is not displayed in the selected language but in the fallback one 
 when ALL the following are true:
 - A language different from the one specified as locale.properties.fallback 
 in framework/common/config/general.properties is selected
 - The label is defined in more than one XXXUiLabels.XML file (say 
 File1UiLabels.xml and File2UiLabels.xml)
 - The screen includes first File1UiLabels.xml and then File2UiLabels.xml
 - In File1UiLabels.xml there is NO translation for the selected language
 - In File2UiLabels.xml there is the translation for the selected language
 This bug was not present in Release 4.0 and i think could have been 
 introduced with the new locale system.
 You can check the bug going in the trunk demo in the ecommerce main page and 
 selecting italian. - Labels Cart Summary and Special Offers are not 
 translated.
 In the R4.0 demo it is all OK

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (OFBIZ-1698) Locale labels in language different from the fallback sometime are not displayed

2008-03-25 Thread Bruno Busco (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-1698?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bruno Busco updated OFBIZ-1698:
---

Attachment: (was: cleanlabels.py)

 Locale labels in language different from the fallback sometime are not 
 displayed
 

 Key: OFBIZ-1698
 URL: https://issues.apache.org/jira/browse/OFBIZ-1698
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Bruno Busco
Assignee: Jacques Le Roux
 Attachments: cleanlabels.patch.zip


 A label is not displayed in the selected language but in the fallback one 
 when ALL the following are true:
 - A language different from the one specified as locale.properties.fallback 
 in framework/common/config/general.properties is selected
 - The label is defined in more than one XXXUiLabels.XML file (say 
 File1UiLabels.xml and File2UiLabels.xml)
 - The screen includes first File1UiLabels.xml and then File2UiLabels.xml
 - In File1UiLabels.xml there is NO translation for the selected language
 - In File2UiLabels.xml there is the translation for the selected language
 This bug was not present in Release 4.0 and i think could have been 
 introduced with the new locale system.
 You can check the bug going in the trunk demo in the ecommerce main page and 
 selecting italian. - Labels Cart Summary and Special Offers are not 
 translated.
 In the R4.0 demo it is all OK

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (OFBIZ-1721) Patch to customize display sequence of app bar

2008-03-25 Thread Shi Yusen (JIRA)
Patch to customize display sequence of app bar
--

 Key: OFBIZ-1721
 URL: https://issues.apache.org/jira/browse/OFBIZ-1721
 Project: OFBiz
  Issue Type: Improvement
  Components: ALL COMPONENTS
Affects Versions: Release Branch 4.0
 Environment: Dell D620, FC7, JDK 1.6.0_05, OFBiz 4.0
Reporter: Shi Yusen
Priority: Trivial


The app bar is displayed in the order of title of webapps. For English users, 
that's ok. For Chinese users, the alphabet order is not that reasonable.

The comparator in this patch is for the users who want to change the sequence 
of app bar.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.