Re: (Accounting -> Payment -> Find Sales Invoices By Due Date) not working.

2008-07-17 Thread brijesh m
Hi Jacopo, I have configured it properly but the thing is that when you select an organization from "Organization Party Id" drop down it does not shows you the results specific to that organization but all the organizations are involved in the result. So may be there is some problem with the que

Re: (Accounting -> Payment -> Find Sales Invoices By Due Date) not working.

2008-07-17 Thread Jacopo Cappellato
Hi Brijesh, this has been fixed on 20 June in rev. 669845 Jacopo On Jul 17, 2008, at 9:51 AM, brijesh m wrote: Hi Jacopo, I have configured it properly but the thing is that when you select an organization from "Organization Party Id" drop down it does not shows you the results specific

Calling Stored Procedure through ofbiz

2008-07-17 Thread gopalbi
Hi Friends i need your help, I am using mysql database. i have to call a Stored Procedure through ofbiz using a submit button event or any other event. So anyone of you know how to achieve this, kindly help me. Thanks in advance. Thanks & Regards Gopal Bisht -- V

Re: Question about adding a new product

2008-07-17 Thread Jacques Le Roux
From: "cruiz" <[EMAIL PROTECTED]> Hello everyone! On Catalog -> New Product, there's a field called 'Require Inventory' with a Y/N option. What does this means? This is used for drop shipping. It allow to sell a product you don't have in inventory. It overrides the store setting. "Should i

Re: (Accounting -> Payment -> Find Sales Invoices By Due Date) not working.

2008-07-17 Thread brijesh m
Thanks Jacopo problem fixed. Enjoy OFBIZ Brijesh M. Jacopo Cappellato <[EMAIL PROTECTED]> wrote: Hi Brijesh, this has been fixed on 20 June in rev. 669845 Jacopo On Jul 17, 2008, at 9:51 AM, brijesh m wrote: > Hi Jacopo, > I have configured it properly but the thing is that when you select

Re: Configurable product options question

2008-07-17 Thread Jacques Le Roux
Hi BJ, I put a link from FAQ to your page "Steps to process a Configurable Product" Thanks Jacques From: "BJ Freeman" <[EMAIL PROTECTED]> or you can look up the order https://demo.hotwaxmedia.com/ordermgr/control/searchorders click on the order # then click on the Production Run in the orde

Re: Errors encountered in eCommerce and Ordermgr

2008-07-17 Thread Jacques Le Roux
Are you using OFBiz OOTB or have you customised (before I test) ? Jacques From: "rnatavio" <[EMAIL PROTECTED]> Here are the three errors I've encountered that I've been experiencing since rev673962 (first source i checked out), until rev677485:

Re: Errors encountered in eCommerce and Ordermgr

2008-07-17 Thread rnatavio
Hi Jacques, I haven't customized anything yet. I just updated from trunk, executed ant(clean, run-install), then started the app. Roy jacques.le.roux wrote: > > Are you using OFBiz OOTB or have you customised (before I test) ? > > Jacques > > From: "rnatavio" <[EMAIL PROTECTED]> >> >> Here

Re: Errors encountered in eCommerce and Ordermgr

2008-07-17 Thread Bilgin Ibryam
Roy, thanks for reporting these errors. 2) is fixed in trunk r677544. I'll check 1 and 3 before the end of this week. Bilgin

Adding flex fields for additional data capture

2008-07-17 Thread Paul Robinson
Hi, I am doing an implementation in Australia and our client has a requirement to store the ABN and ACN numbers for a company customer, AKA Party Group (I think). These fields for companies are localised to Australia but probably not just to this one client. Can anyone recommend the best app

OFBiz translations to German

2008-07-17 Thread Markus Studer
I'm currently doing some translations to German in the framework (common) part of OFBiz. I've created a small dictionary for the translations to get consistent translations. http://docs.ofbiz.org/display/OFBIZ/Dictionary+for+translations+to+German Feedback from German-speaking users/developers

Re: Adding flex fields for additional data capture

