[jira] Closed: (OFBIZ-84) Shortcut for all Unpaid Invoices on a BillingAccount

2007-11-30 Thread Anil K Patel (JIRA)

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

Anil K Patel closed OFBIZ-84.
-


Pankaj, thanks for you contribution, patch is in rev #599737

 Shortcut for all Unpaid Invoices on a BillingAccount
 

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


 A Shortcut to Listing Unpaid Invoices on a BillingAccount should be provided. 
  
 If somebody can help me figure out few cosmetic things like, Link Name and 
 Location, I'll do the coding and provide the 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-1447) Add lookup buttons to the search forms for accounting transactions and accounting transactions entries

2007-11-30 Thread Vikas Mayur (JIRA)

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

Vikas Mayur updated OFBIZ-1447:
---

Attachment: Add_Lookup.patch

 Add lookup buttons to the search forms for accounting transactions and 
 accounting transactions entries
 

 Key: OFBIZ-1447
 URL: https://issues.apache.org/jira/browse/OFBIZ-1447
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Affects Versions: SVN trunk
Reporter: Jacopo Cappellato
Assignee: Anil K Patel
 Attachments: Add_Lookup.patch, Add_Lookup.patch


 Add lookup buttons to the search forms for accounting transactions and 
 accounting transactions entries for payments, work efforts, invoices, 
 shipments etc...
 The two forms are in the following two screens:
 AccountingGeneral LedgerAccountingAccounting Transactions
 and
 AccountingGeneral LedgerAccountingAccounting Transactions Entries

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



[jira] Created: (OFBIZ-1459) Implement an automatic GL posting service triggered when the ownerPartyId of an inventory item is changed

2007-11-30 Thread Jacopo Cappellato (JIRA)
Implement an automatic GL posting service triggered when the ownerPartyId of an 
inventory item is changed
-

 Key: OFBIZ-1459
 URL: https://issues.apache.org/jira/browse/OFBIZ-1459
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Affects Versions: SVN trunk
Reporter: Jacopo Cappellato


The name of the service can be createAcctgTransForInventoryItemOwnerChange or 
similar.
Input field: inventoryItemId, oldOwnerPartyId
Output field: acctgTransId 

We can use the following template for this service: 
createAcctgTransForShipmentReceipt in GeneralLedgerServices.xml 

The service will do the following tasks:
1) compute the origAmount as: origAmount = inventoryItem.quantityOnHandTotal * 
inventoryItem.unitCost
2) prepare 2 AcctgTransEntry (a debit and a credit) for the oldOwnerPartyId:
CREDIT: debitCreditFlag=C, glAcctgTransTypeId=INVENTORY_XFER_IN, 
productId=InventoryItem.productId, origAmount=(the value computed in 1), 
origCurrencyUomId=InventoryItem.currencyUomId, 
organizationPartyId=oldOwnerPartyId 
DEBIT: debitCreditFlag=D, glAcctgTransTypeId=INVENTORY_ACCOUNT, 
productId=InventoryItem.productId, origAmount=(the value computed in 1), 
origCurrencyUomId=InventoryItem.currencyUomId, 
organizationPartyId=oldOwnerPartyId 

3) prepare 2 AcctgTransEntry (a debit and a credit) for the 
inventoryItem.ownerPartyId:
CREDIT: debitCreditFlag=C, glAcctgTransTypeId=INVENTORY_ACCOUNT, 
productId=InventoryItem.productId, origAmount=(the value computed in 1), 
origCurrencyUomId=InventoryItem.currencyUomId, 
organizationPartyId=inventoryItem.ownerPartyId 
DEBIT: debitCreditFlag=D, glAcctgTransTypeId=INVENTORY_XFER_OUT, 
productId=InventoryItem.productId, origAmount=(the value computed in 1), 
origCurrencyUomId=InventoryItem.currencyUomId, 
organizationPartyId=inventoryItem.ownerPartyId

4) put the 4 entries in a list and call the createAcctgTransAndEntries service 
with the following fields: acctgTransTypeId=INVENTORY, acctgTransEntries=(the 
list with the 4 entries), inventoryItemId=parameters.inventoryItemId, 
glFiscalTypeId=ACTUAL 

The ECA will be:
eca service=updateInventoryItem event=commit
condition field-name=ownerPartyId operator=is-not-empty/
condition-field field-name=ownerPartyId operator=not-equals 
to-field-name=oldOwnerPartyId/
action service=createAcctgTransForInventoryItemOwnerChange mode=sync/
/eca

You can then test the service when you go into an Inventory Item in the 
facility, and change the ownerPartyId of an inventory item.



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



[jira] Commented: (OFBIZ-1085) Should the changes to GenericXaResource.java be merged into the release branch?

2007-11-30 Thread Jacques Le Roux (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1085?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547334
 ] 

Jacques Le Roux commented on OFBIZ-1085:


Shall we apply the last changes to release4.0 ?
http://fisheye6.cenqua.com/browse/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/transaction/GenericXaResource.java?%40viewMode=l

Thanks

 Should the changes to GenericXaResource.java be merged into the release 
 branch?
 ---

 Key: OFBIZ-1085
 URL: https://issues.apache.org/jira/browse/OFBIZ-1085
 Project: OFBiz
  Issue Type: Task
  Components: framework
Affects Versions: Release Branch 4.0
Reporter: Scott Gray
 Fix For: Release Branch 4.0


 Rev. 537059 looks like a fix which could potentially be merged into the 4.0 
 release branch but it depends on another post-release branch commit (rev. 
 536705).
 I don't know anything about this code but if it does fix something it would 
 be nice to see it merged into the 4.0 release, I'm putting this in jira so it 
 doesn't get forgotten about and hopefully at some point someone who knows 
 will take a look.
 Convenience link:
 http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/transaction/GenericXaResource.java?view=log

-- 
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-1014) Cybersource package needs to be upgrade to support the New API Field: Request Token

2007-11-30 Thread Jacques Le Roux (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1014?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547325
 ] 

jacques.le.roux edited comment on OFBIZ-1014 at 11/30/07 3:45 PM:
--

Some comments about this patch :

Indentation is not well done, please carefully read 
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Contributors+Best+Practices
There are 3 lines 
response.set(gatewayCode, refundResponse.get(refundCode));

