Re: how to add multiple .ftl files in screen.xml based on user permissions using if else conditions

2023-04-11 Thread Gil Portenseigne
One way of doing that is to have a structure like                 One                                  permission="XERUS_ASSETMAINTENANCE" action="_VIEW"/>            two                

Re: how to add multiple .ftl files in screen.xml based on user permissions using if else conditions

2023-04-11 Thread Gil Portenseigne
Hello Mahi, You can find multiple examples in the code base looking for : `` One of :         service-name="workEffortGenericPermission" main-action="VIEW"/>             location="component://workeffort/template/task/MyTasks.ftl"/>            

Re: Ofbiz using itext-2.1.7

2022-08-12 Thread Gil Portenseigne
Hello Rishin, This Itext version was the last version that could be included in OFBiz regarding the Licence (MPL). Nothing to worry about this. Regards, Gil Details : https://www.apache.org/legal/resolved On Fri, Aug 12, 2022 at 08:15:37AM +0200, Rishi Agr wrote: > Hi, There is a usage of

Re: Product Key duplicate error

2021-10-09 Thread Gil Portenseigne
Hello Justine, There is a table `SequenceValueItem` that manage those kind of sequences, you just need to set a value above you max product Id into the tuple with SeqName = "Product". Then reboot your OFBiz instance to empty the current sequence bank in memory. Regards, Gil On Fri, Oct 08,

Re: XML Exports

2021-08-11 Thread Gil Portenseigne
--- Original Message > Subject: Re: XML Exports > From: Gil Portenseigne > Date: Wed, August 11, 2021 1:39 am > To: user@ofbiz.apache.org > > Hello James, > > You can find in webtools [1] several tools to export your data. > You can select the table to export or

Re: XML Exports

2021-08-11 Thread Gil Portenseigne
Hello James, You can find in webtools [1] several tools to export your data. You can select the table to export or export all data. Regards, Gil [1] https://demo-trunk.ofbiz.apache.org/webtools/control/xmldsdump On Tue, Aug 10, 2021 at 07:59:03AM -0700, ja...@productive1.com wrote: > Is there

Re: Organization of Tests

2021-05-21 Thread Gil Portenseigne
Hello, Please find answers below : - Which test classes belong where? There are two Different types of test (not mentioning selenium webdriver test) * Unit test : Should be quick since compiled and executed at launch of the application, via the gradle tasks :compileTestJava and

Re: The Difference between "Current stable Release ERP" and "Developer Trunk ERP"

2021-05-21 Thread Gil Portenseigne
Hello, The developer Trunk version is the trunk development branch with all the last new features and improvements. Every period, a release branch is created and maintained, updated with bug/security fix only. During a stabilization period (about one year), stable release are created from

Re: Created plugins are not showing up in DEV Environment

2020-11-13 Thread Gil Portenseigne
nse, > > No I did not, and now I tried it but it is still not showing up at the main > tab menu, are there any other things that I might have missed? > > Thank you so much, > Daors > > On Fri, Nov 13, 2020 at 10:40 AM Gil Portenseigne < > gil.portensei...@nereide.fr> wrot

Re: Created plugins are not showing up in DEV Environment

2020-11-13 Thread Gil Portenseigne
Hello Daors, After installing your plugin, do you have it present in plugins folder in OFBiz root directory ? If so have you defined a webapp in its ofbiz-component.xml with the property : app-bar-display="true" Regards, Gil On Fri, Nov 13, 2020 at 09:35:39AM -, Daors wrote: > Hello

Re: Unable to impersonate

2020-08-19 Thread Gil Portenseigne
Hello James, When i met this issue, that means that the user you try to impersonate has not the permission for the current webapp. Gil On Wed, Aug 19, 2020 at 02:34:21PM -, James Yong wrote: > Hi all, > > I logged in as admin and tried to impersonate other accounts, but keep > getting

Re: Start Service on Ofbiz Startup

2020-01-28 Thread Gil Portenseigne
Hello Ingo, For this case, i think I would plan a job to run every X minutes, that will check if the connexion is alive or, establish it. The jobPoller will then take care of it after OFBiz is launched. Depending on the connexion type it might be enough. AFAIK there is no standard configuration

Re: Installation trouble

