Re: DefaultMessages.xml issue

2008-02-28 Thread Jacques Le Roux

Hi Chris,

I take advantage of your mail to ask about the old OFBiz wiki. I know we can find some pieces of informations here 
http://web.archive.org/web/20070811060319/http://ofbizwiki.go-integral.com/ but there is not all and find is not working.

Could it be possible to have a copy of the last version ? I would like to put 
it on a box I have.

Thanks

Jacques

From: Chris Juettner [EMAIL PROTECTED]

I believe DefaultMessages.properties file for English locale had prefixes and 
suffixes set to empty strings.
The new DefaultMessages.xml file have the values set to prefix and suffix.

Can someone explain why these are set this way?

I now have messages on the rendered screens displaying:
prefixprefixThe action was performed successfully.suffixsuffix

Chris Juettner
Integral Business Solutions





[jira] Closed: (OFBIZ-1471) JUnit Test Case for Inventory Items Transfer

2008-02-28 Thread Vikas Mayur (JIRA)

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

Vikas Mayur closed OFBIZ-1471.
--

Resolution: Fixed

Thanks Ratnesh,
Patch is in rev 631895.

 JUnit Test Case for Inventory Items Transfer
 

 Key: OFBIZ-1471
 URL: https://issues.apache.org/jira/browse/OFBIZ-1471
 Project: OFBiz
  Issue Type: Sub-task
  Components: product
Affects Versions: SVN trunk
Reporter: Vikas Mayur
Assignee: Vikas Mayur
Priority: Minor
 Fix For: SVN trunk

 Attachments: inventory_transfer.patch, inventory_transfer.patch




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



[jira] Commented: (OFBIZ-1467) JUNIT test case for finding and editing a party(DemoCustomer)

2008-02-28 Thread Vikas Mayur (JIRA)

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

Vikas Mayur commented on OFBIZ-1467:


I think instead of Updating information on party DemoCustomer, we should create 
a test data probably with reader-name=test and use that data to find, update 
information.
Any Thoughts ?

  JUNIT test case for finding and editing a party(DemoCustomer)
 --

 Key: OFBIZ-1467
 URL: https://issues.apache.org/jira/browse/OFBIZ-1467
 Project: OFBiz
  Issue Type: Sub-task
  Components: party
Affects Versions: SVN trunk
Reporter: Vikas Mayur
Assignee: Marco Risaliti
Priority: Minor
 Fix For: SVN trunk

 Attachments: find_edit_party.patch


 Followed the process from link 
 http://docs.ofbiz.org/display/OFBENDUSER/Find+and+Edit+Customer

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



Re: svn commit: r631785 - /ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml

2008-02-28 Thread Christian Geisert

I think Si isn't subscribed to this mailing list...

Anyway, this change just triggered a problem in the demo data which
I noticed by coincidence yesterday while looking at the
AccountingTypeData.xml ;-)

A fix for this is either to add a GlAccountType EXPENSE or remove
the parentTypeId from PURCHASE_PRICE_VAR
(For example OTHER_EXPENSE has no parent EXPENSE)

I'm not sure which is better...

Christian


Si,
Problems have been encountered while loading data due to this code.

(ERROR: insert or update on table gl_account_type violates foreign key
constraint glactty_par
 Detail: Key (parent_type_id)=(EXPENSE) is not present in table
gl_account_type.)). Rolling back transaction.

Regards,
Pankaj Savita

On Thu, Feb 28, 2008 at 5:43 AM, [EMAIL PROTECTED] wrote:


Author: sichen
Date: Wed Feb 27 16:12:58 2008
New Revision: 631785

URL: http://svn.apache.org/viewvc?rev=631785view=rev
Log:
Add relation for GlAccountType's parent/child structure.

Modified:
   ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml

Modified: ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml?rev=631785r1=631784r2=631785view=diff

==
--- ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml
(original)
+++ ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml Wed Feb
27 16:12:58 2008
@@ -1885,6 +1885,9 @@
  field name=hasTable type=indicator/field
  field name=description type=description/field
  prim-key field=glAccountTypeId/
+  relation type=one fk-name=GLACTTY_PAR title=Parent
rel-entity-name=GlAccountType
+key-map field-name=parentTypeId
rel-field-name=glAccountTypeId/
+  /relation
/entity
entity entity-name=GlAccountTypeDefault
package-name=org.ofbiz.accounting.ledger







http://www.hotwaxmedia.com




--
Mit freundlichen Grüßen
Christian Geisert

ISU GmbH * Kreisstr. 9 * 76297 Stutensee * Germany
Tel. 0721/96731-13 * Fax 0721/96731-55
www.isu-gmbh.de * [EMAIL PROTECTED]

Geschäftsführer: Hartmut Glasenapp
Amtsgericht Mannheim HRB 106505
USt.-Id Nr. DE 158792445
St.-Nr. 34 413 82630


Re: svn commit: r631785 - /ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml

2008-02-28 Thread Mridul Pathak
The error is actually due to the following data record in
AccountingTypeData.xml:
LINE 301: GlAccountType description=Purchase Price Variance
glAccountTypeId=PURCHASE_PRICE_VAR hasTable=N parentTypeId=EXPENSE/

Here glAccoutTypeId=EXPENSE does not exists so can't be used as a
parentTypeId as it violates FK constraints according to this commit,  I
think we can use parentTypeId=OTHER_EXPENCE.

On Thu, Feb 28, 2008 at 10:26 AM, pankaj savita [EMAIL PROTECTED]
wrote:

 Si,
 Problems have been encountered while loading data due to this code.

 (ERROR: insert or update on table gl_account_type violates foreign key
 constraint glactty_par
  Detail: Key (parent_type_id)=(EXPENSE) is not present in table
 gl_account_type.)). Rolling back transaction.

 Regards,
 Pankaj Savita

 On Thu, Feb 28, 2008 at 5:43 AM, [EMAIL PROTECTED] wrote:

  Author: sichen
  Date: Wed Feb 27 16:12:58 2008
  New Revision: 631785
 
  URL: http://svn.apache.org/viewvc?rev=631785view=rev
  Log:
  Add relation for GlAccountType's parent/child structure.
 
  Modified:
 ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml
 
  Modified: ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml
  URL:
 
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml?rev=631785r1=631784r2=631785view=diff
 
 
 ==
  --- ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml
  (original)
  +++ ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml Wed
 Feb
  27 16:12:58 2008
  @@ -1885,6 +1885,9 @@