Else I have not tested (I don' t have any Cybersource access,is it needed ?) 
but it seems well written.

  was (Author: jacques.le.roux):
Some comments about this patch :

Indentation is not well done, please carefully read 
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Contributors+Best+Practices
There are 3 lines 
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Contributors+Best+Practices

Else I have not tested (I don' t have any Cybersource access,is it needed ?) 
but it seems well written.
  
 Cybersource package needs to be upgrade to support the New API Field: Request 
 Token
 ---

 Key: OFBIZ-1014
 URL: https://issues.apache.org/jira/browse/OFBIZ-1014
 Project: OFBiz
  Issue Type: Improvement
  Components: accounting
Affects Versions: SVN trunk, Release Branch 4.0
Reporter: Rohit Sureka
 Attachments: cybersource.patch


 Cybersource has released  a New Api field 'Request Token' and has been 
 sending emails to customers to update the software.
 I believe ofbiz is affected by this and support needs to be implemented for 
 the new API token in OFBIZ.
 More on this update can be read at  
 http://www.cybersource.com/support/request_token/
 As per information on Cybersource the last date for implementing this is 31st 
 May 07.
 Thanks
 Rohit

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



[jira] Updated: (OFBIZ-1456) if order entry is interupted and session times out. the session data is lost causing errors.

2007-11-30 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux updated OFBIZ-1456:
---

 Priority: Minor  (was: Trivial)
   Issue Type: Bug  (was: Improvement)
Affects Version/s: Release Branch 4.0

OK I had a doubt, hence my question about 2 patches, now waiting to review them 
;o)

 if order entry is interupted and session times out. the session data is lost 
 causing errors.
 

 Key: OFBIZ-1456
 URL: https://issues.apache.org/jira/browse/OFBIZ-1456
 Project: OFBiz
  Issue Type: Bug
  Components: order
Affects Versions: SVN trunk, Release Branch 4.0
 Environment: Ver 4.0 rev  595239
Reporter: BJ Freeman
Assignee: Jacques Le Roux
Priority: Minor
 Attachments: error1.txt, error2.txt, ofbizlog.txt, screenshot-1.jpg


 order entry add a product, in this case PC001
 allow the session to time out.
 log back in and go back into order entry.

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



[jira] Commented: (OFBIZ-1046) Migration of some old ftl/bsh files for the product screens to the widgets

2007-11-30 Thread Jacques Le Roux (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547329
 ] 

Jacques Le Roux commented on OFBIZ-1046:


Hi Ashish, did you find the time to continue this task ?

 Migration of some old ftl/bsh files for the product screens to the widgets
 --

 Key: OFBIZ-1046
 URL: https://issues.apache.org/jira/browse/OFBIZ-1046
 Project: OFBiz
  Issue Type: Improvement
  Components: product
Reporter: Jacopo Cappellato
Assignee: Jacopo Cappellato
Priority: Minor
 Attachments: product.patch, product_Attribute.patch, 
 product_Attribute.patch, ProductGlAccount.patch


 The following screens should be improved to better use form widgets and 
 minilang instead of ftl/bsh:
 EditProductGoodIdentifications
 EditProductKeyword
 EditProductAssoc
 EditProductAttributes
 EditProductFeatures
 EditProductInventoryItems
 EditProductGlAccounts

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



[jira] Commented: (OFBIZ-1014) Cybersource package needs to be upgrade to support the New API Field: Request Token

2007-11-30 Thread Jacques Le Roux (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1014?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547325
 ] 

Jacques Le Roux commented on OFBIZ-1014:


Some comments about this patch :

Indentation is not well done, please carefully read 
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Contributors+Best+Practices
There are 3 lines 
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Contributors+Best+Practices

Else I have not tested (I don' t have any Cybersource access,is it needed ?) 
but it seems well written.

 Cybersource package needs to be upgrade to support the New API Field: Request 
 Token
 ---

 Key: OFBIZ-1014
 URL: https://issues.apache.org/jira/browse/OFBIZ-1014
 Project: OFBiz
  Issue Type: Improvement
  Components: accounting
Affects Versions: SVN trunk, Release Branch 4.0
Reporter: Rohit Sureka
 Attachments: cybersource.patch


 Cybersource has released  a New Api field 'Request Token' and has been 
 sending emails to customers to update the software.
 I believe ofbiz is affected by this and support needs to be implemented for 
 the new API token in OFBIZ.
 More on this update can be read at  
 http://www.cybersource.com/support/request_token/
 As per information on Cybersource the last date for implementing this is 31st 
 May 07.
 Thanks
 Rohit

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



[jira] Commented: (OFBIZ-1456) if order entry is interupted and session times out. the session data is lost causing errors.

2007-11-30 Thread BJ Freeman (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1456?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547319
 ] 

BJ Freeman commented on OFBIZ-1456:
---

you have seem to ingored the orginal premise which is a bug
the second one is just an addon


 if order entry is interupted and session times out. the session data is lost 
 causing errors.
 

 Key: OFBIZ-1456
 URL: https://issues.apache.org/jira/browse/OFBIZ-1456
 Project: OFBiz
  Issue Type: Improvement
  Components: order
Affects Versions: SVN trunk
 Environment: Ver 4.0 rev  595239
Reporter: BJ Freeman
Assignee: Jacques Le Roux
Priority: Trivial
 Attachments: error1.txt, error2.txt, ofbizlog.txt, screenshot-1.jpg


 order entry add a product, in this case PC001
 allow the session to time out.
 log back in and go back into order entry.

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



[jira] Commented: (OFBIZ-1456) if order entry is interupted and session times out. the session data is lost causing errors.

2007-11-30 Thread Jacques Le Roux (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1456?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547299
 ] 

Jacques Le Roux commented on OFBIZ-1456:


The error you speak about does not appear in a regular process (no timeout) or 
at least I was not able to reproduce using your test case. I did not test in 
case of timeout, but yes feel free to provide a patch.

 if order entry is interupted and session times out. the session data is lost 
 causing errors.
 

 Key: OFBIZ-1456
 URL: https://issues.apache.org/jira/browse/OFBIZ-1456
 Project: OFBiz
  Issue Type: Bug
  Components: order
Affects Versions: SVN trunk, Release Branch 4.0
 Environment: Ver 4.0 rev  595239
Reporter: BJ Freeman
Priority: Minor
 Fix For: SVN trunk, Release Branch 4.0

 Attachments: error1.txt, error2.txt, ofbizlog.txt, screenshot-1.jpg


 order entry add a product, in this case PC001
 allow the session to time out.
 log back in and go back into order entry.

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



Re: svn commit: r599516 - in /ofbiz/trunk/applications/product: entitydef/entitymodel.xml script/org/ofbiz/product/inventory/InventoryServices.xml

2007-11-30 Thread Jacopo Cappellato

Vikas,

you are right again! it should be fixed by rev. 599866

Thanks

Jacopo


Vikas Mayur wrote:

Hi Jacopo,

Thanks for doing it fast.

There is still an error when we recieve Serialized Inventory. :(, that I
missed.


Error with comparison in if-compare between field [.parameters.unitCost]

with value [] and value [0.0] with operator [less] and type  [Double]: Left
value is null, cannot complete compare for the operator less calling service
updateInventoryItem in receiveInventoryProduct

I think we have to add a null check for unitCost at Line 218 of
InventoryServices.xml for updateInventoryProduct before
doing if-compare field-name=parameters.unitCost operator=less value=
0.0 type=Double.
It solves the problem.

Thanks again,
-- Vikas


On Nov 30, 2007 8:00 PM, Jacopo Cappellato [EMAIL PROTECTED] wrote:


Thanks Vikas,

this is fixed it in rev. 599826

Jacopo


Vikas Mayur wrote:

Line number 222, InventoryServices.xml
set field-name=oldUnitCost from-field=lookedUpValue.unitCost/

This line is breaking the code.
It should be

set field=oldUnitCost from-field=lookedUpValue.unitCost/

Thank you,
-- Vikas










[jira] Updated: (OFBIZ-1456) if order entry is interupted and session times out. the session data is lost causing errors.

2007-11-30 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux updated OFBIZ-1456:
---

Fix Version/s: (was: SVN trunk)
   (was: Release Branch 4.0)
 Assignee: Jacques Le Roux
 Priority: Trivial  (was: Minor)
   Issue Type: Improvement  (was: Bug)
Affects Version/s: (was: Release Branch 4.0)

BJ,

Yes I agree not a bug, looking forward for your patches (not sure why 2).
I declassified  the issue as an improvement hence it will not go in release.

 if order entry is interupted and session times out. the session data is lost 
 causing errors.
 

 Key: OFBIZ-1456
 URL: https://issues.apache.org/jira/browse/OFBIZ-1456
 Project: OFBiz
  Issue Type: Improvement
  Components: order
Affects Versions: SVN trunk
 Environment: Ver 4.0 rev  595239
Reporter: BJ Freeman
Assignee: Jacques Le Roux
Priority: Trivial
 Attachments: error1.txt, error2.txt, ofbizlog.txt, screenshot-1.jpg


 order entry add a product, in this case PC001
 allow the session to time out.
 log back in and go back into order entry.

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



[jira] Assigned: (OFBIZ-1437) Modify the getProductOrgGlAccount service to also consider the new ProductCategoryGlAccount entity

2007-11-30 Thread Jacopo Cappellato (JIRA)

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

Jacopo Cappellato reassigned OFBIZ-1437:


Assignee: Jacopo Cappellato  (was: Anil K Patel)

 Modify the getProductOrgGlAccount service to also consider the new 
 ProductCategoryGlAccount entity
 --

 Key: OFBIZ-1437
 URL: https://issues.apache.org/jira/browse/OFBIZ-1437
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Reporter: Jacopo Cappellato
Assignee: Jacopo Cappellato
 Attachments: getProductOrgGlAccount_new_approach.patch, 
 getProductOrgGlAccountService.patch, getProductOrgGlAccountService.patch


 Modify the getProductOrgGlAccount service to also consider the new 
 ProductCategoryGlAccount entity: the information in this file will be 
 considered if no specific mapping for the productId was found in the 
 ProductGlAccount entity and before looking at the general 
 GlAccountTypeDefault entity.
 As usual, a product is associated to the category thru the 
 ProductCategoryMember entity.

-- 
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-1437) Modify the getProductOrgGlAccount service to also consider the new ProductCategoryGlAccount entity

2007-11-30 Thread Mridul Pathak (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1437?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547144
 ] 

mridul.pathak edited comment on OFBIZ-1437 at 11/30/07 6:10 AM:


Jacopo and Anil,
Here is the patch for modifications according to the given comments with a new 
approach which is as follows.
1) Find out the ProductCategoryMember list for parameters.productId 
(Considering from/thru dates)
2) For each productCategoryId in the list find ProductCategoryGlAccount using 
fields parameters.organizationPartyId and parameters.glAccountTypreId.
3) If we find a match then stop and return the 
ProductCategoryGlAccount.glAccountId 