2020-01-22 Thread Gil Portenseigne
On Wed, Jan 22, 2020 at 10:30:14AM +0100, Gil Portenseigne wrote: > Hello, > > Typo : And you should be able to : $ ./gradlew loadAll signature.asc Description: PGP signature

Re: Installation trouble

2020-01-22 Thread Gil Portenseigne
Hello, You seems to have well installed java and unzipped OFBiz, and downloaded the gradle wrapper. Now you should have in your OFBiz directory an executable : gradlew And you should be able to : $ .gradlew loadAll And continue with this executable for the other command (launching the app etc.)

Re: ApacheCon EU19 in Berlin (Germany)

2019-07-12 Thread Gil Portenseigne
Hello, For Nereide, at least Mathieu, Nicolas and I are planning to come to Berlin for the ApacheCon. I hope there will be OFBiz people there :). Since Mathieu's conference proposal was rejected, we wonder if we could organize unofficial workshop about OFBiz. We are currently working on a new

Re: Changes to email settings in general.properties seem to be ignored

2019-03-25 Thread Gil Portenseigne
Hello Martin, I think you got the good track for your issue. Like you did, mailing configuration is done in general.property configuration file. But for multi-tenancy and others purpose OFBiz is embedded with SystemProperty configuration in database that can overload file system configuration.

Re: 答复: How to Create Plugin without loadDefault

2018-11-28 Thread Gil Portenseigne
but I just don’t > want to mess up what I have done. > Any further hint? > > Thanks > Schumann > 发件人: Gil Portenseigne<mailto:gil.portensei...@nereide.fr> > 发送时间: 2018年11月28日 4:37 > 收件人: user@ofbiz.apache.org<mailto:user@ofbiz.apache.org> > 主题: Re: How to Create Plu

Re: How to Create Plugin without loadDefault

2018-11-27 Thread Gil Portenseigne
Hello Schumann, I believe what you are looking for is to load specific readers, to avoid loading demo data. ./gradlew "ofbiz --load-data readers=seed" This command will load all seed data, and thus security data of your newly created plugin. You could also use webtools webapp to load reader

Re: INSTALLING OFBIZ V16.11.04

2018-09-11 Thread Gil Portenseigne
Hello, It seems you miss some data in your database. Be sure to load demo data with : ./gradlew loadDefault Gil > > Hi Michael > > I managed to verify the downloaded file using SHA512, it is ok. Followed > remaining steps in README.md and got to 91% after entering command sudo > ./gradlew

Re: Should we keep the multi-tenants feature in OFBiz?

2018-09-07 Thread Gil Portenseigne
Hello, Very nice analysis, I got the same feeling about multi-tenancy, and prefer using separate instances encapsulated within VM. Gil Le mardi 04 sept. 2018 à 19:12:20 (+0300), Taher Alkhateeb a écrit : > The question is: is it worth keeping it? To answer this question, > perhaps we need to

Re: Fresh Start: 17.12 or 16.11

2018-08-03 Thread Gil Portenseigne
Hello Charles, In my opinion, whereas branch 17.12 is in stabilization period and you might encounter some bugs, but if you are not in a hurry i'll go with it, since there has been 8 month of bug fixes and a stable release should come up at the end of the year or so. This done that would spare

Re: Need help to start OFBiz

2018-07-31 Thread Gil Portenseigne
Hello Ahmad, I think that the main issue your facing is the name of your folder "software" Please retry after renaming it without & character, you should go further. Gil Le 31 juillet 2018 21:10:18 GMT+02:00, Ahmad Saki a écrit : > Dear all, >1. When I type "cd

Re: data import - product images

2018-02-23 Thread gil portenseigne
Hello Jesse, You could manually manage your transactions within your service using : actualTransaction = TransactionUtil.suspend(); //suspend the current transaction TransactionUtil.begin(600); //Start a new one [...] if (ServiceUtil.isError(result)) {     TransactionUtil.rollback();

Re: loadDefault Source Code

2018-01-15 Thread gil portenseigne
Hello, You will find loadDefault task implementation within the file build.gradle at OFBiz root directory. (see line 320) Regards, Gil On 14/01/2018 22:18, stim...@comcast.net wrote: This is probably a naive question, but on 16.11.04 I am searching for the actual code which runs for the

Re: Ofbiz Cookbook