field name=hasTable type=indicator/field
field name=description type=description/field
prim-key field=glAccountTypeId/
  +  relation type=one fk-name=GLACTTY_PAR title=Parent
  rel-entity-name=GlAccountType
  +key-map field-name=parentTypeId
  rel-field-name=glAccountTypeId/
  +  /relation
  /entity
  entity entity-name=GlAccountTypeDefault
  package-name=org.ofbiz.accounting.ledger
 
 
 



 http://www.hotwaxmedia.com




-- 
Thanks  Regards
Mridul Pathak
Hotwax Media
http://www.hotwaxmedia.com
[EMAIL PROTECTED]
__
Office  :   509.855.4113
Mobile : +919425926892


Re: svn commit: r631785 - /ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml

2008-02-28 Thread Jacopo Cappellato

Christian Geisert wrote:

I think Si isn't subscribed to this mailing list...



As a committer, Si should really be subscribed to all the OFBiz's public 
lists; I would be surprised of the contrary, but I'm copying this 
message to Si so that he can subscribe if he is not.



Anyway, this change just triggered a problem in the demo data which
I noticed by coincidence yesterday while looking at the
AccountingTypeData.xml ;-)


The data loading issue should be fixed in rev. 631906

Pankaj, Christian, thanks for your help.

Jacopo




A fix for this is either to add a GlAccountType EXPENSE or remove
the parentTypeId from PURCHASE_PRICE_VAR
(For example OTHER_EXPENSE has no parent EXPENSE)

I'm not sure which is better...

Christian






Si,
Problems have been encountered while loading data due to this code.

(ERROR: insert or update on table gl_account_type violates foreign key
constraint glactty_par
 Detail: Key (parent_type_id)=(EXPENSE) is not present in table
gl_account_type.)). Rolling back transaction.

Regards,
Pankaj Savita



Re: all language properties files converted.

2008-02-28 Thread Jacques Le Roux

Great !

Si I will remove -Duser.language=en from startofbiz.* 


Jacques

From: Jacopo Cappellato [EMAIL PROTECTED]

Hans Bakker wrote:

Please note that all language properties files are now converted to the
XML format and that the Thai language was added. I like to thank the
Maejo university (www.mju.ac.th) and specially the students Mike and
Kookai for this big effort.


Awesome! Thanks guys.
Hans, would you mind adding a note about this in the new feature page?

Jacopo




all language properties files converted.

2008-02-28 Thread Hans Bakker
Please note that all language properties files are now converted to the
XML format and that the Thai language was added. I like to thank the
Maejo university (www.mju.ac.th) and specially the students Mike and
Kookai for this big effort.
-- 
AntWebsystems.com: Quality OFBiz services for competitive rates.



Re: DefaultMessages.xml issue

2008-02-28 Thread Mridul Pathak




Hi, currently I am getting following error while running any service in
OFBiz:
Error running the simple-method: Error in simple-method operation []:
java.lang.IllegalArgumentException: Could not find resource bundle
[DefaultMessages] in the locale [en_US]
null

Another log from consol:
2008-02-28 14:20:45,140 (http-0.0.0.0-8443-Processor3) [
ServiceDispatcher.java:513:ERROR] Error in Service
[createPersonAndUserLogin]: Error running the simple-method: Error in
simple-method operation [call-service/]:
java.lang.IllegalArgumentException: Could not find resource bundle
[DefaultMessages] in the locale [en_US]br/null

 
--
Thanks  Regards

Mridul Pathak
Team Lead
HotWax Media Inc.
http://www.hotwaxmedia.com
[EMAIL PROTECTED]
_
Office : 509.855.4113
Mobile : +919425926892



Jacques Le Roux wrote:
Hi Chris,
  
  
I take advantage of your mail to ask about the old OFBiz wiki. I know
we can find some pieces of informations here
http://web.archive.org/web/20070811060319/http://ofbizwiki.go-integral.com/
but there is not all and find is not working.
  
Could it be possible to have a copy of the last version ? I would like
to put it on a box I have.
  
  
Thanks
  
  
Jacques
  
  
From: "Chris Juettner" [EMAIL PROTECTED]
  
  I believe DefaultMessages.properties file for
English locale had prefixes and suffixes set to empty strings.

The new DefaultMessages.xml file have the values set to "prefix" and
"suffix".


Can someone explain why these are set this way?


I now have messages on the rendered screens displaying:

prefixprefixThe action was performed successfully.suffixsuffix


Chris Juettner

Integral Business Solutions


  
  





Re: svn commit: r631330 - in /ofbiz/trunk/applications/order/webapp/ordermgr: WEB-INF/actions/quote/ManageQuotePrices.bsh WEB-INF/actions/quote/ViewQuoteProfit.bsh quote/ViewQuoteItemInfo.ftl

2008-02-28 Thread Christian Geisert

[EMAIL PROTECTED] schrieb:

Hi Christian,

you are right but the bug is not into ManageQuotePrices.bsh but only in 
ViewQuoteItemInfo.ftl.
In ManageQuotePrices.bsh there is a check that set the selectedAmount to 1 if 
it's null or equal to 0.


Looks like a picked the wrong source ...I just did a quick test with 
ViewQuote.




I have fix the issue on the ViewQuoteItemInfo.ftl into rev. 631668.


Confirmed ;-)

--
Christian



[jira] Updated: (OFBIZ-1675) JUnit Test case for Receive Inventory.

2008-02-28 Thread Pankaj Savita (JIRA)

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

Pankaj Savita updated OFBIZ-1675:
-

Attachment: (was: JUnit_receiveInv.patch)

 JUnit Test case for Receive Inventory.
 --

 Key: OFBIZ-1675
 URL: https://issues.apache.org/jira/browse/OFBIZ-1675
 Project: OFBiz
  Issue Type: Sub-task
Reporter: Sumit Pandit
 Attachments: JUnit_receiveInv.patch




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



[jira] Created: (OFBIZ-1686) Data model changed for SFA component.

2008-02-28 Thread JyotsnaRathore (JIRA)
Data model changed for SFA component.
-

 Key: OFBIZ-1686
 URL: https://issues.apache.org/jira/browse/OFBIZ-1686
 Project: OFBiz
  Issue Type: New Feature
Reporter: JyotsnaRathore


Data model changes for SFA component.

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



[jira] Updated: (OFBIZ-1675) JUnit Test case for Receive Inventory.

2008-02-28 Thread Pankaj Savita (JIRA)

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

Pankaj Savita updated OFBIZ-1675:
-

Attachment: JUnit_receiveInv.patch