2008-07-17 Thread Jacopo Cappellato
Hi Paul, what is the meaning of the two ids? Jacopo On Jul 17, 2008, at 1:53 PM, Paul Robinson wrote: Hi, I am doing an implementation in Australia and our client has a requirement to store the ABN and ACN numbers for a company customer, AKA Party Group (I think). These fields for compan

Re: Adding flex fields for additional data capture

2008-07-17 Thread Paul Robinson
Hi Jacopo, Sorry about the acronyms. ABN: Australian Business Number - primarily used for small business ACN: Australian Company Number - used for corporations Every business in Australia is issue with these reference numbers - we need to print either of these numbers on customer invoices and

Re: Question about adding a new product

2008-07-17 Thread Bilgin Ibryam
Comments inline On Thu, 2008-07-17 at 10:29 +0200, Jacques Le Roux wrote: > From: "cruiz" <[EMAIL PROTECTED]> > > > > Hello everyone! > > > > On Catalog -> New Product, there's a field called 'Require Inventory' with a > > Y/N option. > > What does this means? Jacques, if I remember right, "Req

Re: Adding flex fields for additional data capture

2008-07-17 Thread Jacopo Cappellato
Are they used for fiscal purposes, like taxId? If the answer is yes, then the right field in OFBiz is PartyTaxAuthInfo.taxId Jacopo On Jul 17, 2008, at 2:19 PM, Paul Robinson wrote: Hi Jacopo, Sorry about the acronyms. ABN: Australian Business Number - primarily used for small business A

Categories/products and parties

2008-07-17 Thread Amine Benkirane
Hi, I'm customizing, acutally, an OFBiz ecommerce site. For my specific needs, I want to associates Categories and products with parties. Basically, I add a party like customerA (partyId = 1) and I want that this customer can only visualize (and buy) the categories and products which

Re: Calling Stored Procedure through ofbiz

2008-07-17 Thread toanilsoni
Gopal, Stored procedures will be database and application specific. If you want to implement this then you need to write some JDBC code in a Java service and call your stored procedures directly. On 7/17/08, gopalbi <[EMAIL PROTECTED]> wrote: > > > Hi Friends i need your help, > > I am

Re: Adding flex fields for additional data capture

2008-07-17 Thread Paul Robinson
Yep, that will do it. It would be nice to identify though what type of number the customer has given us, but this will work just fine. Thanks for your help. Jacopo Cappellato wrote: Are they used for fiscal purposes, like taxId? If the answer is yes, then the right field in OFBiz is PartyTa

Re: Categories/products and parties

2008-07-17 Thread Jacopo Cappellato
You should add to the party 1 the role of CUSTOMER to avoid that error. Jacopo On Jul 17, 2008, at 2:28 PM, Amine Benkirane wrote: Hi, I'm customizing, acutally, an OFBiz ecommerce site. For my specific needs, I want to associates Categories and products with parties. Basicall

Re: Adding flex fields for additional data capture

2008-07-17 Thread Jacopo Cappellato
You may consider to 'classify' your customer using the PartyClassification entity... not really related to this, but maybe it could work for you. Kind regards, Jacopo On Jul 17, 2008, at 2:31 PM, Paul Robinson wrote: Yep, that will do it. It would be nice to identify though what type of

RE: Categories/products and parties

2008-07-17 Thread Amine Benkirane
Ok it works !! Thank you Jacopo I only have a question : when a party logged in the ecommerce site, is this association generate the ecommerce browse categories with only the categories associated with the party ? Regards, Amine > From: [EMAIL PROTECTED] > To: user@ofbiz.apache.org >

Re: One page check out.

2008-07-17 Thread BJ Freeman
For a new user this is not evident which is why a suggest a dropdown. ravindra mandre sent the following on 7/16/2008 9:28 PM: > Hi, > I think you should use geoId (USA) instead of geoCode (US). > Also go through the Geo entity, hope you get the solution. > > Regards > Ravi Mandre >

Re: One page check out.

2008-07-17 Thread BJ Freeman
The Problem is more what to put in the box for Country. different sites use either USA or US. Since we have the countries list it would seem that a dropdown would reduce this error even in with other countries. the same for the State, where based on the country a drop Down of states or providences