2016-08-13 Thread gil portenseigne
Minilang Could be the R17 main task? Jacques Le 12/08/2016 à 12:34, gil portenseigne a écrit : +1 Indeed, and moreover in the wiki page you link, there is autocompletion configuration in IDE Integration part. Thanks Gil Le 12/08/2016 à 12:13, Jacques Le Roux a écrit : +1 I think Jacopo has

Re: Ofbiz Cookbook

2016-08-12 Thread gil portenseigne
+1 Indeed, and moreover in the wiki page you link, there is autocompletion configuration in IDE Integration part. Thanks Gil Le 12/08/2016 à 12:13, Jacques Le Roux a écrit : +1 I think Jacopo has more to say about that :)

Re: Add tax to billed hours

2016-07-27 Thread gil portenseigne
Oh, and : https://issues.apache.org/jira/browse/OFBIZ-7138 Gil Le 27/07/2016 à 15:23, gil portenseigne a écrit : Hi Jacques, Yes, the type of work is the product associated with workEffort using WorkEffortGoodStandard. We did not take into consideration the parties involved

Re: Add tax to billed hours

2016-07-27 Thread gil portenseigne
customer (same GEO?)" ? This can be quite hard IIRW a Nicolas's comment recently (in another Jira I can't remember FTTOMH; or was it on a ML directly?) Thanks Jacques Le 27/07/2016 à 14:33, gil portenseigne a écrit : Hi, I agreethat creating a new Jira is better. Gil Le 27/07

Re: Add tax to billed hours

2016-07-27 Thread gil portenseigne
Hi, I agreethat creating a new Jira is better. Gil Le 27/07/2016 à 13:39, Taher Alkhateeb a écrit : The JIRA is too old and irrelevant, I think Florian should start a new JIRA with their efforts and the plans and the details discussed above in the description of that JIRA. On Wed, Jul 27,

Re: Add tax to billed hours

2016-07-26 Thread gil portenseigne
Hi Taher, Thanks for your advice and indeed this has been think through, to be a global improvement in invoice creation, based on time entries billing. This would apply for both (project and Scrum), and this could be the good way to refactor both invoice creation process (two different

Re: [MARKETING] New OFBiz Logos - Feedback Required

2016-07-19 Thread gil portenseigne
+1 for 3 Love it :) Gil Le 14/07/2016 à 20:58, Gavin Mabie a écrit : +1 for 3 On 14 Jul 2016 8:39 PM, "Skip" wrote: +1 for "At 1st glance I like 4th the most (actually I dislike others)" -Original Message- From: Jacques Le Roux

Re: Update of the wiki "Apache OFBiz User List" page

2016-07-01 Thread gil portenseigne
Thanks Jacques, I did removed Neogia that is do no exists anymore ! Gil On 01/07/2016 17:40, Jacques Le Roux wrote: Hi All, At the top of https://cwiki.apache.org/confluence/display/OFBIZ/Apache+OFBiz+User+List there is a list of "Products and Projects based on Apache OFBiz" At the

Re: [DISCUSSION] Anticipate the end of life of the 13.07 branch and backport some non-bug related changes to the 14.12 and 15.12 branches

2016-06-29 Thread gil portenseigne
+1 Gil On 29/06/2016 11:49, Christian Geisert wrote: While replacing Ant with Gradle sounds like a good plan, I don't think it's a good idea to backport these changes. Seriously, when implementing OFBiz at a customer the only sane choice is to use a release branch (even if there is no release

Re: {MARKETING] New OFBiz Logo for Website

2016-05-30 Thread gil portenseigne
+1 for the second ! On 30/05/2016 07:50, Deepak Dixit wrote: +1 for second one. Thanks & Regards -- Deepak Dixit www.hotwaxsystems.com On Mon, May 30, 2016 at 10:10 AM, Vaibhav Jain < vaibhav.j...@hotwaxsystems.com> wrote: Hello all, I also like the second one Best regards Vaibhav Jain

Re: Remove this email from the any user/mailing groups

2016-03-15 Thread gil portenseigne
Hello, See http://ofbiz.apache.org/mailing-lists.html You just send an email to user-unsubscr...@ofbiz.apache.org from the mail you want to unsubscribe. Regards, On 15/03/2016 07:11, barou wrote: Please remove jean@novitek.dk from all the mailing list. Thanks -- View this message

Re: [MARKETING]: Potential Youtube Video for Downloading and Buidling OFBiz for Linu

2016-03-01 Thread gil portenseigne
Hi Sharan, Nicolas, Julien and myself enjoyed listening to you last night before going to bed ;). Nice video indeed ! So +1 to publish. Gil On 29/02/2016 19:35, Sharan-F wrote: Hi All I've had a go at creating a video for our OFBiz Youtube Channel and have included a link on our wiki