Please use the patch which seems more suitable to you.

  was (Author: mridul.pathak):
Jacopo and Anil,
Here is the patch for modifications according to the given comments with a new 
approach which is as follows.
1) Find out the ProductCategoryMember list for parameters.productId 
(Considering from/thru dates)
2) For each productCategoryId in the list find ProductCategoryGlAccount using 
fields parameters.organizationPartyId and parameters.glAccountTypreId.
3) If we find a match then stop and return the 
ProductCategoryGlAccount.glAccountId 
  
 Modify the getProductOrgGlAccount service to also consider the new 
 ProductCategoryGlAccount entity
 --

 Key: OFBIZ-1437
 URL: https://issues.apache.org/jira/browse/OFBIZ-1437
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Reporter: Jacopo Cappellato
Assignee: Anil K Patel
 Attachments: getProductOrgGlAccount_new_approach.patch, 
 getProductOrgGlAccountService.patch, getProductOrgGlAccountService.patch


 Modify the getProductOrgGlAccount service to also consider the new 
 ProductCategoryGlAccount entity: the information in this file will be 
 considered if no specific mapping for the productId was found in the 
 ProductGlAccount entity and before looking at the general 
 GlAccountTypeDefault entity.
 As usual, a product is associated to the category thru the 
 ProductCategoryMember entity.

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



[jira] Updated: (OFBIZ-1437) Modify the getProductOrgGlAccount service to also consider the new ProductCategoryGlAccount entity

2007-11-30 Thread Mridul Pathak (JIRA)

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

Mridul Pathak updated OFBIZ-1437:
-

Attachment: getProductOrgGlAccount_new_approach.patch

Jacopo and Anil,
Here is the patch for modifications according to the given comments with a new 
approach which is as follows.
1) Find out the ProductCategoryMember list for parameters.productId 
(Considering from/thru dates)
2) For each productCategoryId in the list find ProductCategoryGlAccount using 
fields parameters.organizationPartyId and parameters.glAccountTypreId.
3) If we find a match then stop and return the 
ProductCategoryGlAccount.glAccountId 

 Modify the getProductOrgGlAccount service to also consider the new 
 ProductCategoryGlAccount entity
 --

 Key: OFBIZ-1437
 URL: https://issues.apache.org/jira/browse/OFBIZ-1437
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Reporter: Jacopo Cappellato
Assignee: Anil K Patel
 Attachments: getProductOrgGlAccount_new_approach.patch, 
 getProductOrgGlAccountService.patch, getProductOrgGlAccountService.patch


 Modify the getProductOrgGlAccount service to also consider the new 
 ProductCategoryGlAccount entity: the information in this file will be 
 considered if no specific mapping for the productId was found in the 
 ProductGlAccount entity and before looking at the general 
 GlAccountTypeDefault entity.
 As usual, a product is associated to the category thru the 
 ProductCategoryMember entity.

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



Re: XUI on OFBiz main page

2007-11-30 Thread [EMAIL PROTECTED]




From http://www.xoetrope.com/partners/list:
http://www.ofbiz.org
The Open For Business Project is an open source enterprise automation
software project licensed under the MIT Open Source License.


Is licence and web page correct?

ya


Jacques Le Roux wrote / napsal(a):

  Hi guys,

For some times now I wanted to put a link from OFBiz main site to yours. This since I saw your link from http://www.xoetrope.com/partners/list

Please could you use the new logo image that you may find on the top left of OFBiz main page ?

Thanks

Jacques

  






[jira] Commented: (OFBIZ-1456) if order entry is interupted and session times out. the session data is lost causing errors.

2007-11-30 Thread Jacques Le Roux (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1456?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547157
 ] 

Jacques Le Roux commented on OFBIZ-1456:


BJ,

This was very foggy to me, then I tried 
  go into order entry and add an item
  then remove the item
  then click on orderentry menu
But I can't see the point : you are in the process of creating an order; if you 
want to get out use the Clear Order optionin the sub-menu bar (1st option).  
Remember this work as a wizard to get you thru order entry.


 if order entry is interupted and session times out. the session data is lost 
 causing errors.
 

 Key: OFBIZ-1456
 URL: https://issues.apache.org/jira/browse/OFBIZ-1456
 Project: OFBiz
  Issue Type: Bug
  Components: order
Affects Versions: SVN trunk, Release Branch 4.0
 Environment: Ver 4.0 rev  595239
Reporter: BJ Freeman
Priority: Minor
 Fix For: SVN trunk, Release Branch 4.0

 Attachments: error1.txt, error2.txt, ofbizlog.txt, screenshot-1.jpg


 order entry add a product, in this case PC001
 allow the session to time out.
 log back in and go back into order entry.

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



Fw: XUI on OFBiz main page

2007-11-30 Thread Jacques Le Roux
Hi All,

Seems that it did not pass thru, not sure why (though HTML format seems to be 
the culprit)

  Raison : SMTP transmission failure has occurred
  Code de diagnostic : smtp;552 spam score (5.4) exceeded threshold
  Système distant : dns;mx1.eu.apache.org 
(TCP|84.96.92.56|32804|192.87.106.230|25) (apache.org ESMTP qpsmtpd 0.29 ready; 
send us
your mail, but not your spam.)

forwarding...

Jacques

- Message d'origine - 
De : Jacques Le Roux
À : Val Cassidy ; [EMAIL PROTECTED]
Cc : dev@ofbiz.apache.org
Envoyé : vendredi 30 novembre 2007 14:41
Objet : Re: XUI on OFBiz main page


Mmm, I forgot that certainly the site will not be already uptaded when you will 
get this msg.

I have added
lia maturing Point Of Sales (POS) module using ba 
href=http://www.xoetrope.com/xui; target=_blankXUI/a/b as rich
client interface/li
in the featueres list

Cheers

Jacques

- Message d'origine - 
De : Jacques Le Roux
À : Val Cassidy ; [EMAIL PROTECTED]
Cc : dev@ofbiz.apache.org
Envoyé : vendredi 30 novembre 2007 14:39
Objet : XUI on OFBiz main page


Hi guys,

For some times now I wanted to put a link from OFBiz main site to yours. This 
since I saw your link from
http://www.xoetrope.com/partners/list

Please could you use the new logo image that you may find on the top left of 
OFBiz main page ?

Thanks

Jacques



Re: svn commit: r599516 - in /ofbiz/trunk/applications/product: entitydef/entitymodel.xml script/org/ofbiz/product/inventory/InventoryServices.xml

2007-11-30 Thread Vikas Mayur
Line number 222, InventoryServices.xml
set field-name=oldUnitCost from-field=lookedUpValue.unitCost/

This line is breaking the code.
It should be

set field=oldUnitCost from-field=lookedUpValue.unitCost/

Thank you,
-- Vikas


Re: Tasking requirements in Project component

2007-11-30 Thread Hans Bakker
Hi Anil,
actually I am doing the same here. I have a number of students which are
currently writing a report option to show hours by project and by
project member

I will create a number Jira items this weekend like dojo gantchart,
schedule calculation and a tree function similar to the navigate option
in dataresource in content.