Re: Calling Stored Procedure through ofbiz

2008-07-17 Thread BJ Freeman
ofbiz, depending on the db will convert the SQL statements to temp Stored procedures. you can use the direct SQL statement. However I suggest you understand ofbiz and ECA you may be duplicating what ofbiz does. http://docs.ofbiz.org/pages/listpages-dirview.action?key=OFBTECH particularly Framewor

Re: Configurable product options question

2008-07-17 Thread BJ Freeman
Glad to help Jacques Le Roux sent the following on 7/17/2008 1:31 AM: > Hi BJ, > > I put a link from FAQ to your page "Steps to process a Configurable > Product" > > Thanks > > Jacques > > From: "BJ Freeman" <[EMAIL PROTECTED]> >> or you can look up the order >> https://demo.hotwaxmedia.com/o

Re: OFBiz translations to German

2008-07-17 Thread Jacques Le Roux
Hi Markus, This is an interesting intiative. I will try do the same in French. Really easier to share (even between languages) than digging into uiLabels files or UI. Thanks Jacques From: "Markus Studer" <[EMAIL PROTECTED]> I'm currently doing some translations to German in the framework (co

Re: Adding flex fields for additional data capture

2008-07-17 Thread Jacques Le Roux
Payl, FYI, If it's the case (fiscal) this infomation is used in invoice https://issues.apache.org/jira/browse/OFBIZ-362 Jacques From: "Jacopo Cappellato" <[EMAIL PROTECTED]> Are they used for fiscal purposes, like taxId? If the answer is yes, then the right field in OFBiz is PartyTaxAuthInfo

Re: Question about adding a new product

2008-07-17 Thread Jacques Le Roux
From: "Bilgin Ibryam" <[EMAIL PROTECTED]> Comments inline On Thu, 2008-07-17 at 10:29 +0200, Jacques Le Roux wrote: From: "cruiz" <[EMAIL PROTECTED]> > > Hello everyone! > > On Catalog -> New Product, there's a field called 'Require Inventory' with a > Y/N option. > What does this means? J

How to use labels that contains a period with in a ftl

2008-07-17 Thread Vikas Mayur
I come across to use a label checkhelper.select_shipping_destination defined in OrderUiLabel in a ftl file.But this does not work the usual way ${uiLabelMap.checkhelper.select_shipping_destination}. Is there a way to use these kind labels. Thanks, - Vikas

Re: GST/VAT on invoiced time entries

2008-07-17 Thread David E Jones
On Jul 16, 2008, at 9:25 PM, Guy Gershoni wrote: Hi David, Thanks heaps for your quick and patient reply... the good spirit of the mailing lists is one reason I love Ofbiz. On Thu, Jul 17, 2008 at 1:06 PM, David E Jones <[EMAIL PROTECTED] > wrote: Right now the tax calculation is only done

Re: How to use labels that contains a period with in a ftl

2008-07-17 Thread David E Jones
Try: ${uiLabelMap.["checkhelper.select_shipping_destination"]} But yeah, it is probably better to avoid periods in label names... -David On Jul 17, 2008, at 7:24 AM, Vikas Mayur wrote: I come across to use a label checkhelper.select_shipping_destination defined in OrderUiLabel in a ftl f

Re: How to use labels that contains a period with in a ftl

2008-07-17 Thread Jacopo Cappellato
wow, thanks David... I've learned something new today. Jacopo On Jul 17, 2008, at 3:31 PM, David E Jones wrote: Try: ${uiLabelMap.["checkhelper.select_shipping_destination"]} But yeah, it is probably better to avoid periods in label names... -David On Jul 17, 2008, at 7:24 AM, Vikas May

Re: One page check out.

2008-07-17 Thread Vikas Mayur
>> For a new user this is not evident . Yes - I agree. We can modify the existing label to support the autocompletion artifacts. >> which is why a suggest a dropdown. This is what actually exists in other checkout processes and for One Page its a new feature. Drop down is supported in Step 4