Re: Howto increase the login / session time for specific machines

2016-02-17 Thread gil portenseigne
Hi, You can configure it into the web.xml file of your webapp For example in partymgr : applications/party/webapp/partymgr/WEB-INF/web.xml 60 Regards Gil On 17/02/2016 19:28, Skip wrote: I have a requirement to increase the amount of time a logged-in-user keeps their credentials (session

Re: Feedback about FOSDEM

2016-02-01 Thread gil portenseigne
Hello, Sharan sum-up said it all, i didn't have the chance to meet Eric. Fosdem tweeter account said that following network estimation there were around 7900 attendees !!! We weren't well organized, so we wandered between presentation with interesting and very specific subjects, it's a

Re: Feedback about FOSDEM

2016-02-01 Thread gil portenseigne
nl 2016-02-01 12:06 GMT+01:00 gil portenseigne <gil.portensei...@nereide.fr>: Hello, Sharan sum-up said it all, i didn't have the chance to meet Eric. Fosdem tweeter account said that following network estimation there were around 7900 attendees !!! We weren't well organized, so we

Re: Replace ftl with html in ofbiz

2016-01-28 Thread gil portenseigne
Hello, In OFBiz ftl files contain html, if you read http://freemarker.incubator.apache.org/ You'll see that freemarker improve your html content with loop, variables, etc. If you want to use pure static html, it could be done in screens with (not tested but i guess it works):

Re: Replace ftl with html in ofbiz

2016-01-28 Thread gil portenseigne
Indeed like Pierre shows, only *.ftl files are supported. So depending on your need, you can use ftl files... Gil On 28/01/2016 16:20, gil portenseigne wrote: location="component://mycomponent/path/to/my/index.html"/>

Re: OFBiz Community Days 2016

2016-01-27 Thread gil portenseigne
As always i like the idea and will do my best to attend to these events ! Gil On 25/01/2016 11:14, Sharan-F wrote: Hi All Thanks to everyone who participated in the Community Days held last year. I think they are a good idea that helps focus the community on fixing Jira reported bugs and

Re: Apache OFBiz & FOSDEM January 30th & 31st January 2016

2016-01-27 Thread gil portenseigne
Hello, I don't know yet when i will be able to come but that's my will, see you in Brussel ! Regards, Gil On 27/01/2016 16:53, Heidi Dehaes - Olagos wrote: Hello Sharan, Nice to hear you will come over to Brussels. At what time will you be in Brussels and at the Beer Event? If my wife can

Re: Adrian Crum

2016-01-10 Thread gil portenseigne
+1 On 09/01/2016 16:03, Ron Wheeler wrote: Very good ideas. Ron On 09/01/2016 9:09 AM, Ejaz Ahmed wrote: Shocked to hear this news. I never met Adrian in person but I had pleasure to participate in discussions on this mailing list. I loved the way Adrian used reply newbies like me. He has

Re: Startofbiz.bat run with errors

2015-11-25 Thread gil portenseigne
Go here and follow http://ofbiz.apache.org/mailing-lists.html i.e. just send a mail to user-unsubscr...@ofbiz.apache.org using your registered mail. Gil On 26/11/2015 05:00, rj_du...@yahoo.com.INVALID wrote: Pls remove me from this forum thanks. Sent from my BlackBerry 10 smartphone on the

Re: Startofbiz.bat run with errors

2015-11-25 Thread gil portenseigne
Hi, I can't see your console message in this mail so hard to help :). Gil On 26/11/2015 03:03, robbinpengchen wrote: It's the first time I am using ofbiz, I just followed the step-by-step to install ofbiz, when I run startofbiz.bat, the message on the console is : and there is exception

Re: a question for write services by java

2015-11-16 Thread Gil portenseigne
Hello, Just by doing 'ant build' or simply 'ant' will compile your java code, no need to load-data. Gil On 17/11/2015 08:43, ?? wrote: hi, every time i change my java code, i have to do 'ant load-demo' to make it go into effect . is it a simple way to do that? thanks

Re: Calendar Integration

2015-10-17 Thread gil portenseigne
Hi Derek, See this thread http://ofbiz.markmail.org/message/zgnmgxilxircu4fl?q=calendar+integration#query:calendar%20integration+page:1+mid:kb3slhns656xijqz+state:results WorkEffort iCalendar is integrated in OFBiz :

Re: Apachecon EU 2015: Thanks!

2015-10-05 Thread gil portenseigne
Hi Shi, You can find all OFBiz related presentation in the wiki : https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Track+@+Apachecon+Core+EU+2015+Budapest Regards, Gil On 05/10/2015 07:52, Shi Jinghai wrote: Wow, thanks Sharan's report! Hope Apache can hold some events in China in

Re: Photos from ApacheCon EU 2015

2015-10-04 Thread Gil portenseigne
Great ! You manage to capture the fun during the brainstorming ;), sharing these moments is nice for the community ! Thanks and regards, Gil On 04/10/2015 22:42, Christian Geisert wrote: Hi, ApacheCon EU 2015 in Budapest was a great conference. Here are a few photos I took there :