The option you created sounds fine to me as long you please keep the
principles in mind I outlined in the confluence document at
http://docs.ofbiz.org/x/ygw. If you like to change them please let me
know before hand.

regards,
Hans

On Thu, 2007-11-29 at 22:52 -0800, Anil Patel wrote:
 Hans,
 Thanks for your work in project component. If you find some time, and if
 its ok for you,  It be nice if you created Jira issues for different
 features that you will like to add to the component. I plan to use them
 as part of training exercise. I'll help those developers to implement
 something that will be useful for us all.
 Like I crated https://issues.apache.org/jira/browse/OFBIZ-1438 If agree
 with this them I can have somebody work on it.
 
 Does this sound interesting?
 
 Regards
 Anil Patel
 
 
 
-- 
http://Antwebsystems.com : OFBiz Quality support for competitive rates.





[jira] Commented: (OFBIZ-1456) if order entry is interupted and session times out. the session data is lost causing errors.

2007-11-30 Thread BJ Freeman (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1456?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547088
 ] 

BJ Freeman commented on OFBIZ-1456:
---

The problem is that I can not use the order entry. it is stuck.
I am still trying to figure out how to let the order entry exit gracefully and 
not continue.
Not even sure why I am still in order entry.
seems the only way to get out of it is to restart the server.


 if order entry is interupted and session times out. the session data is lost 
 causing errors.
 

 Key: OFBIZ-1456
 URL: https://issues.apache.org/jira/browse/OFBIZ-1456
 Project: OFBiz
  Issue Type: Bug
  Components: order
Affects Versions: SVN trunk, Release Branch 4.0
 Environment: Ver 4.0 rev  595239
Reporter: BJ Freeman
Priority: Minor
 Fix For: SVN trunk, Release Branch 4.0

 Attachments: error1.txt, error2.txt, ofbizlog.txt, screenshot-1.jpg


 order entry add a product, in this case PC001
 allow the session to time out.
 log back in and go back into order entry.

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



Re: Should we deprecate the InventoryItemVariance entity?

2007-11-30 Thread Jacopo Cappellato
Please ignore ma previous message in this thread (for now)... it's not 
as urgent as I thought because I've already found a good solution for 
the GL posting routine.

We will discuss the best way to go at later point.

Jacopo

Jacopo Cappellato wrote:
I would like to definitely fix this before we implement the GL posting 
service for inventory variances.


Here is my attempt (draft) to implement David's notes on this:

1) deprecate InventoryItemVariance and replace it with a new entity:
InventoryVariance with the following fields:
inventoryVarianceId (pk)
varianceReasonId
physicalInventoryId
comments

2) add the field inventoryVarianceId to the InventoryItemDetail entity

3) implement a new service createInventoryVariance that thakes as input 
the following fields:

productId (mandatory)
availableToPromiseDiff (optional)
quantityOnHandVar (optional)
facilityId (mandatory)
locationSeqId (optional)
inventoryItemId (optional)

where facilityId, locationSeqId and inventoryItemId are used to select 
the InventoryItems that will be considered for the variance; if we 
specify the inventoryItemId then the service will work in the same way 
the createPhysicalInventoryAndVariance is working now


What do you think?

Jacopo


David E Jones wrote:


I think this change is fine. It would throw a little kink in the 
special handling of the financial impact for this sort of thing. 
However we do this we just need to make sure it's very clear that the 
change is due to inventory lost/found/damaged/etc. That would be in 
the reasonEnumId.


My thoughts on the inventory variance going back a ways is that it's 
really weird to have the variance associated with a single inventory 
item. It seems like something related to Product, Facility and perhaps 
FacilityLocation would make more sense. Based on the record for that 
an InventoryItem would generally be created.


In other words I'm saying that instead of having a variance entity 
that points to the InventoryItem entity, the pointing would go in the 
other direction (probably to the InventoryItemDetail entity rather 
than InventoryItem).


I thought I should bring this up before we make any decisions about 
the direction to go, or any changes to make, with InventoryItemVariance.


-David


On Nov 7, 2007, at 7:40 AM, Jacopo Cappellato wrote:


What about deprecating the InventoryItemVariance entity?
It seems duplicated by the newer InventoryItemDetail entity: we could 
use the latter with the following mapping:


InventoryItemVariance.varianceReasonId -- 
InventoryItemDetail.reasonEnumId


and

InventoryItemVariance.comments -- InventoryItemDetail.description

What do you think?

Jacopo










[jira] Closed: (OFBIZ-1447) Add lookup buttons to the search forms for accounting transactions and accounting transactions entries

2007-11-30 Thread Anil K Patel (JIRA)

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

Anil K Patel closed OFBIZ-1447.
---

Resolution: Fixed

Vikas, thanks for providing implementation. Its in rev# 599739

 Add lookup buttons to the search forms for accounting transactions and 
 accounting transactions entries
 

 Key: OFBIZ-1447
 URL: https://issues.apache.org/jira/browse/OFBIZ-1447
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Affects Versions: SVN trunk
Reporter: Jacopo Cappellato
Assignee: Anil K Patel
 Attachments: Add_Lookup.patch, Add_Lookup.patch


 Add lookup buttons to the search forms for accounting transactions and 
 accounting transactions entries for payments, work efforts, invoices, 
 shipments etc...
 The two forms are in the following two screens:
 AccountingGeneral LedgerAccountingAccounting Transactions
 and
 AccountingGeneral LedgerAccountingAccounting Transactions Entries

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



[jira] Commented: (OFBIZ-1388) Bug in lookup windows URL

2007-11-30 Thread Bilgin Ibryam (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1388?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547046
 ] 

Bilgin Ibryam commented on OFBIZ-1388:
--

I found one way to fix this bug.
Instead of doing request like LookupProduct , which is modified by control 
servlet depending on current url, we can do the lookup request like this: 
@ofbizUrlLookupProduct/@ofbizUrl.

The applied patch fixes the bug in order manager. It is possible to have 
similar bugs in other places in ofbiz, that i am not aware.

 Bug in lookup windows URL
 -

 Key: OFBIZ-1388
 URL: https://issues.apache.org/jira/browse/OFBIZ-1388
 Project: OFBiz
  Issue Type: Bug
Affects Versions: SVN trunk, Release Branch 4.0
Reporter: Bilgin Ibryam
Priority: Minor
 Fix For: SVN trunk


 Hi all,
 I just noticed a bug in lookup windows url generation.
 One way to generate the bug is this:
 Go to order manager and add to cart configurable pc (PC001). You can do it 
 browsing Configurable PCs category on the left corner.
 After you add PC001 to cart, you will be in order entry screen and your URL 
 should look like this: 
 https://localhost:8443/ordermgr/control/additem/product
 At this stage if you try to add another product AND click on the product 
 lookup button, the screen in the lookup window will be orderentry screen but 
 not the product lookup screen!
 Popup screen will not generate LookupProduct request as it is expected, 
 instead the request is additem/LookupProduct and then ControlServlet 
 transform it to additem request. You can see that additem is coming from the 
 URL we mentioned /control/additem/product
 Any ideas how to fix this bug?
 Bilgin Ibryam

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



[jira] Updated: (OFBIZ-1440) Review/Improve/Cleanup the /accounting/control/EditAcctgTrans screen

2007-11-30 Thread Vikas Mayur (JIRA)

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

Vikas Mayur updated OFBIZ-1440:
---

Attachment: CreateAcctgTrans.patch

 Review/Improve/Cleanup the /accounting/control/EditAcctgTrans screen
 

 Key: OFBIZ-1440
 URL: https://issues.apache.org/jira/browse/OFBIZ-1440
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Reporter: Jacopo Cappellato
Assignee: Anil K Patel
 Attachments: CreateAcctgTrans.patch


 Review/Improve/Cleanup the /accounting/control/EditAcctgTrans screen: you can 
 reach it from AccountingGeneral LedgerAccountingAccounting 
 Transactionsthen perform a search and click one of the accctgTransId
 - add more fields (from the AcctgTrans entity) to the form at the top of the 
 screen
 - the form at the top of the screen, and the underlying updateAcctgTrans 
 service, always allows to edit the fields of the AcctgTrans entity (even if 
 the transactions are posted): should we limit this (both at the ui and 
 service level)?

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