Re: How to use labels that contains a period with in a ftl

2008-07-17 Thread Jacques Le Roux
Voodoo :o) Jacques From: "Jacopo Cappellato" <[EMAIL PROTECTED]> wow, thanks David... I've learned something new today. Jacopo On Jul 17, 2008, at 3:31 PM, David E Jones wrote: Try: ${uiLabelMap.["checkhelper.select_shipping_destination"]} But yeah, it is probably better to avoid period

Re: How to use labels that contains a period with in a ftl

2008-07-17 Thread Vikas Mayur
Thanks David - but its not working at all. I am getting a parse exception and freemarker editor is also showing an error. - Vikas On Thu, Jul 17, 2008 at 7:01 PM, David E Jones <[EMAIL PROTECTED]> wrote: > > Try: > > ${uiLabelMap.["checkhelper.select_shipping_destination"]} > > But yeah, it is pr

Re: EFT accounts

2008-07-17 Thread Roland
Hi BJ, thanks for the clarification, so from an international point of view it makes sense. Greetings, Roland On Tuesday 15 July 2008 23:53, BJ Freeman wrote: > it varies by bank. I have two accounts and one allows eft from savings > and one does not. > I don't believe there is an EFT processor

Re: EFT accounts

2008-07-17 Thread Roland
Hi Christian, yes, I already looked around for DTA implementations, there is one LGPL where it's worth to take a look: http://www.jdtaus.org/ Maybe we should discuss about implementation? I'll need at least another 2-4 weeks before work can start here... --Roland On Wednesday 16 July 2008 17:

Re: How to use labels that contains a period with in a ftl

2008-07-17 Thread David E Jones
What is the parse error? Could you send over (using copy/paste) the exact text you used? This definitely works when doing an #assign, and should work for string expansion in FTL as well... -David On Jul 17, 2008, at 7:46 AM, Vikas Mayur wrote: Thanks David - but its not working at all.

Re: Pack ordered items from multiple facilities

2008-07-17 Thread Paul Robinson
Thanks Jacopo, It can kind of be solved with what you have described. The problem I have is this: All items are delivered by the business courier and the delivery driver needs to know where to pick up the stock - I was hoping to use the pick list for each facility Some more detail on the Scen

Re: OFBiz translations to German

2008-07-17 Thread Roland
Hi Markus, sounds really great :) only one thing: cancelled i think it's nearly impossible to define only one translation for that, depending on context there are some possibilities... http://dict.leo.org/?search=cancelled --Roland On Thursday 17 July 2008 14:05, Markus Studer wrote: > I'm cur

Re: How to use labels that contains a period with in a ftl

2008-07-17 Thread Bilgin Ibryam
On Thu, 2008-07-17 at 19:16 +0530, Vikas Mayur wrote: > Thanks David - but its not working at all. I am getting a parse exception > and freemarker editor is also showing an error. > - Vikas Try w/o dot: ${uiLabelMap["checkhelper.select_shipping_destination"]} Bilgin

Re: How to use labels that contains a period with in a ftl

2008-07-17 Thread Vikas Mayur
I have used ${uiLabelMap.[ "checkhelper.select_shipping_destination"]} and following is the error log: Error rendering included template at location [component://order/webapp/ordermgr/return/quickReturn.ftl]: freemarker.core.ParseException: Encountered "[" at line 70, column 48. Was expecting one

Re: How to use labels that contains a period with in a ftl

2008-07-17 Thread Vikas Mayur
Hi Bilgin, As per your suggestion - I tried with 1) ${uiLabelMap["checkhelperselect_shipping_destination"]} - > Results in the same error 2) ${uiLabelMap.checkhelperselect_shipping_destination} --> Screen does not break this time but label is rendered as it is (checkhelperselect_shipping_destinatio

Re: How to use labels that contains a period with in a ftl

2008-07-17 Thread Bilgin Ibryam
Sorry for not being clear. This one works for me: ${uiLabelMap["checkhelper.select_shipping_destination"]} Bilgin

Re: How to use labels that contains a period with in a ftl

2008-07-17 Thread Ashish Vijaywargiya
Yes Bilgin you are right. Vikas has gone so I am confirming you that its working :-). Thanks Buddy. On Thu, Jul 17, 2008 at 7:42 PM, Bilgin Ibryam <[EMAIL PROTECTED]> wrote: > Sorry for not being clear. > This one works for me: > > ${uiLabelMap["checkhelper.select_shipping_destination"]} > > Bil