Re: Temporal expression configuration

2015-09-25 Thread Gil portenseigne
Hi Vyom, I did some test about DAILY_GRIND and HOUR_RANGE, and it seems to work. To answer you question you can add another element to you daily_grind temporal expression like : tempExprTypeId="INTERSECTION" description="Monday to Friday at 8am at 00min without US Federal Holidays"/>

Re: Screen Rendering on Menu Permission

2015-09-17 Thread gil portenseigne
Hi Saurabh, A solution is to customize your main screen to check the permission, and include the screen you want following your defined rules : action="_UPLOAD"/> action="_OTHER"/>

Re: OFBiz Extensions Marketplace (OEM) - progress

2015-09-13 Thread Gil portenseigne
Hi Pierre, hi all, I agree with Micheal opinion, since there was some others initiative about this kind of proposal (thinking about OFBiz-extra and OFBiz-france association proposals), none found enough adoption into the community to get it work (yet). So each had to work on its own creating

Re: [MARKETING] OFBiz New Website Structure Proposals – Feedback Required

2015-09-08 Thread gil portenseigne
Hi Sharan, I think B is a more classic implementation, very clear. But i really like the idea of having an entry point "by role", it might be only x pages with links to other parts of the website, where we gather most interesting things for each role... Putting it into "Getting Started"

Re: Is this forum only for experienced Ofbizers?

2015-09-02 Thread gil portenseigne
Hello, Your example show an entity-auto service, which will, in this "invoke" case, create a record in Example table. If you look a bit further in the link you gave, you'll see : ||default||-entity-name=||"Person"| |engine=||"simple"|

Re: uiLabelMap

2015-08-04 Thread gil portenseigne
Yes and moreover in the CommonScreens.xml of each component you got the application decorators where you can find some : property-map resource=AccountingUiLabels map-name=uiLabelMap global=true/ To Add your label file, just add property-map resource=YourFileUiLabels map-name=uiLabelMap

Re: Import OFBiz WorkEffort into Outlook calendar

2015-07-17 Thread gil portenseigne
Software www.sandglass-software.com On 7/16/2015 3:20 AM, Gil portenseigne wrote: Hi, I have a simple need, i want to find a way to import a group of party WorkEffort into Outlook. I'm not familiar with Outlook so i wanted to know if someone already managed to do such needs and how ? I looked

Import OFBiz WorkEffort into Outlook calendar

2015-07-16 Thread Gil portenseigne
Hi, I have a simple need, i want to find a way to import a group of party WorkEffort into Outlook. I'm not familiar with Outlook so i wanted to know if someone already managed to do such needs and how ? I looked into mails, wiki and Jira, I only found

Re: [MARKETING] Updating our OFBiz Website

2015-05-26 Thread gil portenseigne
On 26/05/2015 16:56, Jacques Le Roux wrote: Le 26/05/2015 15:20, Adrian Crum a écrit : +1 I believe we should have separate sections for (potential) service providers and end users. Then the end user section can be linked to from end-user sites and it can be referenced in end user

Re: How should new committers handle backporting?