[jira] Commented: (OFBIZ-1456) if order entry is interupted and session times out. the session data is lost causing errors.

2007-11-30 Thread Bilgin Ibryam (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1456?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547042
 ] 

Bilgin Ibryam commented on OFBIZ-1456:
--

BJ, sorry but i cannot understand what is the bug.
In the subject you say if order entry is interupted and session times out. the 
session data is lost causing errors.  If session time out, the session data 
(like shopping cart) is lost, and it is something usual. Isn't it ? Then you 
have to start order creation (shopping cart creation) from the beginning.

Bilgin

 if order entry is interupted and session times out. the session data is lost 
 causing errors.
 

 Key: OFBIZ-1456
 URL: https://issues.apache.org/jira/browse/OFBIZ-1456
 Project: OFBiz
  Issue Type: Bug
  Components: order
Affects Versions: SVN trunk, Release Branch 4.0
 Environment: Ver 4.0 rev  595239
Reporter: BJ Freeman
Priority: Minor
 Fix For: SVN trunk, Release Branch 4.0

 Attachments: error1.txt, error2.txt, ofbizlog.txt, screenshot-1.jpg


 order entry add a product, in this case PC001
 allow the session to time out.
 log back in and go back into order entry.

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



[jira] Created: (OFBIZ-1458) Implement an automatic GL posting service triggered when a physical inventory variance is performed

2007-11-30 Thread Jacopo Cappellato (JIRA)
Implement an automatic GL posting service triggered when a physical inventory 
variance is performed
---

 Key: OFBIZ-1458
 URL: https://issues.apache.org/jira/browse/OFBIZ-1458
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Affects Versions: SVN trunk
Reporter: Jacopo Cappellato


The name of the service can be createAcctgTransForPhysicalInventoryVariance 
or similar.
Input field: physicalInventoryId
Output field: acctgTransId

We can use the following template for this service: 
createAcctgTransForShipmentReceipt in GeneralLedgerServices.xml

The service is triggered by a SECA rule on createPhysicalInventoryAndVariance
The service will do the following tasks:
1) select all the InventoryItemDetails for the given physicalInventoryId
2) iterate the list of InventoryItemDetails and for each InventoryItemDetail:
2a) select the associated InventoryItem
2b) compute the following amount: origAmount = 
InventoryItemDetail.quantityOnHandDiff * InventoryItem.unitCost
2c) create one AcctgTransEntry for the credit: debitCreditFlag=C, 
glAcctgTransTypeId=InventoryItemDetail.reasonId, 
productId=InventoryItem.productId, origAmount=(the value computed in 2b), 
origCurrencyUomId=InventoryItem.currencyUomId, 
organizationPartyId=InventoryItem.ownerPartyId
2d) create one AcctgTransEntry for the debit: debitCreditFlag=D, 
glAcctgTransTypeId=INVENTORY_ACCOUNT, productId=InventoryItem.productId, 
origAmount=(the value computed in 2b), 
origCurrencyUomId=InventoryItem.currencyUomId, 
organizationPartyId=InventoryItem.ownerPartyId
2e) put the two entries in a list (go back to 2a)
3) when the iteration is done, call the  createAcctgTransAndEntries with the 
following fields: acctgTransTypeId=ITEM_VARIANCE_ACCTG_, acctgTransEntries=(the 
list at 2e), physicalInventoryId=parameters.physicalInventoryId, 
glFiscalTypeId=ACTUAL

the ECA will be:
eca service=createPhysicalInventoryAndVariance event=commit
condition field-name=physicalInventoryId operator=is-not-empty/
action service=createAcctgTransForPhysicalInventoryVariance mode=sync/
/eca

You can then test the service when you go into an Inventory Item in the 
facility, and perform a manual inventory variance.


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



[jira] Created: (OFBIZ-1460) Implement CRUD services and screens for CreditCardTypeGlAccount entity

2007-11-30 Thread Mridul Pathak (JIRA)
Implement CRUD services and screens for CreditCardTypeGlAccount entity
--

 Key: OFBIZ-1460
 URL: https://issues.apache.org/jira/browse/OFBIZ-1460
 Project: OFBiz
  Issue Type: Sub-task
Reporter: Mridul Pathak




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



[jira] Closed: (OFBIZ-1077) htmledit/whizzywig.js Incompatibility with IE7

2007-11-30 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux closed OFBIZ-1077.
--

Resolution: Cannot Reproduce
  Assignee: Jacques Le Roux

Just tested, seems to work

 htmledit/whizzywig.js Incompatibility with IE7
 --

 Key: OFBIZ-1077
 URL: https://issues.apache.org/jira/browse/OFBIZ-1077
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk, Release Branch 4.0
 Environment: IE7