Test case runs successfully for the Non Serialized Inventory Item  as no 
Serialized Inventory Item present in demo data, won't run for it (Code has been 
commented for the serialized case). 
Need to create demo/test data for serialized inventory item.


 JUnit Test case for Receive Inventory.
 --

 Key: OFBIZ-1675
 URL: https://issues.apache.org/jira/browse/OFBIZ-1675
 Project: OFBiz
  Issue Type: Sub-task
Reporter: Sumit Pandit
 Attachments: JUnit_receiveInv.patch, JUnit_receiveInv.patch




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



[jira] Updated: (OFBIZ-1651) Add a Profile Block for listing Tasks

2008-02-28 Thread Shubham Goyal (JIRA)

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

Shubham Goyal updated OFBIZ-1651:
-

Attachment: party_profile.patch

Attached patch here. Now Party Profile page divided into two columns and My 
tasks page of the WorkEffort App also linked from Party Profile page.


 Add a Profile Block for listing Tasks
 -

 Key: OFBIZ-1651
 URL: https://issues.apache.org/jira/browse/OFBIZ-1651
 Project: OFBiz
  Issue Type: New Feature
  Components: party
Reporter: Anil K Patel
Assignee: Vikas Mayur
Priority: Minor
 Attachments: party_profile.patch


 Add a Profile block in the Party Profile in the Party manager. This block 
 should list most recent 5 Tasks by Priority and due date.  Provide a Quick 
 Create Task button that Opens a In Place form for creating Task.

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



[jira] Updated: (OFBIZ-1686) Data model changed for SFA component.

2008-02-28 Thread JyotsnaRathore (JIRA)

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

JyotsnaRathore updated OFBIZ-1686:
--

Attachment: sfaEntityChg.patch

data model changed for new component SFA

 Data model changed for SFA component.
 -

 Key: OFBIZ-1686
 URL: https://issues.apache.org/jira/browse/OFBIZ-1686
 Project: OFBiz
  Issue Type: New Feature
Reporter: JyotsnaRathore
 Attachments: sfaEntityChg.patch


 Data model changes for SFA component.

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



RE: DefaultMessages.xml issue

2008-02-28 Thread Chris Juettner
I applied the update and now my application is also throwing an exception:
 
*   Error running the simple-method: Error in simple-method operation []: 
java.lang.RuntimeException: Error in simple-method operation []: 
java.lang.RuntimeException: Error in simple-method operation []: 
java.lang.IllegalArgumentException: Could not find resource bundle 
[DefaultMessages] in the locale [en_US]
null 