2015-05-19 Thread Gil portenseigne
+1, I didn't know about the scripts, very interesting, its a good place to have these info stored and shared. Gil On 19/05/2015 15:38, Jacques Le Roux wrote: Maybe we should add it at https://cwiki.apache.org/confluence/display/OFBADMIN/OFBiz+Committers+Roles+and+Responsibilities ?

Re: Welcome to our new committers

2015-05-19 Thread Gil portenseigne
Congratulations to all ! It's great to see so many new commiters in the community ! On 19/05/2015 19:32, Jacopo Cappellato wrote: On May 19, 2015, at 8:52 AM, Jacques Le Roux jacques.le.r...@les7arts.com wrote: Hi, I find weird to welcome new committers before it's officially announced but

Re: ApacheCon 2015

2015-04-20 Thread Gil portenseigne
Thanks Sharan ! On 20/04/2015 15:02, Sharan-F wrote: Hi All I've loaded all the OFBiz Apachecon NA presentations on to the Wiki at the link below. https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+track+@+Apachecon+US+2015+in+Texas%2C+Austin+-++April+13-17%2C+2015

Re: ApacheCon 2015

2015-04-17 Thread gil portenseigne
+1 For the last apache Con we gathered all slideshows here : https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+track+@+Apachecon+EU+2014+in+Budapest%2C+Hungary+Nov+17th+-+Nov+19th+2014 Could be a good way to keep them. Gil On 17/04/2015 07:46, Pierre Smits wrote: So it is in a tweet?

Re: ApacheCon 2015

2015-04-17 Thread gil portenseigne
Yeah the table is here but without the slideshows. https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+track+@+Apachecon+US+2015+in+Texas%2C+Austin+-++April+13-17%2C+2015 I'll add its to this page when i have some time. Gil On 17/04/2015 10:03, Jacques Le Roux wrote: Le 17/04/2015 10:01,

Re: Community Day Survey - Feedback Required

2015-03-23 Thread Gil portenseigne
Done ! I like your surveys ! Thanks Sharan ! Gil On 23/03/2015 11:13, Sharan-F wrote: Hi All A big thank you to everyone who participated in the our first ever OFBiz Community Day at the weekend. Every contribution helps! As mentioned we'd also like anyone who participated to complete a

Re: sending mails to contactlist (marketing component)

2015-02-04 Thread gil portenseigne
Belgium Tel. : 015/31 53 04 GSM :0485/22 35 80 E-mail : info.ola...@gmail.com http://www.olagos.eu http://www.olagos.com http://www.olagos.be http://www.olagos.nl 2015-02-04 13:50 GMT+01:00 gil portenseigne gil.portensei...@nereide.fr: Hi Heidi First you have to check that your instance

Re: sending mails to contactlist (marketing component)

2015-02-04 Thread gil portenseigne
Hi Heidi First you have to check that your instance is well configured within general.properties file, to send mail (look for smtp properties). Then you'll have to create a communication event with contactList associated. Write the subject and content, then you'll have the ability to

Re: [PROPOSAL] Increase community involvement by enabling contributors to assign themselves to their own issues.

2015-02-02 Thread gil portenseigne
+1 Good Idea ! Gil Le 30/01/2015 14:13, Pierre Smits a écrit : Hi All, *Preamble* Currently community involvement in the project is good, but like in any other other open source project it could be better. And better is more favourable than just good or good enough, right? The thing is,

Re: French speaking meeting in Paris

2015-01-12 Thread gil portenseigne
Hi, Just a reminder, it's still time to join us this Friday in Paris ! If you are interested and have not yet contacted us, feel free to do it here : http://www.ofbiz-fr.org/cmssite/cms/ofbiz-formulaire-evenement Cheers, Gil Le 19/12/2014 17:09, gil portenseigne a écrit : Hi, The OFBiz

Re: Congratulations!