Reporter: Vinay Agarwal
Assignee: Jacques Le Roux
Priority: Minor
 Fix For: SVN trunk, Release Branch 4.0


 Using visual editor in IE7 causes the following errors
 - Line 351: Expected ']' in regular expression (File whizzywig.js)
 - Line 81: Object expected  
 (FTL/HTML file that renders page)
 Commenting out line 351  352 of whizzywig.js removes the errors. These lines 
 are:
  h = h.replace(/[]/g, '); //single smartquotes  
  h = h.replace(/[]/g, ''); //double smartquotes 
  What do these line do specifically?

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



[jira] Commented: (OFBIZ-1199) makeLoginUrl doesn't URL encode the strings

2007-11-30 Thread Si Chen (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547323
 ] 

Si Chen commented on OFBIZ-1199:


Well, BJ, do you have any suggestions?

 makeLoginUrl doesn't URL encode the strings
 ---

 Key: OFBIZ-1199
 URL: https://issues.apache.org/jira/browse/OFBIZ-1199
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk, Release Branch 4.0
Reporter: Wickersheimer Jeremy
Assignee: Si Chen
Priority: Minor
 Attachments: ofbiz-1199.patch


 The makeLoginUrl method in LoginWorker simply appends all parameters names 
 and values to make an URL string, without using URLEncode.
 This will make broken URLs when specials characters or Unicode characters are 
 present.

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



[jira] Commented: (OFBIZ-1455) order requirements should only be created when orders are approved

2007-11-30 Thread Si Chen (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1455?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547308
 ] 

Si Chen commented on OFBIZ-1455:


Yes, but I believe that should be a separate issue and could be pretty 
involved.  Do you have time to work on it?  If so I'll write up a jira issue 
for it.

 order requirements should only be created when orders are approved
 --

 Key: OFBIZ-1455
 URL: https://issues.apache.org/jira/browse/OFBIZ-1455
 Project: OFBiz
  Issue Type: Bug
Reporter: Si Chen

 currently requirements are created when orders are created, even if the order 
 is in the Created state.  This is not a good practice as the order may not be 
 completed.  The requirements secas should be changed so that only when order 
 status is changed to Approved are the requirements created.

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



Re: XUI on OFBiz main page

2007-11-30 Thread Jacques Le Roux
Thanks Ján,

Yes you are right, it is not, I forward

Jacques
  - Message d'origine - 
  De : Ján Valkovic 
  À : dev@ofbiz.apache.org 
  Envoyé : vendredi 30 novembre 2007 15:00
  Objet : Re: XUI on OFBiz main page


From http://www.xoetrope.com/partners/list:
http://www.ofbiz.org
The Open For Business Project is an open source enterprise automation
software project licensed under the MIT Open Source License.

Is licence and web page correct?
ya



  Jacques Le Roux  wrote / napísal(a): 
Hi guys,

For some times now I wanted to put a link from OFBiz main site to yours. This 
since I saw your link from http://www.xoetrope.com/partners/list

Please could you use the new logo image that you may find on the top left of 
OFBiz main page ?

Thanks

Jacques



Re: MarkMail: hosting Apache mailing list archives

2007-11-30 Thread Jacques Le Roux
Hi Jason,

I have added a mark mail plugin for OFBIz at http://docs.ofbiz.org/x/xQ. It's 
rather simplistic (KISS concept) and might be
enhanced.

For convenience you can find the files attached (OFBizers : not sure they will 
get thru OFBiz MLs)

Cheers

Jacques

De : Jacques Le Roux [EMAIL PROTECTED]
 Yes Jason,

 That's exactly it

 Jacques

  Hi Jacques,
 
  That sounds interesting.  How do your plugins compare to the plugin
  format written about here?
 
  http://developer.mozilla.org/en/docs/Creating_OpenSearch_plugins_for_Firefox
 
  -jh-
 
  Jacques Le Roux wrote:
   Hi Jason,
  
   I have previously created Nabble forums for OFBiz and I also provided 
   Firefox plugins for easier use
   http://docs.ofbiz.org/display/OFBIZ/Plugin+search+tools+for+Firefox+using+Nabble
  
   We may provide the same for MarkMail.
  
   Thanks
  
   Jacques
  
   De : Jason Hunter [EMAIL PROTECTED]
   Thank you!  If you have feature requests, please let us know.
  
   -jh-
  
   Jacques Le Roux wrote:
   Hi Jason,
  
   Done for OFBiz, looks great
  
   Thanks
  
   Jacques
  
   - Message d'origine - 
   De : Jason Hunter [EMAIL PROTECTED]
   À : [EMAIL PROTECTED]
   Envoyé : lundi 5 novembre 2007 04:56
   Objet : MarkMail: hosting Apache mailing list archives
  
  
   PMCs, could you please send this announcement to your various users@ 
   and
   devs@ mailing lists, as appropriate for your particular community.
  
   And please, if you think it proper, add a link to MarkMail on your
   project web site as an option for searching your project's email
   archives.  You can point to http://project.markmail.org.
  
   
  
   (A forwarded email from Jason Hunter)
  
   For the last few months I've been working on a new project: a web
   site for interacting with email archives.  We're using, as the
   site's initial content set, the public Apache mailing list archives
   -- because Apache is the community I know best and I think people
   here will find the site useful.  We've loaded a bit over 4,000,000
   emails across 500 lists.
  
   http://apache.markmail.org
  
   As you'll see with the chart on the home page, one of our goals with
   the site has been to focus heavily on analytics.  We have lots of
   graphs and counts, and you're able to use them to watch Apache's
   historical growth and each individual project's growth.  Every query
   you write gets its own histogram chart.
  
   Another goal has been interactivity.  Every search result screen gives
   you lots of ways to refine your search (by sender, list, attachment
   type, etc).  Plus we did a lot with keyboard shortcuts.  You can hit
   n and p to move to the next and previous result and j and k to
   move up and down the thread view.  There's a lot of little things like
   this.  Plus if your result message includes Office or PDF files
   they're in-line interactive too.
  
   http://apache.markmail.org/search/ext:ppt+axis
  
   Another goal has been to focus on community.  We could have launched
   MarkMail with 50,000,000 emails from many sources but I think it's
   better to start with focus.  In fact, I'll be at ApacheCon and the
   Hackathon next week, along with my co-developer Ryan Grimm,
   looking for people's suggestions and maybe on the spot adding in a
   few of them.  There's also potential to explore some fun one-off
   analytics, too.
  
   As part of the focus on communities, we setup MarkMail so it
   recognizes that Apache itself consists of many communities.  If you go
   to http://apache.markmail.org you search all Apache emails, but if you
   go to http://struts.markmail.org then you're auto-limited to just
   Struts lists.  Same for tomcat, spamassassin, httpd, and so on.  You
   can always limit your search using list:struts in your query, but
   using the domain handles that a bit more elegantly.
  
   I've been working on this a long time, and I'm so happy to be able to
   share it with everyone.  I hope you all find this useful!
  
   Notes on using the site:
  
   * Search using keywords as well as from:, subject:, extension:, and
  list: constraints
  
   * The GUI doesn't yet expose it, but you can negate any search item,
  like -subject:jira.
  
   * You can sort results by date by adding order:date-forward or
  order:date-backward to your query
  
   * Remember to use n and p keyboard shortcuts to navigate the search
  results
  
   * You're going to want JavaScript enabled
  
   If you'd like to send me private feedback I'm jhunter at apache dot 
   org.
  
   -jh-
  
 



[jira] Commented: (OFBIZ-1456) if order entry is interupted and session times out. the session data is lost causing errors.

2007-11-30 Thread BJ Freeman (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1456?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547112
 ] 

BJ Freeman commented on OFBIZ-1456:
---

Maybe the better title would be once in orderEntry can not exit by clicking on 
order entry menu.
steps
go into order entry and add an item
then remove the item
then click on orderentry menu


 if order entry is interupted and session times out. the session data is lost 
 causing errors.
 

 Key: OFBIZ-1456
 URL: https://issues.apache.org/jira/browse/OFBIZ-1456
 Project: OFBiz
  Issue Type: Bug
  Components: order
Affects Versions: SVN trunk, Release Branch 4.0
 Environment: Ver 4.0 rev  595239
Reporter: BJ Freeman
Priority: Minor
 Fix For: SVN trunk, Release Branch 4.0

 Attachments: error1.txt, error2.txt, ofbizlog.txt, screenshot-1.jpg


 order entry add a product, in this case PC001
 allow the session to time out.
 log back in and go back into order entry.

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



[jira] Commented: (OFBIZ-1388) Bug in lookup windows URL

2007-11-30 Thread BJ Freeman (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1388?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547090
 ] 

BJ Freeman commented on OFBIZ-1388:
---

how about adding it to the jscript?
I am still following it down to see what may need to be done for any lookups.
and why it works once but not after this particular situation.


 Bug in lookup windows URL
 -

 Key: OFBIZ-1388
 URL: https://issues.apache.org/jira/browse/OFBIZ-1388
 Project: OFBiz
  Issue Type: Bug
Affects Versions: SVN trunk, Release Branch 4.0
Reporter: Bilgin Ibryam
Priority: Minor
 Fix For: SVN trunk

 Attachments: lookup.patch


 Hi all,
 I just noticed a bug in lookup windows url generation.
 One way to generate the bug is this:
 Go to order manager and add to cart configurable pc (PC001). You can do it 
 browsing Configurable PCs category on the left corner.
 After you add PC001 to cart, you will be in order entry screen and your URL 
 should look like this: 
 https://localhost:8443/ordermgr/control/additem/product
 At this stage if you try to add another product AND click on the product 
 lookup button, the screen in the lookup window will be orderentry screen but 
 not the product lookup screen!
 Popup screen will not generate LookupProduct request as it is expected, 
 instead the request is additem/LookupProduct and then ControlServlet 
 transform it to additem request. You can see that additem is coming from the 
 URL we mentioned /control/additem/product
 Any ideas how to fix this bug?
 Bilgin Ibryam

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



[jira] Assigned: (OFBIZ-84) Shortcut for all Unpaid Invoices on a BillingAccount

2007-11-30 Thread Anil K Patel (JIRA)

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

Anil K Patel reassigned OFBIZ-84:
-

Assignee: Anil K Patel

 Shortcut for all Unpaid Invoices on a BillingAccount
 

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


 A Shortcut to Listing Unpaid Invoices on a BillingAccount should be provided. 
  
 If somebody can help me figure out few cosmetic things like, Link Name and 
 Location, I'll do the coding and provide the 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-1388) Bug in lookup windows URL

2007-11-30 Thread Bilgin Ibryam (JIRA)

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

Bilgin Ibryam updated OFBIZ-1388:
-

Attachment: lookup.patch

 Bug in lookup windows URL
 -

 Key: OFBIZ-1388
 URL: https://issues.apache.org/jira/browse/OFBIZ-1388
 Project: OFBiz
  Issue Type: Bug
Affects Versions: SVN trunk, Release Branch 4.0
Reporter: Bilgin Ibryam
Priority: Minor
 Fix For: SVN trunk

 Attachments: lookup.patch


 Hi all,
 I just noticed a bug in lookup windows url generation.
 One way to generate the bug is this:
 Go to order manager and add to cart configurable pc (PC001). You can do it 
 browsing Configurable PCs category on the left corner.
 After you add PC001 to cart, you will be in order entry screen and your URL 
 should look like this: 
 https://localhost:8443/ordermgr/control/additem/product
 At this stage if you try to add another product AND click on the product 
 lookup button, the screen in the lookup window will be orderentry screen but 
 not the product lookup screen!
 Popup screen will not generate LookupProduct request as it is expected, 
 instead the request is additem/LookupProduct and then ControlServlet 
 transform it to additem request. You can see that additem is coming from the 
 URL we mentioned /control/additem/product
 Any ideas how to fix this bug?
 Bilgin Ibryam

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



[jira] Commented: (OFBIZ-1440) Review/Improve/Cleanup the /accounting/control/EditAcctgTrans screen

2007-11-30 Thread Anil K Patel (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1440?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547055
 ] 

Anil K Patel commented on OFBIZ-1440:
-

Vikas your patch is in svn # 599753. We got a good start. I am keeping this 
issue open because I think there is lot more that can be done to improve this 
screen. 

 Review/Improve/Cleanup the /accounting/control/EditAcctgTrans screen
 

 Key: OFBIZ-1440
 URL: https://issues.apache.org/jira/browse/OFBIZ-1440
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Reporter: Jacopo Cappellato
Assignee: Anil K Patel
 Attachments: CreateAcctgTrans.patch


 Review/Improve/Cleanup the /accounting/control/EditAcctgTrans screen: you can 
 reach it from AccountingGeneral LedgerAccountingAccounting 
 Transactionsthen perform a search and click one of the accctgTransId
 - add more fields (from the AcctgTrans entity) to the form at the top of the 
 screen
 - the form at the top of the screen, and the underlying updateAcctgTrans 
 service, always allows to edit the fields of the AcctgTrans entity (even if 
 the transactions are posted): should we limit this (both at the ui and 
 service level)?

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



Re: http://ofbiz.apache.org/documents.html

2007-11-30 Thread Jacques Le Roux
I was a bit optimist. It's too much work for what it adds (merely nothing, just 
fix some obvious links),  I resign.
AFAIK, a feature to import html source does not exist yet, I put a vote here 
http://jira.atlassian.com/browse/CONF-1072