Re: EFT accounts

2008-07-17 Thread BJ Freeman
sorry had to go back and read the orginal email. [I'm trying to figure out how EftAccount.accountType should work, via the "createEftAccount" Service I can put anything in that field (but it's required). Using it via party manager, it depends on language settings, what ends up inside the database (

Re: OFBiz translations to German

2008-07-17 Thread Markus Studer
sounds really great :) only one thing: cancelled i think it's nearly impossible to define only one translation for that, depending on context there are some possibilities... http://dict.leo.org/?search=cancelled yes, that's right. I want to define translations that fit for most cases (hopeful

Re: Pack ordered items from multiple facilities

2008-07-17 Thread Bilgin Ibryam
Paul, If you set the "One Inventory Facility" flag to No, the system will try to reserve inventory from the first facility in ProductStoreFacility list that can totally reserve from. If there is no facility with enough quantity, inventory will be reserved from the first facility in the list Produc

Category and products restriction access to parties

2008-07-17 Thread Amine Benkirane
Hi, I'm customizing, acutally, an OFBiz ecommerce site. For my specific needs, I want to restrict categories and products visualizations on the ecommerce site for some parties. Basically, I add a party like customerA (partyId = 1) and I want that this customer can only visualize (

Re: Category and products restriction access to parties

2008-07-17 Thread BJ Freeman
I think, from past conversations, that can be done at the catalog level. Amine Benkirane sent the following on 7/17/2008 8:29 AM: > Hi, > > I'm customizing, acutally, an OFBiz ecommerce site. For my specific > needs, I want to restrict categories and products visualizations on the > eco

Template in Content module

2008-07-17 Thread Jacques Le Roux
Hi, I'm looking closerly at the Content application. I find the List and Find buttons very confusing. You understand when you use Find, but what is the List button used for ? I had a look at the ManagerReferenceContent.pdf file, but I'm sorry to say that it does not help a lot. Maybe because t

Re: Template in Content module

2008-07-17 Thread Jacques Le Roux
I should have say about the ManagerReferenceContent.pdf file, and ManagerReference*.pdf file at large, that was they miss most is the "Why". You have (sometimes a part of) the "How" but it's not sufficient to understand, anyway too late. So it look like it was been keeped cryptic for a reason yo

Re: Template in Content module

2008-07-17 Thread David Jones
Which part of the content manager are you looking at, ie which screens/requests/whatever? If you are looking at the layout editor you might want to check out the history of the relevant files. I don't think it's been touch much in the last 4-5 years, and honestly much of the content stuff from

Re: Template in Content module

2008-07-17 Thread Bruno Busco
I think Jacques is referring to https://localhost:8443/content/control/FindLayout In OFBIZ-1881 there is a patch to use the FindScreenDecorator in this screen. So now may be the two links List and Find could be now removed. -Bruno 2008/7/17 Davi

Re: no emails sent

2008-07-17 Thread Heidi Dehaes
Thanks for all information. It is already better with defining the email in the store. but is there a JavaMail specialist. I got still this error. And i modified the emailservices.java file to use the gmail mailprovider. I used the trunk version to modify the release 4 version a little bit with n

Re: no emails sent

2008-07-17 Thread BJ Freeman
not an expert :) did a google on com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.0 Must issue a STARTTLS saw you email on nabble found this http://forums.sun.com/thread.jspa?threadID=617974&tstart=-1 Heidi Dehaes sent the following on 7/17/2008 2:56 PM: > Thanks for all information. > It i

Re: no emails sent

2008-07-17 Thread BJ Freeman
as a side note: look at using the Apache James mail server. been using it for a few years now. Heidi Dehaes sent the following on 7/17/2008 2:56 PM: > Thanks for all information. > It is already better with defining the email in the store. > > but is there a JavaMail specialist. I got still this