2015-01-12 Thread gil portenseigne
Congratulations ! Gil Le 12/01/2015 08:00, Pierre Smits a écrit : Hi All, Please join me in welcoming and congratulating Pranay Panday and Mridul Pathak of HotWax Media as the newest committers of this project. According to the blog of HotWax Media (

French speaking meeting in Paris

2014-12-19 Thread gil portenseigne
Hi, The OFBiz France association organize its first event on january 16th in Paris. The goal of it is to introduce Apache OFBiz to users, followed by discussions (kind of barcamp) and experience feedback. This with Twelfth-Night pancake tasting ! We do propose this organization : *

Re: French speaking meeting in Paris

2014-12-19 Thread gil portenseigne
:0485/22 35 80 E-mail : info.ola...@gmail.com http://www.olagos.eu http://www.olagos.com http://www.olagos.be http://www.olagos.nl 2014-12-19 17:09 GMT+01:00 gil portenseigne gil.portensei...@nereide.fr: Hi, The OFBiz France association organize its first event on january 16th in Paris

Re: French speaking meeting in Paris

2014-12-19 Thread gil portenseigne
Heidi Dehaes Kerkstraat 34 2570 Duffel Belgium Tel. : 015/31 53 04 GSM :0485/22 35 80 E-mail : info.ola...@gmail.com http://www.olagos.eu http://www.olagos.com http://www.olagos.be http://www.olagos.nl 2014-12-19 17:19 GMT+01:00 gil portenseigne gil.portensei...@nereide.fr: Hi Eric

Re: French speaking meeting in Paris

2014-12-19 Thread gil portenseigne
Heidi Dehaes Kerkstraat 34 2570 Duffel Belgium Tel. : 015/31 53 04 GSM :0485/22 35 80 E-mail : info.ola...@gmail.com http://www.olagos.eu http://www.olagos.com http://www.olagos.be http://www.olagos.nl 2014-12-19 17:29 GMT+01:00 gil portenseigne gil.portensei...@nereide.fr: Yes it's

Re: Help needed to update an OFBiz Wiki Graffle Diagram

2014-12-16 Thread gil portenseigne
Hello, Care of http://www.neogia.org/wiki/index.php/U.F.O. link, the dot at the end is needed... As a testimony of this tool usage, its a great tool too quickly make UML diagrams from an OFBiz datamodel instance. When launching the app, you just have to specify the local OFBiz

Re: connection with external database

2014-12-07 Thread gil portenseigne
. (the wordpress-table has some entries which could be imported). Thank you for further ideas to get the import to work correctly! -- www.nereide.fr Gil Portenseigne Consultant ERP OFBiz Société Néréide 3b Les isles 37270 Veretz Tel : 09 74 53 46 09, puis 1, poste 61 Mob : 06

Re: Create new entity in ofbiz

2014-12-05 Thread gil portenseigne
Hello, I guess you can name it like you want if it's a new one, i'm not sure to have understand your question :) Gil Le 05/12/2014 10:26, DragonK a écrit : When i create a new entity, how to distinguish with entities of Ofbiz. Can I use prefix? -- View this message in context:

Re: Deletion of Party Data

2014-12-01 Thread gil portenseigne
Hello, You can't delete a party without using SQL processor, there are too many links with other entity, and afaik OFBiz do not offer a tool for that. OFBiz offer to desactivate the party in partymgr/control/editperson?partyId=YourPartyId , by changing his statuts. In most case it's

Re: OFBiz at Apachecon Europe

2014-11-24 Thread gil portenseigne
Hi Anahita ! It's never too late to share your thoughts ! It's a nice testimony of the feeling we got during the conferences, thanks for sharing it ! Best Regards Gil Le 24/11/2014 20:10, Anahita Goljahani a écrit : Hi all, I hope it's not too late to share a couple of

Re: OFBiz at Apachecon Europe

2014-11-21 Thread gil portenseigne
://cwiki.apache.org/confluence/display/OFBIZ/Brewing+with+OFBiz+-+a+case+study+by+Pierre+Smits Regards, Pierre Smits *ORRTIZ.COM http://www.orrtiz.com* Services Solutions for Cloud- Based Manufacturing, Professional Services and Retail Trade http://www.orrtiz.com -- www.nereide.fr Gil

Re: OFBiz at Apachecon Europe

2014-11-21 Thread gil portenseigne
-- View this message in context: http://ofbiz.135035.n4.nabble.com/OFBiz-at-Apachecon-Europe-tp4658651p4658723.html Sent from the OFBiz - User mailing list archive at Nabble.com. -- www.nereide.fr Gil Portenseigne Consultant ERP OFBiz Société Néréide 3b Les isles 37270 Veretz Tel : 09 74 53