From: Mridul Pathak [mailto:[EMAIL PROTECTED]
Sent: Thu 2/28/2008 6:06 AM
To: dev@ofbiz.apache.org
Subject: Re: DefaultMessages.xml issue



Hi, currently I am getting following error while running any service in OFBiz:


Error running the simple-method: Error in simple-method operation []: 
java.lang.IllegalArgumentException: Could not find resource bundle 
[DefaultMessages] in the locale [en_US]
null


Another log from consol:
2008-02-28 14:20:45,140 (http-0.0.0.0-8443-Processor3) [  
ServiceDispatcher.java:513:ERROR] Error in Service [createPersonAndUserLogin]: 
Error running the simple-method: Error in simple-method operation 
[call-service/]: java.lang.IllegalArgumentException: Could not find resource 
bundle [DefaultMessages] in the locale [en_US]br/null


 

--
Thanks  Regards

Mridul Pathak
Team Lead
HotWax Media Inc.
http://www.hotwaxmedia.com http://www.hotwaxmedia.com/ 
[EMAIL PROTECTED]
_
Office : 509.855.4113
Mobile : +919425926892


Jacques Le Roux wrote: 

Hi Chris, 

I take advantage of your mail to ask about the old OFBiz wiki. I know 
we can find some pieces of informations here 
http://web.archive.org/web/20070811060319/http://ofbizwiki.go-integral.com/ but 
there is not all and find is not working. 
Could it be possible to have a copy of the last version ? I would like 
to put it on a box I have. 

Thanks 

Jacques 

From: Chris Juettner [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  


I believe DefaultMessages.properties file for English locale 
had prefixes and suffixes set to empty strings. 
The new DefaultMessages.xml file have the values set to 
prefix and suffix. 

Can someone explain why these are set this way? 

I now have messages on the rendered screens displaying: 
prefixprefixThe action was performed successfully.suffixsuffix 

Chris Juettner 
Integral Business Solutions 






[jira] Updated: (OFBIZ-1686) Data model changed for SFA component.

2008-02-28 Thread JyotsnaRathore (JIRA)

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

JyotsnaRathore updated OFBIZ-1686:
--

Attachment: sfaEntityChg.patch

updated patch

 Data model changed for SFA component.
 -

 Key: OFBIZ-1686
 URL: https://issues.apache.org/jira/browse/OFBIZ-1686
 Project: OFBiz
  Issue Type: New Feature
Reporter: JyotsnaRathore
 Attachments: sfaEntityChg.patch, sfaEntityChg.patch


 Data model changes for SFA component.

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



Re: DefaultMessages.xml issue

2008-02-28 Thread Adrian Crum

I'll take a look at this.

-Adrian

Chris Juettner wrote:

I applied the update and now my application is also throwing an exception:
 
*	Error running the simple-method: Error in simple-method operation []: java.lang.RuntimeException: Error in simple-method operation []: java.lang.RuntimeException: Error in simple-method operation []: java.lang.IllegalArgumentException: Could not find resource bundle [DefaultMessages] in the locale [en_US]
null 




From: Mridul Pathak [mailto:[EMAIL PROTECTED]
Sent: Thu 2/28/2008 6:06 AM
To: dev@ofbiz.apache.org
Subject: Re: DefaultMessages.xml issue



Hi, currently I am getting following error while running any service in OFBiz:


Error running the simple-method: Error in simple-method operation []: 
java.lang.IllegalArgumentException: Could not find resource bundle 
[DefaultMessages] in the locale [en_US]
null


Another log from consol:
2008-02-28 14:20:45,140 (http-0.0.0.0-8443-Processor3) [  ServiceDispatcher.java:513:ERROR] 
Error in Service [createPersonAndUserLogin]: Error running the simple-method: Error in 
simple-method operation [call-service/]: java.lang.IllegalArgumentException: Could 
not find resource bundle [DefaultMessages] in the locale [en_US]br/null


 


--
Thanks  Regards

Mridul Pathak
Team Lead
HotWax Media Inc.
http://www.hotwaxmedia.com http://www.hotwaxmedia.com/ 
[EMAIL PROTECTED]

_
Office : 509.855.4113
Mobile : +919425926892


Jacques Le Roux wrote: 

	Hi Chris, 
	
	I take advantage of your mail to ask about the old OFBiz wiki. I know we can find some pieces of informations here http://web.archive.org/web/20070811060319/http://ofbizwiki.go-integral.com/ but there is not all and find is not working. 
	Could it be possible to have a copy of the last version ? I would like to put it on a box I have. 
	
	Thanks 
	
	Jacques 
	
	From: Chris Juettner [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  
	


		I believe DefaultMessages.properties file for English locale had prefixes and suffixes set to empty strings. 
		The new DefaultMessages.xml file have the values set to prefix and suffix. 
		
		Can someone explain why these are set this way? 
		
		I now have messages on the rendered screens displaying: 
		prefixprefixThe action was performed successfully.suffixsuffix 
		
		Chris Juettner 
		Integral Business Solutions 
		






[jira] Assigned: (OFBIZ-1686) Data model changed for SFA component.

2008-02-28 Thread Vikas Mayur (JIRA)

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

Vikas Mayur reassigned OFBIZ-1686:
--

Assignee: Vikas Mayur

 Data model changed for SFA component.
 -

 Key: OFBIZ-1686
 URL: https://issues.apache.org/jira/browse/OFBIZ-1686
 Project: OFBiz
  Issue Type: New Feature
Reporter: JyotsnaRathore
Assignee: Vikas Mayur
 Attachments: sfaEntityChg.patch, sfaEntityChg.patch


 Data model changes for SFA component.

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



[jira] Commented: (OFBIZ-1674) POS: credit card data compliance

2008-02-28 Thread Chris Lombardi (JIRA)

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

Chris Lombardi commented on OFBIZ-1674:
---

AVS (zip code only) is also be required.  Is anyone aware of international 
address validation service requirements?  I.e. is there an analogous service 
that requires a postal code?
 

 POS: credit card data compliance
 

 Key: OFBIZ-1674
 URL: https://issues.apache.org/jira/browse/OFBIZ-1674
 Project: OFBiz
  Issue Type: New Feature
  Components: specialpurpose/pos
Reporter: Chris Lombardi
Assignee: Jacques Le Roux
Priority: Minor

 I would like to see the POS have mastercard/visa compliance for basic card 
 present transactions.
 Here's the current list of issues:
 Present indicator exists, but is not set by POS.  Does anyone use the POS for 
 card not present (MOTO) transactions?
 Card Swiped indicator does not exist, should be added.
 track2 data should be added and have scope similar to cvv2, transmitted for 
 auth, then deleted.
 cvv2 data should be requested on manual (keyed) card entry, transmitted for 
 auth, then deleted.
  

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



[jira] Created: (OFBIZ-1687) POS: full credit card number is printed on receipt

2008-02-28 Thread Chris Lombardi (JIRA)
POS: full credit card number is printed on receipt
--

 Key: OFBIZ-1687
 URL: https://issues.apache.org/jira/browse/OFBIZ-1687
 Project: OFBiz
  Issue Type: Improvement
  Components: specialpurpose/pos
Affects Versions: SVN trunk
Reporter: Chris Lombardi
Priority: Minor


Card processing guidelines allow only the last 4 digits of a card number to be 
printed on a receipt.  The rest should be replaced with asterisk or 'x' 
characters.


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



Re: svn commit: r632034 - in /ofbiz/trunk/applications: accounting/entitydef/ marketing/entitydef/ order/entitydef/ party/data/ party/entitydef/ workeffort/entitydef/

2008-02-28 Thread David E Jones


These look good based on my limited memory of the analysis I did on  
this way back when. Thanks for your work on these Vikas, Jyotsna, and  
Saurabh.


A few of the types need some fixing up, including:

tickerSymbol should be very-short instead of id-ne
numSent should be numeric
expectedResponsePercent should be floating-point

-David


On Feb 28, 2008, at 8:56 AM, [EMAIL PROTECTED] wrote:


Author: mor
Date: Thu Feb 28 07:55:59 2008
New Revision: 632034

URL: http://svn.apache.org/viewvc?rev=632034view=rev
Log:
Applied patch from Jira Issue OFBIZ-1686 (https://issues.apache.org/jira/browse/OFBIZ-1686 
)
Added new Entity definations for SalesOpportunityTrackingCode,  
SalesOpportunityCompetitor

with modifications to other entities for SFA component

Thanks to Jyotsna Rathore, Saurabh Nayak for the patch.

Modified:
   ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml
   ofbiz/trunk/applications/marketing/entitydef/entitymodel.xml
   ofbiz/trunk/applications/order/entitydef/entitygroup.xml
   ofbiz/trunk/applications/order/entitydef/entitymodel.xml
   ofbiz/trunk/applications/party/data/PartyTypeData.xml
   ofbiz/trunk/applications/party/entitydef/entitymodel.xml
   ofbiz/trunk/applications/workeffort/entitydef/entitymodel.xml

Modified: ofbiz/trunk/applications/accounting/entitydef/ 
entitymodel.xml

URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml?rev=632034r1=632033r2=632034view=diff
= 
= 
= 
= 
= 
= 
= 
= 
==
--- ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml  
(original)
+++ ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml  
Thu Feb 28 07:55:59 2008

@@ -1121,6 +1121,7 @@
  field name=taxAuthPartyId type=id-ne/
  field name=taxAuthGeoId type=id-ne/
  field name=taxAuthorityRateSeqId type=id-ne/field
+  field name=salesOpportunityId type=id-ne/field
  prim-key field=invoiceId/
  prim-key field=invoiceItemSeqId/
  relation type=one fk-name=INVOICE_ITMITYP rel-entity- 
name=InvoiceItemType

@@ -1166,6 +1167,9 @@
  /relation
  relation type=one fk-name=INVCE_ITM_OVRPTY  
title=OverrideOrg rel-entity-name=Party
key-map field-name=overrideOrgPartyId rel-field- 
name=partyId/

+  /relation
+  relation type=one fk-name=INVCE_ITM_SLSOPP rel-entity- 
name=SalesOpportunity 

+key-map field-name=salesOpportunityId/
  /relation
/entity
entity entity-name=InvoiceItemAttribute

Modified: ofbiz/trunk/applications/marketing/entitydef/entitymodel.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/marketing/entitydef/entitymodel.xml?rev=632034r1=632033r2=632034view=diff
= 
= 
= 
= 
= 
= 
= 
= 
==
--- ofbiz/trunk/applications/marketing/entitydef/entitymodel.xml  
(original)
+++ ofbiz/trunk/applications/marketing/entitydef/entitymodel.xml Thu  
Feb 28 07:55:59 2008

@@ -57,6 +57,14 @@
  field name=currencyUomId type=id-ne/field
  field name=fromDate type=date-time/field
  field name=thruDate type=date-time/field
+  field name=isActive type=indicator/field
+  field name=convertedLeads type=id-ne/field
+  field name=expectedResponsePercent type=id-ne/field
+  field name=expectedRevenue type=currency-amount/field
+  field name=numSent type=id-ne/field
+   field name=startDate type=date-time/field
+  field name=createdByUserLogin type=id-vlong/field
+  field name=lastModifiedByUserLogin type=id-vlong/field
  prim-key field=marketingCampaignId/
  relation type=one fk-name=MKTGCPN_PRNT title=Parent rel- 
entity-name=MarketingCampaign
key-map field-name=parentCampaignId rel-field- 
name=marketingCampaignId/


Modified: ofbiz/trunk/applications/order/entitydef/entitygroup.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/entitydef/entitygroup.xml?rev=632034r1=632033r2=632034view=diff
= 
= 
= 
= 
= 
= 
= 
= 
==
--- ofbiz/trunk/applications/order/entitydef/entitygroup.xml  
(original)
+++ ofbiz/trunk/applications/order/entitydef/entitygroup.xml Thu Feb  
28 07:55:59 2008

@@ -198,11 +198,13 @@
!-- = --

entity-group group=org.ofbiz entity=SalesOpportunity /
+entity-group group=org.ofbiz  
entity=SalesOpportunityCompetitor /
entity-group group=org.ofbiz  
entity=SalesOpportunityHistory /

entity-group group=org.ofbiz entity=SalesOpportunityRole /
entity-group group=org.ofbiz entity=SalesOpportunityStage /
entity-group group=org.ofbiz  
entity=SalesOpportunityWorkEffort /

entity-group group=org.ofbiz entity=SalesOpportunityQuote /
+entity-group group=org.ofbiz  
entity=SalesOpportunityTrackingCode /

entity-group group=org.ofbiz entity=SalesForecast /
entity-group 

Re: svn commit: r631895 - in /ofbiz/trunk/applications/product: src/org/ofbiz/product/test/InventoryItemTransferTest.java testdef/FacilityTest.xml

2008-02-28 Thread Christian Geisert

[EMAIL PROTECTED] schrieb:

Author: mor
Date: Thu Feb 28 00:58:54 2008
New Revision: 631895

URL: http://svn.apache.org/viewvc?rev=631895view=rev
Log:
Test case for Inventory Item Transfer
Applied patch from Jira issue OFBIZ-1471 
(https://issues.apache.org/jira/browse/OFBIZ-1471)
With modification to the class name.
Thanks to Ratnesh Upadhyay for testing and posting a improved patch 


Added:

ofbiz/trunk/applications/product/src/org/ofbiz/product/test/InventoryItemTransferTest.java


Vikas (and of course all aother committers ;-),
please make sure that you are setting the svn properties (like 
svn:eol-style) when adding a new file. See http://docs.ofbiz.org/x/mgM 
for details.


--
Christian



[jira] Assigned: (OFBIZ-1647) Logged in party is not able to update its own status (disable his profile)

2008-02-28 Thread Ashish Vijaywargiya (JIRA)

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

Ashish Vijaywargiya reassigned OFBIZ-1647:
--

Assignee: Ashish Vijaywargiya

 Logged in party is not able to update its own status (disable his profile)
 --

 Key: OFBIZ-1647
 URL: https://issues.apache.org/jira/browse/OFBIZ-1647
 Project: OFBiz
  Issue Type: Bug
  Components: party
Affects Versions: SVN trunk
Reporter: Mridul Pathak
Assignee: Ashish Vijaywargiya
Priority: Trivial
 Fix For: SVN trunk

 Attachments: partyStatusPermissionCheck_refactored_15-02-08.patch


 A logged in user was not able to disable/delete his own profile.
 partyStatusPermissionCheck does not allow a logged in user to update its 
 own status from enabled to disabled.

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



[jira] Closed: (OFBIZ-1647) Logged in party is not able to update its own status (disable his profile)

2008-02-28 Thread Ashish Vijaywargiya (JIRA)

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

Ashish Vijaywargiya closed OFBIZ-1647.
--

Resolution: Fixed

Thanks Mridul.
Your patch is in rev # 628079.

Sorry, somehow I missed to close this issue when I committed the code.

--
Ashish

 Logged in party is not able to update its own status (disable his profile)
 --

 Key: OFBIZ-1647
 URL: https://issues.apache.org/jira/browse/OFBIZ-1647
 Project: OFBiz
  Issue Type: Bug
  Components: party
Affects Versions: SVN trunk
Reporter: Mridul Pathak
Assignee: Ashish Vijaywargiya
Priority: Trivial
 Fix For: SVN trunk

 Attachments: partyStatusPermissionCheck_refactored_15-02-08.patch


 A logged in user was not able to disable/delete his own profile.
 partyStatusPermissionCheck does not allow a logged in user to update its 
 own status from enabled to disabled.

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



[jira] Commented: (OFBIZ-1462) One Page Checkout Process implemented in ecommerce

2008-02-28 Thread Anurag Meshram (JIRA)

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

Anurag Meshram commented on OFBIZ-1462:
---

Yes Vikas, We will see a new button in login page of checkout process (i.e 
please see login.ftl in the above patch ). By the help of this button we can 
select one page checkout and after click on these button we will be forwarded 
to the one page checkout page.

 One Page Checkout Process implemented in ecommerce
 --

 Key: OFBIZ-1462
 URL: https://issues.apache.org/jira/browse/OFBIZ-1462
 Project: OFBiz
  Issue Type: New Feature
  Components: ecommerce
Reporter: Pankaj Savita
Assignee: Vikas Mayur
Priority: Minor
 Attachments: Ecommerce_OnePage_CheckoutProcess.patch


 Here it is, the One Page Checkout Process implemented in ecommerce.
 The work remained in this: 
 1) Processing Gift Card , PO number.  also
 2) Some UI related work.
 Done By :
 Anurag Meshram (Team Leader)
 Pankaj Savita (Team Member)
 UI design is based on Original work by   Ryan Foster [EMAIL PROTECTED]

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



Re: svn commit: r631937 - in /ofbiz/trunk: startofbiz.bat startofbiz.sh

2008-02-28 Thread Jacques Le Roux

Hi Si,

It has been solved in r429249 by David without using this parameter.
It was effectively related to old Jira  OFBIZ-136 you reported and where you 
suggested to use this parameter + -Duser.region=US.
Note that this last parameter was not used in startofbiz.*.  This because this parameter was solely introduced in r452792 by 
Jacopo, following a suggestion I made in old Jira OFBIZ-877.


Fisheye can't be used here because it was pre-Apache changes 
http://fisheye6.cenqua.com/browse/ofbiz/trunk/startofbiz.bat


Jacques


Jacques,

This was put there because there were numerical parsing problems in minilang, 
which I don't think have been solved yet.

- Forwarded Message 
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, February 28, 2008 4:10:44 AM
Subject: svn commit: r631937 - in /ofbiz/trunk: startofbiz.bat startofbiz.sh

Author:
jleroux
Date:
Thu
Feb
28
04:10:22
2008
New
Revision:
631937

URL:
http://svn.apache.org/viewvc?rev=631937view=rev
Log:
-Duser.language=en
is
no
longer
needed
since
all
language
properties
files
have
been
converted
to
XML
files.

Modified:


ofbiz/trunk/startofbiz.bat


ofbiz/trunk/startofbiz.sh

Modified:
ofbiz/trunk/startofbiz.bat
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/startofbiz.bat?rev=631937r1=631936r2=631937view=diff
==
--- 
ofbiz/trunk/startofbiz.bat

(original)
+++
ofbiz/trunk/startofbiz.bat
Thu
Feb
28
04:10:22
2008
@@
-19,7
+19,7
@@

REM
#

ECHO
ON

-%JAVA_HOME%\bin\java
-Xms256M
-Xmx512M
-Duser.language=en
-jar
ofbiz.jar



runtime\logs\console.log
+%JAVA_HOME%\bin\java
-Xms256M
-Xmx512M
-jar
ofbiz.jar



runtime\logs\console.log


REM
This
one
is
for
more
of
a
debugging
mode
-REM
%JAVA_HOME%\bin\java
-Xms256M
-Xmx512M
-Duser.language=en
-Xdebug
-Xnoagent
-Djava.compiler=NONE
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
-jar
ofbiz.jar



runtime\logs\console.log
+REM
%JAVA_HOME%\bin\java
-Xms256M
-Xmx512M
-Xdebug
-Xnoagent
-Djava.compiler=NONE
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
-jar
ofbiz.jar



runtime\logs\console.log

Modified:
ofbiz/trunk/startofbiz.sh
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/startofbiz.sh?rev=631937r1=631936r2=631937view=diff
==
--- 
ofbiz/trunk/startofbiz.sh

(original)
+++
ofbiz/trunk/startofbiz.sh
Thu
Feb
28
04:10:22
2008
@@
-35,8
+35,7
@@

#IPADDR=`/sbin/ifconfig
eth0
|
grep
'inet
addr:'
|
cut
-d:
-f2
|
awk
'{
print
$1}'`

#RMIIF=-Djava.rmi.server.hostname=$IPADDR

MEMIF=-Xms128M
-Xmx256M
-LANGUAGE=-Duser.language=en
-VMARGS=$MEMIF
$DEBUG
$RMIIF
$ADMIN
$LANGUAGE
+VMARGS=$MEMIF
$DEBUG
$RMIIF
$ADMIN


#
Worldpay
Config

#VMARGS=-Xbootclasspath/p:applications/accounting/lib/cryptix.jar
$VMARGS








 

Looking for last minute shopping deals?
Find them fast with Yahoo! Search.  http://tools.search.yahoo.com/newsearch/category.php?category=shopping 




[jira] Assigned: (OFBIZ-1687) POS: full credit card number is printed on receipt

2008-02-28 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux reassigned OFBIZ-1687:
--

Assignee: Jacques Le Roux

 POS: full credit card number is printed on receipt
 --

 Key: OFBIZ-1687
 URL: https://issues.apache.org/jira/browse/OFBIZ-1687
 Project: OFBiz
  Issue Type: Improvement
  Components: specialpurpose/pos
Affects Versions: SVN trunk
Reporter: Chris Lombardi
Assignee: Jacques Le Roux
Priority: Minor

 Card processing guidelines allow only the last 4 digits of a card number to 
 be printed on a receipt.  The rest should be replaced with asterisk or 'x' 
 characters.

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



Re: DefaultMessages.xml issue

2008-02-28 Thread Adrian Crum

I committed a temporary fix in rev 632083. See my comment in the commit log.

-Adrian

Chris Juettner wrote:

I applied the update and now my application is also throwing an exception:
 
*	Error running the simple-method: Error in simple-method operation []: java.lang.RuntimeException: Error in simple-method operation []: java.lang.RuntimeException: Error in simple-method operation []: java.lang.IllegalArgumentException: Could not find resource bundle [DefaultMessages] in the locale [en_US]
null 




From: Mridul Pathak [mailto:[EMAIL PROTECTED]
Sent: Thu 2/28/2008 6:06 AM
To: dev@ofbiz.apache.org
Subject: Re: DefaultMessages.xml issue



Hi, currently I am getting following error while running any service in OFBiz:


Error running the simple-method: Error in simple-method operation []: 
java.lang.IllegalArgumentException: Could not find resource bundle 
[DefaultMessages] in the locale [en_US]
null


Another log from consol:
2008-02-28 14:20:45,140 (http-0.0.0.0-8443-Processor3) [  ServiceDispatcher.java:513:ERROR] 
Error in Service [createPersonAndUserLogin]: Error running the simple-method: Error in 
simple-method operation [call-service/]: java.lang.IllegalArgumentException: Could 
not find resource bundle [DefaultMessages] in the locale [en_US]br/null


 


--
Thanks  Regards

Mridul Pathak
Team Lead
HotWax Media Inc.
http://www.hotwaxmedia.com http://www.hotwaxmedia.com/ 
[EMAIL PROTECTED]

_
Office : 509.855.4113
Mobile : +919425926892


Jacques Le Roux wrote: 

	Hi Chris, 
	
	I take advantage of your mail to ask about the old OFBiz wiki. I know we can find some pieces of informations here http://web.archive.org/web/20070811060319/http://ofbizwiki.go-integral.com/ but there is not all and find is not working. 
	Could it be possible to have a copy of the last version ? I would like to put it on a box I have. 
	
	Thanks 
	
	Jacques 
	
	From: Chris Juettner [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  
	


		I believe DefaultMessages.properties file for English locale had prefixes and suffixes set to empty strings. 
		The new DefaultMessages.xml file have the values set to prefix and suffix. 
		
		Can someone explain why these are set this way? 
		
		I now have messages on the rendered screens displaying: 
		prefixprefixThe action was performed successfully.suffixsuffix 
		
		Chris Juettner 
		Integral Business Solutions 
		






[jira] Commented: (OFBIZ-1687) POS: full credit card number is printed on receipt

2008-02-28 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux commented on OFBIZ-1687:


Hi Chris,

Have you a patch for this (before I look at it, seems simple) ?

 POS: full credit card number is printed on receipt
 --

 Key: OFBIZ-1687
 URL: https://issues.apache.org/jira/browse/OFBIZ-1687
 Project: OFBiz
  Issue Type: Improvement
  Components: specialpurpose/pos
Affects Versions: SVN trunk
Reporter: Chris Lombardi
Assignee: Jacques Le Roux
Priority: Minor

 Card processing guidelines allow only the last 4 digits of a card number to 
 be printed on a receipt.  The rest should be replaced with asterisk or 'x' 
 characters.

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



Re: [jira] Commented: (OFBIZ-1687) POS: full credit card number is printed on receipt

2008-02-28 Thread Vince M. Clark
Scott did this for us a few months ago. Scott, feel free to commit to trunk. 

- Original Message - 
From: Jacques Le Roux (JIRA) [EMAIL PROTECTED] 
To: dev@ofbiz.apache.org 
Sent: Thursday, February 28, 2008 12:49:51 PM (GMT-0700) America/Denver 
Subject: [jira] Commented: (OFBIZ-1687) POS: full credit card number is printed 
on receipt 


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

Jacques Le Roux commented on OFBIZ-1687: 
 

Hi Chris, 

Have you a patch for this (before I look at it, seems simple) ? 

 POS: full credit card number is printed on receipt 
 -- 
 
 Key: OFBIZ-1687 
 URL: https://issues.apache.org/jira/browse/OFBIZ-1687 
 Project: OFBiz 
 Issue Type: Improvement 
 Components: specialpurpose/pos 
 Affects Versions: SVN trunk 
 Reporter: Chris Lombardi 
 Assignee: Jacques Le Roux 
 Priority: Minor 
 
 Card processing guidelines allow only the last 4 digits of a card number to 
 be printed on a receipt. The rest should be replaced with asterisk or 'x' 
 characters. 

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



Re: Question about ofbiz url encoding

2008-02-28 Thread Bilgin Ibryam

Any comments here?

If i am right, fixing this issue is easy. Only have to change the default
values in widget xsd files.

-- 
View this message in context: 
http://www.nabble.com/Question-about-ofbiz-url-encoding-tp15638660p15746918.html
Sent from the OFBiz - Dev mailing list archive at Nabble.com.



Re: [jira] Commented: (OFBIZ-1687) POS: full credit card number is printed on receipt

2008-02-28 Thread Jacques Le Roux

Thanks Vince,

Jacques

From: Vince M. Clark [EMAIL PROTECTED]

Scott did this for us a few months ago. Scott, feel free to commit to trunk.

- Original Message - 
From: Jacques Le Roux (JIRA) [EMAIL PROTECTED]

To: dev@ofbiz.apache.org
Sent: Thursday, February 28, 2008 12:49:51 PM (GMT-0700) America/Denver
Subject: [jira] Commented: (OFBIZ-1687) POS: full credit card number is printed 
on receipt


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


Jacques Le Roux commented on OFBIZ-1687:
 


Hi Chris,

Have you a patch for this (before I look at it, seems simple) ?


POS: full credit card number is printed on receipt
-- 


Key: OFBIZ-1687
URL: https://issues.apache.org/jira/browse/OFBIZ-1687
Project: OFBiz
Issue Type: Improvement
Components: specialpurpose/pos
Affects Versions: SVN trunk
Reporter: Chris Lombardi
Assignee: Jacques Le Roux
Priority: Minor

Card processing guidelines allow only the last 4 digits of a card number to be printed on a receipt. The rest should be replaced 
with asterisk or 'x' characters.


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






[jira] Commented: (OFBIZ-1687) POS: full credit card number is printed on receipt

2008-02-28 Thread Chris Lombardi (JIRA)

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

Chris Lombardi commented on OFBIZ-1687:
---

I haven't looked at it yet, I was reading through the interchange guidelines 
today (dry reading that) and wanted to record this before I forgot.

If you take a look at it before I do (probably after I finish up the other cc 
related issue), please put the function somewhere reusable as I'd also like to 
mask the credit card numbers printed in cleartext in the logs.



 POS: full credit card number is printed on receipt
 --

 Key: OFBIZ-1687
 URL: https://issues.apache.org/jira/browse/OFBIZ-1687
 Project: OFBiz
  Issue Type: Improvement
  Components: specialpurpose/pos
Affects Versions: SVN trunk
Reporter: Chris Lombardi
Assignee: Jacques Le Roux
Priority: Minor

 Card processing guidelines allow only the last 4 digits of a card number to 
 be printed on a receipt.  The rest should be replaced with asterisk or 'x' 
 characters.

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



[jira] Issue Comment Edited: (OFBIZ-1687) POS: full credit card number is printed on receipt

2008-02-28 Thread Chris Lombardi (JIRA)

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

clearchris edited comment on OFBIZ-1687 at 2/28/08 4:56 PM:


I haven't looked at it yet, I was reading through the interchange guidelines 
today (dry reading that) and wanted to record this before I forgot.

If you take a look at it before I do (probably after I finish up the other cc 
related issue), please put the function somewhere reusable as I'd also like to 
mask the credit card numbers printed in cleartext in the logs.

EDIT:  saw this on the mailing list, attaching to issue.

From:   Vince M. Clark ([EMAIL PROTECTED])
Sent: Thu 2/28/08 2:13 PM
To: dev@ofbiz.apache.org

Scott did this for us a few months ago. Scott, feel free to commit to trunk. 

  was (Author: clearchris):
I haven't looked at it yet, I was reading through the interchange 
guidelines today (dry reading that) and wanted to record this before I forgot.

If you take a look at it before I do (probably after I finish up the other cc 
related issue), please put the function somewhere reusable as I'd also like to 
mask the credit card numbers printed in cleartext in the logs.


  
 POS: full credit card number is printed on receipt
 --

 Key: OFBIZ-1687
 URL: https://issues.apache.org/jira/browse/OFBIZ-1687
 Project: OFBiz
  Issue Type: Improvement
  Components: specialpurpose/pos
Affects Versions: SVN trunk
Reporter: Chris Lombardi
Assignee: Jacques Le Roux
Priority: Minor

 Card processing guidelines allow only the last 4 digits of a card number to 
 be printed on a receipt.  The rest should be replaced with asterisk or 'x' 
 characters.

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



[jira] Updated: (OFBIZ-1668) Add Application level menu/tools for AP

2008-02-28 Thread Sumit Pandit (JIRA)

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

Sumit Pandit updated OFBIZ-1668:


Attachment: AP_webapp.patch

Here is the patch which cover all points of issue.

 Add Application level menu/tools for AP
 ---

 Key: OFBIZ-1668
 URL: https://issues.apache.org/jira/browse/OFBIZ-1668
 Project: OFBiz
  Issue Type: Improvement
  Components: accounting
Reporter: Anil K Patel
Priority: Minor
 Attachments: AP_webapp.patch, AP_webapp.patch


 Assumption: Webapp for ap exists in accounting component
 Todo: Add application level menu items 
 1) Main   is a summary page that has short cuts to commonly performed user 
 actions
 2) Agreements  default's to Find Agreement screen, Also has Button for 
 [Create Agreement] 
 3) Invoices defaults to Find Invoices screen. Also has button for [Create 
 Invoice]
 4) Payments defaults to Find Payments screen. Also has button for [Create 
 Payment]
 5) Vendors defaults to Find Vendors screen. Also has button for [Create 
 Vendor]
 6) Reports has screenlets to show list of Invoices coming up doe in short 
 term.
 Menu items will link to existing artifacts in ofbiz. 

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