Jacques

De : Jacques Le Roux [EMAIL PROTECTED]
 De : David E Jones [EMAIL PROTECTED]
  That page has been moved to docs.ofbiz.org, here:
  
  http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Documentation+Index
  
  There is a link to it from the home page, ie that link has been  
  replaced. These others certainly could be updated too, but it would be  
  even better to finish up the task of moving all of those old  
  documentation pages to the docs.ofbiz.org site.
 
 OK, I will
 
 Jacques
 
  
  -David
  
  
  On Nov 29, 2007, at 7:45 AM, Jacques Le Roux wrote:
  
   The file http://ofbiz.apache.org/documents.html which is called from  
   some documents (http://ofbiz.apache.org/docs/entityconfig.html
   for instance) does not exist. Any ideas about where to find it  
   (Google did to found it, at 1st glance)
  
   Thanks
  
   Jacques
  
  
  
 


[jira] Commented: (OFBIZ-1456) if order entry is interupted and session times out. the session data is lost causing errors.

2007-11-30 Thread BJ Freeman (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1456?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547132
 ] 

BJ Freeman commented on OFBIZ-1456:
---

Ok.. need to clear the cart.
now it is not clear that one has to clear the order to get out of order entry.
and if there is a time out and relog in, then the cart should have been cleared.
and if someone clicks on order entry menu the cart should be checked and a msg 
put up to click on clear order
or even better initiate the clear order.

unless someone has a better Idea.
will make some patches to cover these two conditions.
the session time out I consider a bug
the menu fix is an enhancement (trunk only)


 if order entry is interupted and session times out. the session data is lost 
 causing errors.
 

 Key: OFBIZ-1456
 URL: https://issues.apache.org/jira/browse/OFBIZ-1456
 Project: OFBiz
  Issue Type: Bug
  Components: order
Affects Versions: SVN trunk, Release Branch 4.0
 Environment: Ver 4.0 rev  595239
Reporter: BJ Freeman
Priority: Minor
 Fix For: SVN trunk, Release Branch 4.0

 Attachments: error1.txt, error2.txt, ofbizlog.txt, screenshot-1.jpg


 order entry add a product, in this case PC001
 allow the session to time out.
 log back in and go back into order entry.

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



[jira] Closed: (OFBIZ-1437) Modify the getProductOrgGlAccount service to also consider the new ProductCategoryGlAccount entity

2007-11-30 Thread Jacopo Cappellato (JIRA)

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

Jacopo Cappellato closed OFBIZ-1437.


Resolution: Fixed

Thanks Mridul! Your patch is in rev. 599830

 Modify the getProductOrgGlAccount service to also consider the new 
 ProductCategoryGlAccount entity
 --

 Key: OFBIZ-1437
 URL: https://issues.apache.org/jira/browse/OFBIZ-1437
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Reporter: Jacopo Cappellato
Assignee: Jacopo Cappellato
 Attachments: getProductOrgGlAccount_new_approach.patch, 
 getProductOrgGlAccountService.patch, getProductOrgGlAccountService.patch


 Modify the getProductOrgGlAccount service to also consider the new 
 ProductCategoryGlAccount entity: the information in this file will be 
 considered if no specific mapping for the productId was found in the 
 ProductGlAccount entity and before looking at the general 
 GlAccountTypeDefault entity.
 As usual, a product is associated to the category thru the 
 ProductCategoryMember entity.

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



Re: svn commit: r599516 - in /ofbiz/trunk/applications/product: entitydef/entitymodel.xml script/org/ofbiz/product/inventory/InventoryServices.xml

2007-11-30 Thread Vikas Mayur
Hi Jacopo,

Thanks for doing it fast.

There is still an error when we recieve Serialized Inventory. :(, that I
missed.

 Error with comparison in if-compare between field [.parameters.unitCost]
with value [] and value [0.0] with operator [less] and type  [Double]: Left
value is null, cannot complete compare for the operator less calling service
updateInventoryItem in receiveInventoryProduct

I think we have to add a null check for unitCost at Line 218 of
InventoryServices.xml for updateInventoryProduct before
doing if-compare field-name=parameters.unitCost operator=less value=
0.0 type=Double.
It solves the problem.

Thanks again,
-- Vikas


On Nov 30, 2007 8:00 PM, Jacopo Cappellato [EMAIL PROTECTED] wrote:

 Thanks Vikas,

 this is fixed it in rev. 599826

 Jacopo


 Vikas Mayur wrote:
  Line number 222, InventoryServices.xml
  set field-name=oldUnitCost from-field=lookedUpValue.unitCost/
 
  This line is breaking the code.
  It should be
 
  set field=oldUnitCost from-field=lookedUpValue.unitCost/
 
  Thank you,
  -- Vikas
 




-- 
Vikas Mayur


[jira] Commented: (OFBIZ-1007) Set decimal places to show for ofbizCurrencyTransform

2007-11-30 Thread Jacques Le Roux (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1007?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547314
 ] 

Jacques Le Roux commented on OFBIZ-1007:


Leon,

I tried to apply your patch but there are some conflicts, could you please 
create an updated patch ?

Thanks

 Set decimal places to show for ofbizCurrencyTransform
 -

 Key: OFBIZ-1007
 URL: https://issues.apache.org/jira/browse/OFBIZ-1007
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Affects Versions: Release Branch 4.0
Reporter: Leon Torres
Priority: Minor
 Attachments: currency-decimal-places.patch


 Some users may wish to have 3 or 4 decimal places of precision in currency 
 amounts.  This is easily configurable with the fieldtype XML files.
 The problem is that the @ofbizCurrencyTransform macro will truncate the 
 numbers because the decimal places is determined from the Locale object, and 
 there is no way to tell it that the decimal places should be 3 or 4 or 
 whatever.
 Additionally, these users often have the desire to right pad the numbers with 
 zeroes.  For instance, an amount of $3.04 should be displayed as $3.0400 for 
 a 4 decimal place requirement.   Currently the UtilFormatOut.formatCurrency() 
 methods have no way to support this right-filling of zeros in this manner.
 I have implemented a fairly elegant way of solving both related issues with 
 minimal impact.

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



[jira] Commented: (OFBIZ-1045) EntityOperator does not correctly construct SQL for BETWEEN clause

2007-11-30 Thread Jacques Le Roux (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1045?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547321
 ] 

Jacques Le Roux commented on OFBIZ-1045:


Sorry Luke but we need a new patch now as EntityOperator.java as recently 
changed : 
http://fisheye6.cenqua.com/browse/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityOperator.java

Thanks

 EntityOperator does not correctly construct SQL for BETWEEN clause
 --

 Key: OFBIZ-1045
 URL: https://issues.apache.org/jira/browse/OFBIZ-1045
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
 Environment: ubuntu 7.04, postgres 8.2, working with SVN release 
 4955, but EntityOperator.java has not changed since then.
Reporter: Luke Prentice
Assignee: Adam Heath
 Attachments: all-app-framework-EntityOperator.java.diff, 
 all-app-framework-EntityOperator.java.diff, 
 all-app-framework-EntityOperator.java.diff


 when using the BETWEEN EntityOperator the SQL produced is incorrectly 
 formatted:
 ... field1 BETWEEN (value1, value2)
 it should be
 ... field1 BETWEEN value1 AND value2
 this produces an SQL parse exception.

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



[jira] Updated: (OFBIZ-1460) Implement CRUD services and screens for CreditCardTypeGlAccount entity

2007-11-30 Thread Mridul Pathak (JIRA)

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

Mridul Pathak updated OFBIZ-1460:
-

  Component/s: accounting
  Description: 
1) Implement CRUD services for the CreditCardTypeGlAccount Entity.
2) Implement Screens to map, for an organization, a cardType to a GlAccount.
Affects Version/s: SVN trunk

 Implement CRUD services and screens for CreditCardTypeGlAccount entity
 --

 Key: OFBIZ-1460
 URL: https://issues.apache.org/jira/browse/OFBIZ-1460
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Affects Versions: SVN trunk
Reporter: Mridul Pathak

 1) Implement CRUD services for the CreditCardTypeGlAccount Entity.
 2) Implement Screens to map, for an organization, a cardType to a GlAccount.

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