Re: You must be logged in to complete the [Count Inventory On Hand

2014-10-23 Thread gil portenseigne
still confused. - Joel Fradkin -- View this message in context: http://ofbiz.135035.n4.nabble.com/You-must-be-logged-in-to-complete-the-Count-Inventory-On-Hand-tp4657325p4657328.html Sent from the OFBiz - User mailing list archive at Nabble.com. -- www.nereide.fr Gil

Re: OFBiz and Attitude Trust

2014-10-22 Thread gil portenseigne
to highlight that Scott! jacques PS: sorry if I tore too much parts apart, I just want to highlight it even more! -- www.nereide.fr Gil Portenseigne Consultant ERP OFBiz Société Néréide 3b Les isles 37270 Veretz Tel : 09 74 53 46 09, puis 1, poste 61 Mob : 06 82 740 444 www.nereide.fr

Re: else-comparequestion

2014-10-22 Thread gil portenseigne
list archive at Nabble.com. -- www.nereide.fr Gil Portenseigne Consultant ERP OFBiz Société Néréide 3b Les isles 37270 Veretz Tel : 09 74 53 46 09, puis 1, poste 61 Mob : 06 82 740 444 www.nereide.fr http://www.nereide.fr Membre d'OFBiz France www.ofbiz-fr.org http://www.ofbiz-fr.org

Re: else-comparequestion

2014-10-22 Thread gil portenseigne
The way i use to set xml catalog in eclipse : File - Import Select XML - XML Catalog Then choose in the root of your ofbiz checkout the .xmlcatalog.xml file and validate. After that ctrl + space will guide you into your xml coding. Gil Le 22/10/2014 17:45, gil portenseigne a écrit

Re: OFBiz Survey Results

2014-10-17 Thread gil portenseigne
Hi Sharan, Great Job you did there, it's quite interesting and show a nice overview of the OFBiz project and community. Need some time and discussions to draw conclusions. Thanks Again, Gil Le 17/10/2014 09:30, Sharan-F a écrit : Hi Everyone I’ve completed collating the results from

Re: Shouldn't the paginate bar appear regardless of the listSize gt viewSize?

2014-10-09 Thread gil portenseigne
bar should disappear when the listSize gt viewSize? The bar is useful for determining the record count which can't be determined when it disappears due to the condition being met. Anyone else think this is worthy of a JIRA? -- www.nereide.fr Gil Portenseigne Consultant ERP OFBiz

Re: Starting a new

2014-10-03 Thread gil portenseigne
, you will choose stable, testing, unstable or experimental ? :) Nicolas Le 02/10/2014 19:50, Forrest Rae a écrit : Hi Everyone, With a new deployment, starting from scratch, would you go with 12.04, wait for 13.07, or just use the trunk? -Forrest -- www.nereide.fr Gil Portenseigne

Re: [ANNOUNCE] Apache OFBiz 12.04.03 released

2014-06-19 Thread gil portenseigne
Gil Portenseigne Consultant ERP OFBiz Société Néréide 3b Les isles 37270 Veretz Tel : 09 74 53 46 09, puis 1, poste 61 Mob : 06 82 740 444 www.nereide.fr http://www.nereide.fr

RE: Still getting started but question about 'startofbiz.sh'

2012-07-30 Thread Gil Portenseigne
, instead of creating a bash shell session and leaving that terminal open all the time ofbiz is to run? Thanks Ted -- Gil Portenseigne gil.portensei...@nereide.fr

Re: Still getting started but question about 'startofbiz.sh'

2012-07-30 Thread Gil Portenseigne
) Jacques From: Gil Portenseigne gil.portensei...@nereide.fr Hi, Just do : sh startofbiz.sh Then you can exit the terminal. To stop, use the stopofbiz.sh script. Gil Le lundi 30 juillet 2012 à 08:15 -0400, Ted Byers a écrit : -Original Message- From

Re: Still getting started but question about 'startofbiz.sh'

2012-07-30 Thread Gil Portenseigne
folder for trunk and R12.04, else in root folder) Jacques From: Gil Portenseigne gil.portensei...@nereide.fr Hi, Just do : sh startofbiz.sh Then you can exit the terminal. To stop, use the stopofbiz.sh script. Gil Le lundi 30

Re: Who is using the seleniumxml and why?

2012-03-01 Thread Gil Portenseigne
will be facilitated to contribute them without the need to learn a new syntax); we could also provide an ant script to run all of them. In this way we could also use a more recent version of Selenium (web driver). Thanks for your time, Jacopo -- Gil Portenseigne gil.portensei