Re: svn commit: r632034 - in /ofbiz/trunk/applications: accounting/entitydef/ marketing/entitydef/ order/entitydef/ party/data/ party/entitydef/ workeffort/entitydef/

2008-02-28 Thread Vikas Mayur
Thanks David for reviewing this commit.
I have done your suggested changes in rev 632241.

Vikas

On Thu, Feb 28, 2008 at 9:44 PM, David E Jones 
[EMAIL PROTECTED] wrote:


 These look good based on my limited memory of the analysis I did on
 this way back when. Thanks for your work on these Vikas, Jyotsna, and
 Saurabh.

 A few of the types need some fixing up, including:

 tickerSymbol should be very-short instead of id-ne
 numSent should be numeric
 expectedResponsePercent should be floating-point

 -David


 On Feb 28, 2008, at 8:56 AM, [EMAIL PROTECTED] wrote:

  Author: mor
  Date: Thu Feb 28 07:55:59 2008
  New Revision: 632034
 
  URL: http://svn.apache.org/viewvc?rev=632034view=rev
  Log:
  Applied patch from Jira Issue OFBIZ-1686 (
 https://issues.apache.org/jira/browse/OFBIZ-1686
  )
  Added new Entity definations for SalesOpportunityTrackingCode,
  SalesOpportunityCompetitor
  with modifications to other entities for SFA component
 
  Thanks to Jyotsna Rathore, Saurabh Nayak for the patch.
 
  Modified:
 ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml
 ofbiz/trunk/applications/marketing/entitydef/entitymodel.xml
 ofbiz/trunk/applications/order/entitydef/entitygroup.xml
 ofbiz/trunk/applications/order/entitydef/entitymodel.xml
 ofbiz/trunk/applications/party/data/PartyTypeData.xml
 ofbiz/trunk/applications/party/entitydef/entitymodel.xml
 ofbiz/trunk/applications/workeffort/entitydef/entitymodel.xml
 
  Modified: ofbiz/trunk/applications/accounting/entitydef/
  entitymodel.xml
  URL:
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml?rev=632034r1=632033r2=632034view=diff
  =
  =
  =
  =
  =
  =
  =
  =
  ==
  --- ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml
  (original)
  +++ ofbiz/trunk/applications/accounting/entitydef/entitymodel.xml
  Thu Feb 28 07:55:59 2008
  @@ -1121,6 +1121,7 @@