Re: no emails sent

2008-07-17 Thread BJ Freeman
also if you want to put you modes for ver4.0 somewhere link them to http://docs.ofbiz.org/display/OFBIZ/email+%28java+mail+and+Communications+Events%29 Heidi Dehaes sent the following on 7/17/2008 2:56 PM: > Thanks for all information. > It is already better with defining the email in the store.

Re: no emails sent

2008-07-17 Thread Adrian Crum
Heidi, The commit log shows three commits were required to implement gmail. Did you get all of those changes ported over to Release 4? -Adrian Heidi Dehaes wrote: Thanks for all information. It is already better with defining the email in the store. but is there a JavaMail specialist. I got

Re: Errors encountered in eCommerce and Ordermgr

2008-07-17 Thread rnatavio
Thanks Bilgin for the info. I'll update my source right away and keep everyone posted on errors/bugs I encounter, and how I managed to solve it (if ever I can solve some of 'em). Cheers and Regards Roy Bilgin Ibryam wrote: > > > Roy, thanks for reporting these errors. > > 2) is fixed in trun

Error: Edit Shipment Package

2008-07-17 Thread rnatavio
Hi All, I found this broken link when I tried to edit a shipment package in the facility module. Clicking the "Packages" link throws this error: org.ofbiz.widget.screen.ScreenRenderException: Error rendering screen [component://product/widget/facility/ShipmentScreens.xml#EditShipmentPackages]: o

Membership Entity

2008-07-17 Thread ian tabangay
Hi. Can anyone direct me to what entity(s) I can use to store membership details. Thanks. ~ ian

Re: Membership Entity

2008-07-17 Thread BJ Freeman
https://demo.hotwaxmedia.com/webtools/control/ArtifactInfo type membership and select entity. ian tabangay sent the following on 7/17/2008 8:06 PM: > Hi. Can anyone direct me to what entity(s) I can use to store membership > details. Thanks. > > ~ ian >

Re: Membership Entity

2008-07-17 Thread BJ Freeman
apologize, Membership as in subscriptions? BJ Freeman sent the following on 7/17/2008 8:14 PM: > https://demo.hotwaxmedia.com/webtools/control/ArtifactInfo > type membership and select entity. > > ian tabangay sent the following on 7/17/2008 8:06 PM: >> Hi. Can anyone direct me to what entity(s)

Re: Membership Entity

2008-07-17 Thread ian tabangay
No not really. Correct me if my understanding of that table is wrong. The Subscription table is used more for "subscription of a product". I was looking more of a membership to a store or group of stores where in a party can, for example, get benefits like discounts. On Fri, Jul 18, 2008 at 11:23

Re: Membership Entity

2008-07-17 Thread BJ Freeman
well you can use subscription for that. Just have to do some tweaking. however the marketing module lets you develop discounts based on buying without subscriptions. See the demo eccommerce. ian tabangay sent the following on 7/17/2008 8:35 PM: > No not really. Correct me if my understanding of t

Re: Membership Entity

2008-07-17 Thread BJ Freeman
BTW the Party, which is how we call any person and/or company has a point system built in per party. so you can also use the marketing based on that. BJ Freeman sent the following on 7/17/2008 9:27 PM: > well you can use subscription for that. Just have to do some tweaking. > however the marketing

Inventory on hand reports in XLS or PDF ??

2008-07-17 Thread Rupinder
Hi all, I want Inventory on hand reports in the form of XLS or PDF. Is there any functionality for doing the same. -- View this message in context: http://www.nabble.com/Inventory-on-hand-reports-in-XLS-or-PDFtp18522728p18522728.html Sent from the OFBiz - User mailing list archive at Nabble

Re: Membership Entity

2008-07-17 Thread David E Jones
BJ: what does discounts in a store or group of stores have to do with subscriptions? Ian: more information is definitely needed, and one easy way to communicate it is the process you want for the company and customer to go through. You might consider the entities that related ProductStore