[jira] Updated: (OFBIZ-1460) Implement CRUD services and screens for CreditCardTypeGlAccount entity

2007-11-30 Thread Mridul Pathak (JIRA)

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

Mridul Pathak updated OFBIZ-1460:
-

Description: 
CreditCardTypeGlAccount entity is there to map a cardType for an organization 
to a GlAccount.
1) Implement CRUD services for the CreditCardTypeGlAccount Entity.
2) Implement Screens to map, for an organization, a cardType to a GlAccount. 
Should go in AccountingGeneral LedgerSetupGl Account Defaults
3) The screen will have a list of CreditCardTypeGlAccount for the organization 
with a update and remove link against each record.  There will be a Add 
form below the list.

  was:
1) Implement CRUD services for the CreditCardTypeGlAccount Entity.
2) Implement Screens to map, for an organization, a cardType to a GlAccount.


 Implement CRUD services and screens for CreditCardTypeGlAccount entity
 --

 Key: OFBIZ-1460
 URL: https://issues.apache.org/jira/browse/OFBIZ-1460
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Affects Versions: SVN trunk
Reporter: Mridul Pathak

 CreditCardTypeGlAccount entity is there to map a cardType for an organization 
 to a GlAccount.
 1) Implement CRUD services for the CreditCardTypeGlAccount Entity.
 2) Implement Screens to map, for an organization, a cardType to a GlAccount. 
 Should go in AccountingGeneral LedgerSetupGl Account Defaults
 3) The screen will have a list of CreditCardTypeGlAccount for the 
 organization with a update and remove link against each record.  There 
 will be a Add form below the list.

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



[jira] Commented: (OFBIZ-1199) makeLoginUrl doesn't URL encode the strings

2007-11-30 Thread BJ Freeman (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-1199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547382
 ] 

BJ Freeman commented on OFBIZ-1199:
---

guess my concerns would be best addressed in the orginal Jira
sorry to delay you.



 makeLoginUrl doesn't URL encode the strings
 ---

 Key: OFBIZ-1199
 URL: https://issues.apache.org/jira/browse/OFBIZ-1199
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk, Release Branch 4.0
Reporter: Wickersheimer Jeremy
Assignee: Si Chen
Priority: Minor
 Attachments: ofbiz-1199.patch


 The makeLoginUrl method in LoginWorker simply appends all parameters names 
 and values to make an URL string, without using URLEncode.
 This will make broken URLs when specials characters or Unicode characters are 
 present.

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



[jira] Created: (OFBIZ-1461) Login fails after session time out and there is a lot of data in the url.

2007-11-30 Thread BJ Freeman (JIRA)
Login fails after session time out and there is a lot of data in the url.
-

 Key: OFBIZ-1461
 URL: https://issues.apache.org/jira/browse/OFBIZ-1461
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk, Release Branch 4.0
 Environment: Login
Reporter: BJ Freeman
Priority: Minor
 Fix For: SVN trunk, Release Branch 4.0
 Attachments: testdata.txt

was originally https://issues.apache.org/jira/browse/OFBIZ-50
However this is a login function problem
not just for Webtools.
NOTE: I am using webtools import, because it is easy to reporduce the error 
this way. This is not, I say Not a webtools problem but a Login problem.
1)go to webtools and import the attached data.
2) allow ofbiz session to time out
3) click on main in webtools.
4) the login dialog shows
5) login
6) will get a can't login error.
7) note the URL has all the import data in it.



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



[jira] Updated: (OFBIZ-1461) Login fails after session time out and there is a lot of data in the url.

2007-11-30 Thread BJ Freeman (JIRA)

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

BJ Freeman updated OFBIZ-1461:
--

Attachment: testdata.txt

you can use any data file to import if it has about 20 lines


 Login fails after session time out and there is a lot of data in the url.
 -

 Key: OFBIZ-1461
 URL: https://issues.apache.org/jira/browse/OFBIZ-1461
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk, Release Branch 4.0
 Environment: Login
Reporter: BJ Freeman
Priority: Minor
 Fix For: SVN trunk, Release Branch 4.0

 Attachments: testdata.txt


 was originally https://issues.apache.org/jira/browse/OFBIZ-50
 However this is a login function problem
 not just for Webtools.
 NOTE: I am using webtools import, because it is easy to reporduce the error 
 this way. This is not, I say Not a webtools problem but a Login problem.
 1)go to webtools and import the attached data.
 2) allow ofbiz session to time out
 3) click on main in webtools.
 4) the login dialog shows
 5) login
 6) will get a can't login error.
 7) note the URL has all the import data in it.

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



[jira] Commented: (OFBIZ-616) Re-Factor Accounting permissions to follow new patterns

2007-11-30 Thread Jacopo Cappellato (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-616?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547390
 ] 

Jacopo Cappellato commented on OFBIZ-616:
-

I totally agree with Anil: the accounting component is quickly growing (my 
personal roadmap is to have a good set of GL accounting features by the end of 
the year) and so it would be great to have its permissions refactored before we 
add a lot of new stuff to it.
Any volunteers? Please help!!!


 Re-Factor Accounting permissions to follow new patterns
 ---

 Key: OFBIZ-616
 URL: https://issues.apache.org/jira/browse/OFBIZ-616
 Project: OFBiz
  Issue Type: Sub-task
  Components: accounting
Reporter: Andrew Zeneski



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



Re: svn commit: r599982 - /ofbiz/trunk/applications/product/config/shipment.properties

2007-11-30 Thread Jacopo Cappellato

Hi Si,

this will be an interesting new feature.
Are you already working on this? Could you please share your development 
plan, chances are others will be interested, and possibly help with the 
development as well.
We could even setup a Wiki page to facilitate collaboration, as we are 
doing for the project manager and GL accounting efforts.


Jacopo

[EMAIL PROTECTED] wrote:

Author: sichen
Date: Fri Nov 30 14:16:08 2007
New Revision: 599982

URL: http://svn.apache.org/viewvc?rev=599982view=rev
Log:
Adding a couple of properties to shipment.properties to support future Fedex 
SOAP integration

Modified:
ofbiz/trunk/applications/product/config/shipment.properties