field name=taxAuthPartyId type=id-ne/
field name=taxAuthGeoId type=id-ne/
field name=taxAuthorityRateSeqId type=id-ne/field
  +  field name=salesOpportunityId type=id-ne/field
prim-key field=invoiceId/
prim-key field=invoiceItemSeqId/
relation type=one fk-name=INVOICE_ITMITYP rel-entity-
  name=InvoiceItemType
  @@ -1166,6 +1167,9 @@
/relation
relation type=one fk-name=INVCE_ITM_OVRPTY
  title=OverrideOrg rel-entity-name=Party
  key-map field-name=overrideOrgPartyId rel-field-
  name=partyId/
  +  /relation
  +  relation type=one fk-name=INVCE_ITM_SLSOPP rel-entity-
  name=SalesOpportunity 
  +key-map field-name=salesOpportunityId/
/relation
  /entity
  entity entity-name=InvoiceItemAttribute
 
  Modified: ofbiz/trunk/applications/marketing/entitydef/entitymodel.xml
  URL:
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/marketing/entitydef/entitymodel.xml?rev=632034r1=632033r2=632034view=diff
  =
  =
  =
  =
  =
  =
  =
  =
  ==
  --- ofbiz/trunk/applications/marketing/entitydef/entitymodel.xml
  (original)
  +++ ofbiz/trunk/applications/marketing/entitydef/entitymodel.xml Thu
  Feb 28 07:55:59 2008
  @@ -57,6 +57,14 @@
field name=currencyUomId type=id-ne/field
field name=fromDate type=date-time/field
field name=thruDate type=date-time/field
  +  field name=isActive type=indicator/field
  +  field name=convertedLeads type=id-ne/field
  +  field name=expectedResponsePercent type=id-ne/field
  +  field name=expectedRevenue type=currency-amount/field
  +  field name=numSent type=id-ne/field
  +   field name=startDate type=date-time/field
  +  field name=createdByUserLogin type=id-vlong/field
  +  field name=lastModifiedByUserLogin type=id-vlong/field
prim-key field=marketingCampaignId/
relation type=one fk-name=MKTGCPN_PRNT title=Parent rel-
  entity-name=MarketingCampaign
  key-map field-name=parentCampaignId rel-field-
  name=marketingCampaignId/
 
  Modified: ofbiz/trunk/applications/order/entitydef/entitygroup.xml
  URL:
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/entitydef/entitygroup.xml?rev=632034r1=632033r2=632034view=diff
  =
  =
  =
  =
  =
  =
  =
  =
  ==
  --- ofbiz/trunk/applications/order/entitydef/entitygroup.xml
  (original)
  +++ ofbiz/trunk/applications/order/entitydef/entitygroup.xml Thu Feb
  28 07:55:59 2008
  @@ -198,11 +198,13 @@
  !-- = --
 
  entity-group group=org.ofbiz entity=SalesOpportunity /
  +entity-group group=org.ofbiz
  entity=SalesOpportunityCompetitor /
  entity-group group=org.ofbiz
  entity=SalesOpportunityHistory /
  entity-group group=org.ofbiz entity=SalesOpportunityRole /