Re: Community Over Code Bratislava 2024

2024-06-03 Thread Gil Portenseigne
Hi all, 

Just to let you know we just met after this email ! 

A great pleasure, we hope to meet more people  :)

Regards

Gil

Le 3 juin 2024 10:20:36 GMT+02:00, Giulio Speri - MpStyle Srl 
 a écrit :
>Good morning devs,
>
>Me and my colleague Nicola are attending the Community Over Code Event in
>Bratislava.
>Is any of you also participating? It would be great to meet you in person!
>:)
>
>Have a nice day,
>Giulio


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
    
    
                        default
    
    
    


That is not elegant.


Another way I prefer is to have a script that define the screen to 
render like :



    
    
    

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"/>

    
    
    style="h3">${uiLabelMap.WorkEffortViewPermissionError}

    


If condition is true, widgets will display, else that will be fail-widgets

Regards

Gil

Le 11/04/2023 à 09:08, Mahi maheshwari a écrit :

Hello Community,

I want to add .ftl files in screens.xml for multiple users based on a few
conditions if there are multiple users named production user and quality
user and other users, so for this users if I want to give permission for
viewing any .ftl files, how can I do it.

*for instance*, if production_user has permission to view only the
production module then render production.ftl ,  if quality_user has
permission to view only the quality module then render quality.ftl and if
assets_user has permission to view the assets module then render
assetmaint.ftl.
I want to give conditions like if else in one  tag in screens.xml

*example: *
in widgets/screens.xml

if(User has Production_View permission)
then

else if(User has AssetMaintaince_View permission)
then

else if(User has Quality_View permission)
then
 
else

END of if


please let me know how can I achieve this.


Best Regards,
Maheshwari.



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 itext-2.1.7 (com.lowagie) library in ofbiz. And I
> am not sure if this comes under open source or some other license. Is it
> fine to use apache in commercial applications as it includes itext library?
> Thank you.


signature.asc
Description: PGP signature


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, 2021 at 10:04:59PM -0500, Justine Nowak wrote:
> Hello,
> 
> We did an XML upload of a lot of SKUs into Ofbiz, but today when I go to
> manually add a new product without a Product Id letting the system
> automatically decide that. I get the following error.
> 
> (SQL Exception while executing the following:null (Duplicate entry '10044'
> for key 'PRODUCT.PRIMARY'
> 
> How do we get the system to automatically generate the Product Id based on
> the next one in line.


signature.asc
Description: PGP signature


Re: XML Exports

2021-08-11 Thread Gil Portenseigne
In the export forms, there is a field 'Output Directory' that you must
fill. Files will be generated into that directory on the server hosting
the OFBiz.

Gil

On Wed, Aug 11, 2021 at 05:47:19AM -0700, ja...@productive1.com wrote:
> Where does it dump the xml files?
> 
> 
>  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 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 a way to get all XML data formats out of OFbiz so the template
> > can be used for import?
> > 
> > Thanks,
> > 
> > James


signature.asc
Description: PGP signature


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 a way to get all XML data formats out of OFbiz so the template
> can be used for import?
> 
> Thanks,
> 
> James


signature.asc
Description: PGP signature


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 
:compileTestGroovy, the :test task.


Those unit tests are today present in OFBiz components src/test/java and 
src/test/groovy directory.


Gradle is doing the job to detect, compile and execute them, since those 
tests are standalone, and do not need OFBiz and database to be launched



* Integration test

They are defined in OFBiz component testdef directory, since OFBiz need 
to be configured and launched for them to be executed.


These are currently quite long to run, so must be explicitly executed by 
the user with the task :testIntegration.


The other way to execute them is to use webtools screens :

https://demo-trunk.ofbiz.apache.org/webtools/control/TestSuiteInfo?compName=accounting

(we have some improvements waiting to be contributed)

They can be written in simple, groovy or java language :

class-name="org.apache.ofbiz.base.util.test.UtilPropertiesTests"/>
location="component://base/groovyScripts/test/SimpleTests.groovy"/>
location="component://accounting/minilang/test/AutoAcctgTransTestsSales.xml"/>


And those are located in src / groovyScripts / minilang directory, in 
package like classification terminated by "test"




- Is the current directory structure for tests the final solution or an 
incomplete refactoring?


I think that the refactoring is not done, and we could agree to make it 
happen.


- Could/Should all tests (unit and integration tests) be maintained in 
/src/test/?


That should be possible with some gradle configuration to ignore 
integration test in this directory. To be discussed.


- Which test classes must be described in the xml-definition under 
/testdef ? (My impression so far is that the OFBiz modules only list 
classes for integration tests.)


True

- Should I use the ext-test-reader in my custom ofbiz-component.xml to 
load data for integration tests?


To load data for integration test, in testdef, you can specify specific 
files to be loaded :



entity-xml-url="component://accounting/testdef/data/AccountingTestsData.xml"/>



- Can I define a different data source for the test delegator than for 
the default delegator?
Because a comment in the entityengine.xml says "Be sure that your 
default delegator (or the one you use) uses the same datasource for test."


Yes you can, in one of our configuration we have a specific datasource 
for a dedicated postgres database. Default delegator is set to another 
datasource.



A second mail will come with our way of integration testing.

Regards,

Gil

Le 21/05/2021 à 14:40, Nicolas Malin a écrit :

HI both,

Currently I work with Gil for a customer site to different process for
implement some integration and unit test dedicate to business case.

We will try to share some tips on the following weeks.

Nicolas

On 20/05/2021 20:46, Carsten Schinzer wrote:

Hello,


definitely I am interested and also would like to work against an aligned
standard. For example I found the issue of missing unit tests when
refactoring some simple methods to groovy (I promise to finish and submit
my started jira tickets in the upcoming Community Days). And I also asked
myself the same questions as you do. For the time being I have just guessed
where to place them, but yet a better approach would be to document
practice with this somewhere and track improvements in Jira.

I also would support unit testing from integration testing, which comes
along with a definition of unit of course. I prefer the definition of a
class method as a unit over the class itself as a unit, but I am open to
arguments.

My 2 cents.
Warm regards


Carsten

Am Do., 20. Mai 2021 um 15:51 Uhr schrieb Erwin Penner <
erwin.pen...@mindbit.de>:


Hello everybody,

I would like to create unit and integration tests for my custom modules in
OFBiz.
Unfortunately, information on this subject is sparse.
For this reason, I checked how it is currently solved in the OFBiz modules.
I'll explain what it's about first. At the end of the mail I have some
questions.

Using the example of the base or common modules in the OFBiz framework,
simple unit tests can be found in a separate test source folder.
src/test/java

There are also test classes (presumably integration tests) in
base/src/main/java/org/apach /ofbiz/base/test
common/src/main/java/org/apache/ofbiz/common/test

In the base module there are further test classes in
base/src/main/java/org/apache/ofbiz/base/util/string/test

So, I thought simple unit tests should be in the separate test source
folder and integration tests under src/main/java/.../test

Additionally, I found this (old) Confluence entry and was a bit confused:


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 this branch and published.


These stable release can be safely used in production environment. So in 
current Stable Release demo you got

all features that were present in trunk in December 2017 (17.12).

HTH

Gil



Le 21/05/2021 à 12:30, AJ.345 a écrit :

Hi,

I have logged in to Apache OFBiz Demo ERPs, and there were two versions.

"The Developer Trunk version" looked more beautiful with the black color
theme, and it was very easy to create options for Business transactions and
etc. Overall it looks professional and with an energetic background.

on the other hand the "Current stable release" looks more likely back office
look, dull and not very easy to use.

Can you please explain what is the difference between these two versions, in
the demo section on the website. what do you recommend from these two
versions as an ERP.

Thank you.
Best Wishes!



--
Sent from: http://ofbiz.135035.n4.nabble.com/OFBiz-User-f135036.html


Re: Created plugins are not showing up in DEV Environment

2020-11-13 Thread Gil Portenseigne
Is the plugin you are installing an existing one ?

If not and you want to create a new one, please rather use createPlugin
command (explained in the Readme.adoc in OFBiz root)

HTH

Gil


On Fri, Nov 13, 2020 at 11:01:50AM +0100, Daors Islami wrote:
> Hey Gil thank you for your response,
> 
> 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> wrote:
> 
> > 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 OFBiz Community!
> > >
> > > I will try to describe the problem fast therefore not losing too much of
> > your time, I deployed the OFBiz
> > > into a web server online but there's a problem, the plugins that I
> > created are not being shown or listed in the main menu tabs, there where
> > the other webapps are displayed.
> > >
> > > I have tried installing the plugin when I created via the command:
> > > `gradlew installPlugin -PpluginId=myplugin`
> > >
> > > I also tried building, cleaning, re-building and still when I deploy it
> > to web server my created plugins are not being shown, am I missing
> > something?
> > >
> > > Thank you for your time, really appreciate it.
> > >
> > > Best regards,
> > > Daors
> >


signature.asc
Description: PGP signature


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 OFBiz Community!
> 
> I will try to describe the problem fast therefore not losing too much of your 
> time, I deployed the OFBiz
> into a web server online but there's a problem, the plugins that I created 
> are not being shown or listed in the main menu tabs, there where the other 
> webapps are displayed.
> 
> I have tried installing the plugin when I created via the command:
> `gradlew installPlugin -PpluginId=myplugin`
> 
> I also tried building, cleaning, re-building and still when I deploy it to 
> web server my created plugins are not being shown, am I missing something?
> 
> Thank you for your time, really appreciate it.
> 
> Best regards,
> Daors


signature.asc
Description: PGP signature


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 "You cannot login to this application" error.
> Anyone know why?
> I am using trunk version.
> 
> Regards,
> James


signature.asc
Description: PGP signature


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 to launch a service at OFBiz
start.

Gil

On Tue, Jan 28, 2020 at 10:58:14AM +0100, Ingo Wolfmayr wrote:
> Hi everybody,
> 
> is it possible to start a service when Ofbiz has started and is ready?
> 
> Use case: I need to startup a connection to an external storage system. In my 
> case a TCP/IP connection that is permanent.
> 
> Best regards,
> Ingo
> 
> 


signature.asc
Description: PGP signature


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.)

As an advice, it is better to use a specific user instead of root to
install and launch OFBiz.

Regards

Gil 


On Tue, Jan 21, 2020 at 06:38:35PM -0500, L wrote:
> Having trouble getting this working.  I the installation docs are pretty
> thin on details.
> I started with a clean install of CentOS7 updated:
> 
>     [root@localhost ~]# cat /etc/redhat-release
> 
> Followed these instructionsQuick & Easy Setup:
> https://cwiki.apache.org/confluence/display/OFBIZ/Demo+and+Test+Setup+Guide
> 
>     Download an OFBiz release
> 
> 1. Download and install Java 1.8 or higher JDK/J2SDK (not the JRE, you
>need the full SDK) from Sun's Java (J2SE) site. You can use OpenJdk
>8 (or higher).
>Make sure your JAVA_HOME environment variable is set to this JDK
>after installation (NOTE that for Mac OS X no JVM setup is needed,
>just make sure Java is up to date with the OS X Software Update
>facility).
>There are still people using older versions, even it it's of course
>not recommened, notably for security reasons
>.
>By and large see this page on system requirements
>.
> 
>[root@localhost ~]# yum install java-11-openjdk
>[root@localhost ~]# java --version
>openjdk 11.0.6 2020-01-14 LTS
>OpenJDK Runtime Environment 18.9 (build 11.0.6+10-LTS)
>OpenJDK 64-Bit Server VM 18.9 (build 11.0.6+10-LTS, mixed mode, sharing)
>[root@localhost ~]# unzip /media/sf_Downloads/apache-ofbiz-16.11.06.zip
> 
> 
> 2. "Download" OFBiz in the directory of your choice (see comments below
>about that). This should create one sub-directory: *ofbiz*. This
>will be the OFBIZ_HOME location.
> 
>[root@localhost ~]# unzip /media/sf_Downloads/apache-ofbiz-16.11.06.zip
>[root@localhost ~]# mv apache-ofbiz-16.11.06/ /usr/local/ofbiz
>[root@localhost ~]# cd /usr/local/ofbiz/
> 
> 3. (*not for snapshots*) Load OFBiz demo data in the embedded Apache
>Derby database running *"gradlew loadAll"*on Windows or *"./gradlew
>loadAll"*on Linux/Unix/OSX.
> 
>[root@localhost ofbiz]# ./gradlew loadAll
>-bash: ./gradlew: No such file or director
> 
>a) I read the README.md that said to run ./gradle/init-gradle-wrapper
> 
>[root@localhost ofbiz]# gradle/init-gradle-wrapper.sh
>  === Prepare operation ===
>/usr/local/ofbiz/gradle/wrapper/gradle-wrapper.jar not found, we
>download it
>  === Download gradle-wrapper.jar ===
>  === Download gradle-wrapper.properties ===
>  === Download script wrapper ===
>  === Control downloaded files ===
>gradle/wrapper/gradle-wrapper.jar: OK
>gradle/wrapper/gradle-wrapper.properties: OK
>gradlew: OK
> 
> 
>b) README says:
> 
>you can setup the Gradle wrapper for OFBiz by executing the
>following from
>the command line at the OFBiz top level directory (folder):
> 
>`gradle wrapper --gradle-version 2.13`
> 
>[root@localhost ofbiz]# gradle wrapper --gradle-version 2.13
>-bash: gradle: command not found
> 
> 
> From there things go downhill,none of these work:
> 
>Linux/Unix/OSX: *"./gradlew**ofbiz"*or *"./startofbiz.sh"*(or even
>"$JAVA_HOME/bin/java -jar build/libs/ofbiz.jar").
> 
> What do I need to do to get this stuff to work?  Never had so much trouble
> installing an app before.
> 
> Are there updated instructions anywhere?
> 


signature.asc
Description: PGP signature


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 JsonViewHandler that will easily
provide Json formatted data, based on screen widgets. If there are
interested people in Berlin we could present this project and discuss
its usage and pros/advantage.

This task has just started, we haven't shared about that yet, it's a
teaser.

Please let us know if you are coming, and if you want to discuss about
that before, feel free to ask.

Regards

Gil

Le 09:51 - mardi 09 juil., Pierre Smits a écrit :
> Hi all,
> 
> As you may have seen on twitter, other social media, and perhaps via [1]
> there will be an ApacheCon EU event later this year in Berlin, Germany
> (from October 22 till 24).
> 
> Who is intending or planning to attend?
> 
> 
> [1] https://www.apachecon.com
> [2] https://aceu19.apachecon.com
> 
> Best regards,
> Pierre Smits
> 
> ORRTIZ.COM 
> OFBiz based solutions & services
> 
> OEM - The OFBiz Extensions Marketplace1
> http://oem.ofbizci.net/oci-2/
> 1 not affiliated to (and not endorsed by) the OFBiz project


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.

There were some discussion [1] about this "feature" in the past that could
lead to the issue you met.

What I'd suggest to you is, if you have not loaded on purpose the
SystemProperties configuration within the db, to delete the concerned
data and work with the config file (like in the documentation)

I hope that will help

Regards, 

Gil

[1] https://s.apache.org/hW2D

Le 20:55 - lundi 25 mars, Martin Schröder a écrit :
> Dear Ofbiz Mailing List Members,
> 
> while trying to setup the email configuration for my ofbiz installation
> (following
> https://cwiki.apache.org/confluence/display/OFBIZ/Apache+OFBiz+Technical+Production+Setup+Guide#ApacheOFBizTechnicalProductionSetupGuide-EmailServerSettings)
> 
> it seems that that the changes I do in
> framework/common/config/general.properties are completely ignored by
> Ofbiz on startup.
> 
> Even though I have enabled the email notifications I get a strange error
> message in the console output when trying to send email, e.g. when
> resetting a users password through the ecommere app I get
> 
> 2019-03-25 20:05:02,474 |http-nio-8443-exec-8
> |EmailServices |I| Mail notifications disabled in
> general.properties; mail with subject [OFBiz Demo - Password Reminder
> (x...@yyy.net)] not sent to addressee [x...@yyy.net]
> 
> Please find below the line my email settinngs from the
> general.properties file;
> 
> After grepping around for a while in the file system I found the file :
> file:/...framework/common/data/CommonSystemPropertyData.xml.
> 
> Then after putting in all the email settings here too and loading the
> file through the xml data loader and after trying to send passwort reset
> emails, I got at least an error message that the mail could not be sent
> due to an authentication problem.
> 
> 
> Could someone tell me what I am missing here? Where is the right place
> to configure the email settings ?
> 
> Thanks for your answer in advance.
> 
> 
> Kind regards
> 
> Martin
> 
> 
> snip
> 
> # -- mail notifications enabled (Y|N)
> mail.notifications.enabled=Y
> 
> # -- redirect all mail notifications to this address for testing
> #mail.notifications.redirectTo=
> 
> # -- the default mail server to use
> mail.smtp.relay.host=smtp.googlemail.com
> 
> # -- SMTP Auth settings
> mail.smtp.auth.user=
> mail.smtp.auth.password=
> 
> # -- Additional Required Fields needed for Gmail and other non
> traditional smtp servers
> # -- These added fields also work for Yahoo business mail for instance
> # -- Gmail smtp port can be either 465 or 587
> mail.smtp.port=465
> # -- Gmail requires StartTLS
> mail.smtp.starttls.enable=true
> 
> # -- Gmail requires a JSSE socket factory, the following socketFactory
> settings will override JavaMail's default socketFactory settings
> # -- Port needs to be the same as mail.smtp.port
> mail.smtp.socketFactory.port=465
> mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
> #--Fallback [true|false] determines whether you will allow a non secure
> connection if you are unable to get a secure one
> #mail.smtp.socketFactory.fallback=false
> 
> # -- how the address are matched with the CRM addresses
> mail.address.caseInsensitive=N
> 
> # -- debug SMTP mail option enabled (Y|N)
> 
> mail.debug.on=Y
> 
> 
> snap
> 
> 


Re: 答复: How to Create Plugin without loadDefault

2018-11-28 Thread Gil Portenseigne
Hello,

To make it show up the user you are using must have the base
permission of your plugin ("QUALITY" for your example) associated to its
securityGroup

You can find the permission here : 
❯ grep "base-permission" plugins/quality/ofbiz-component.xml
base-permission="OFBTOOLS,QUALITY"


Loading the seed make your plugin base permission load into db, you just
need to add it to the security group of your user using partymgr webapp
or loading files from your plugin :

❯ grep -R "QUALITY" plugins/quality/data
plugins/quality/data/QualitySecurityPermissionSeedData.xml:

plugins/quality/data/QualitySecurityPermissionSeedData.xml:

plugins/quality/data/QualitySecurityPermissionSeedData.xml:

plugins/quality/data/QualitySecurityPermissionSeedData.xml:

plugins/quality/data/QualitySecurityPermissionSeedData.xml:

plugins/quality/data/QualitySecurityPermissionSeedData.xml:

plugins/quality/data/QualitySecurityGroupDemoData.xml:

plugins/quality/data/QualitySecurityGroupDemoData.xml:

plugins/quality/data/QualitySecurityGroupDemoData.xml:

plugins/quality/data/QualitySecurityGroupDemoData.xml:

plugins/quality/data/QualitySecurityGroupDemoData.xml:

plugins/quality/data/QualitySecurityGroupDemoData.xml:

plugins/quality/data/QualitySecurityGroupDemoData.xml:


You can see that there is the file
plugins/quality/data/QualitySecurityGroupDemoData.xml

That contains the association of QUALITY_ADMIN permission to the
FULLADMIN group.

If your user is FULLADMIN the plugin will show up.

To load a specific file use EntityImport i already gave you with the
absolute path of the wanted file.

HTH

Gil

Le mercredi 28 nov. 2018 à 11:28:53 (+), Schumann Ye a écrit :
> Dear Gil,
> 
> Many thanks for your feedback.
> However, I did try Gradlew “ofbiz –load-data readers=seed” and the newly 
> created plugin didn’t show up.
> 
> And I check the files and find the newly created plugin files has been 
> created.
> IT JUST DOESN’T SHOW UP!
> 
> I know if I use Gradlew loadDefault and then it will show up 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 Plugin without loadDefault
> 
> 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
> (https://demo-stable.ofbiz.apache.org/webtools/control/EntityImportReaders)
> 
> Or directly the data files you want
> (https://demo-stable.ofbiz.apache.org/webtools/control/EntityImport)
> 
> Enjoy !
> 
> Gil
> 
> Le mardi 27 nov. 2018 à 12:09:57 (+), Schumann Ye a écrit :
> > Dear Gurus, dear Rishi, dear Jacques,
> >
> > I’ve got a quick and easy question for you guys.
> > How can I create Plugin (as shown in step 1 below) but without running step 
> > 2 below in order to show the newly created plugin in our production 
> > environment?
> > Step 1: gradlew createPlugin -PpluginId=quality
> > Step 2: gradlew loadDefault
> >
> > As I follow the tutorial written by Jacques, it seems it’s a MUST to run 
> > step 2 but I don’t want to mess up what I have done so far.
> > Any hint?
> >
> > Many thanks and have a nice day!
> > Schumann
> > +86-18001501800
> >
> 


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
(https://demo-stable.ofbiz.apache.org/webtools/control/EntityImportReaders)

Or directly the data files you want
(https://demo-stable.ofbiz.apache.org/webtools/control/EntityImport)

Enjoy !

Gil

Le mardi 27 nov. 2018 à 12:09:57 (+), Schumann Ye a écrit :
> Dear Gurus, dear Rishi, dear Jacques,
> 
> I’ve got a quick and easy question for you guys.
> How can I create Plugin (as shown in step 1 below) but without running step 2 
> below in order to show the newly created plugin in our production environment?
> Step 1: gradlew createPlugin -PpluginId=quality
> Step 2: gradlew loadDefault
> 
> As I follow the tutorial written by Jacques, it seems it’s a MUST to run step 
> 2 but I don’t want to mess up what I have done so far.
> Any hint?
> 
> Many thanks and have a nice day!
> Schumann
> +86-18001501800
> 


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 ofbiz. 
> When i enter "https://localhost:8443/ordermgr; i get the following:
> I went to ERROR rendering error page [/error/error.jsp], but here is the 
> error text: org.apache.ofbiz.widget.renderer.ScreenRenderException: Error 
> rendering screen [component://common/widget/CommonScreens.xml#login]: 
> ..  ETC ETC
> 
> I looked on Google "ofbiz screen render issue template location empty" > 
> refer to link 
> "https://stackoverflow.com/questions/21546509/getting-screenrenderexception-while-running-ofbiz;
>  How ever the proposed solution never worked for us. How do i solve this? 
> 
> 
> 


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 perhaps look at the pros and cons
> 
> pros of keeping multi-tenancy:
> - less memory consumption.
> - less storage consumption.
> - single deployment (less effort)
> 
> cons of keeping multi-tenancy:
> - Inflexibility: all tenants are stuck with the same code base.
> - risk: if one tenant goes down, all tenants go down. There is less
> redundancy and recovery.
> - lock-in: splitting out tenants to a new separate instance is hard
> and time consuming.
> - code complexity: The multi-tenancy feature in OFBiz is making nearly
> every critical artifact in the system complex. It is hard wired in
> tomcat, components, data loaders and many other places. I stopped
> counting the "if" conditions to handle the multi-tenant corner cases
> all over the code base.
> - alternatives less complex: the advent of new technologies like
> docker and containerization makes the need for multi-tenancy less
> desired. Also, storage and memory is getting cheaper all the time. So
> the pros listed above are getting less valuable over time.
> 
> So for all the above, I find myself leaning more towards removing
> multi-tenancy from the code base.
> 
> 
> On Tue, Sep 4, 2018 at 5:49 PM Mike  wrote:
> >
> > My opinion is to just completely ditch the multi tenant code since it seems
> > to be more trouble than it's worth.  Anyone serious about designing a
> > system to support a similar concept would do it their own way anyway, most
> > likely using completely separate DBs.  Face it, using a common DB and share
> > between separate companies is a dangerous concept, let alone the scaling
> > issues involved.
> >
> >
> >
> >
> > On Sun, Sep 2, 2018 at 1:33 AM Jacques Le Roux 
> > 
> > wrote:
> >
> > > Hi,
> > >
> > > Note: this conversation started on the dev ML:
> > > https://markmail.org/message/hb2kt5nkodhwnkgw
> > >
> > > The multi-tenants feature in OFBiz only allows a dozens or maybe even few
> > > hundreds tenants, after it begin to be a lot of DBs!
> > > I faced that with a startup which wanted to handle thousands, if not
> > > millions (actually they failed), of tenants, obviously OFBiz can't do 
> > > that.
> > >
> > > I don't break any secret to say that I was working with David (and Andrew)
> > > on a project in 2010 when David had to quickly answer to the client's
> > > demand who wanted to have tenants. David brilliantly and quickly
> > > delivered, but it was only a start.
> > >
> > > After many improvements, this feature still have some issues
> > > https://issues.apache.org/jira/browse/OFBIZ-6066
> > > https://issues.apache.org/jira/browse/OFBIZ-7900
> > > https://issues.apache.org/jira/browse/OFBIZ-6164
> > > https://issues.apache.org/jira/browse/OFBIZ-6065
> > >
> > > Also this is somehow related
> > > https://issues.apache.org/jira/browse/OFBIZ-6712
> > >
> > > And most importantly
> > > https://issues.apache.org/jira/browse/OFBIZ-7112
> > > https://issues.apache.org/jira/browse/OFBIZ-7754
> > >
> > > I recently read this article
> > >
> > >
> > > https://www.linkedin.com/pulse/architecture-constraints-end-multi-tenancy-gregor-hohpe/
> > >
> > > and, after my experiences with multi-tenant as is in OFBiz, it made me
> > > wonder if we should not think about how it's done now in OFBiz in 2018 
> > > with
> > > the
> > > clouds being everywhere!
> > >
> > > Before sending this email, I quickly exchanged with David about how Moqui
> > > handles that now. And we are on the same page, see
> > >
> > > https://www.linkedin.com/groups/4640689/4640689-6180851287941201924
> > >
> > >
> > > https://stackoverflow.com/questions/41952818/does-moqui-framework-2-0-still-support-mutli-tenency?rq=1
> > > [1]
> > >
> > > [1] Initially David gave me this link
> > >
> > > https://www.linkedin.com/pulse/multi-instance-moqui-docker-david-e-jones/
> > >
> > > but it seems LinkedIn has lost it, as said in the stackoverflow comment.
> > >
> > > So IMO why not deprecating the multi-tenants as is now and rather push a
> > > multi-instances way?
> > >
> > > Opinions?
> > >
> > > Jacques
> > >
> > >


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 the cost of a migration from 16.11 to 17.12.

I you want to be safer choose 16.11

Welcome in the community !

Gil

Le vendredi 03 août 2018 à 14:11:57 (+0800), Charles So a écrit :
> Hello everyone,
> 
> We are starting afresh.
> 
> We aim to replace OpenCart (ecommerce) with OFBiz, mainly to build a customer 
> facing commerce site with responsive layout, and semi-complex discount 
> computation based on a number of parameters such as number of products in 
> cart, categories, discounts of the day, promotions and etc.
> 
> Which version should we start with, the stable 16.11 or branch release 17.12? 
> We expect to do quite a bit of coding to implement the features mentioned 
> above.
> 
> Thanks alot!
> Charles


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 F:\Software\apache-ofbiz-16.11.04" and hit
>enter
>in cmd- It says
>The system cannot find the path specified.
>
>2. But when I use "F:\Software\apache-ofbiz-16.11.04>gradlew
>cleanAll loadDefault" this command- It says
>'Driver\apache-ofbiz-16.11.04\' is not recognized as an internal or
>external command,
>operable program or batch file.
>Error: Could not find or load main class org.gradle.wrapper.
>GradleWrapperMain
>
>3. I also try with "F:\Software\apache-ofbiz-16.11.04>ant
>run-install" command which output is-
>Buildfile: build.xml does not exist!
>Build failed
>
>Essence: I am unable to set up apache-ofbiz-16.11.04
>
>Note: I have used-
>Operating System: Windows 10
>JDK:java version "1.8.0_92"
>Java(TM) SE Runtime Environment (build 1.8.0_92-b14)
>Java HotSpot(TM) 64-Bit Server VM (build 25.92-b14, mixed mode)
>apache-ant: Apache Ant(TM) version 1.10.5 compiled on July 10 2018
>
>Please help me.
>
>Thanks
>Ahmad Saki

-- 
Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma 
brièveté.

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(); //Rollback the new one
} else {
    TransactionUtil.commit(); // Or Commit it
}
TransactionUtil.resume(actualTransaction); //resume the suspended 
transaction.


With this solution you keep your process sync, and you can manage errors.

HTH

Gil


On 23/02/2018 09:29, Jesse Thomas wrote:
I have written a service that checks a folder for image files, resizes 
and updates the Product in OFBiz based on the file name equaling the 
productId. It works for a few hundred images, but when I process a few 
thousand images at the end it hits a transaction timeout. All the 
images are resized and saved. But the product records don't get 
updated. All I'm doing in the database is updating the Product image 
fields, is there a way to force the commit on each product instead at 
the end of the service call?


Thanks,
    Jesse

On 1/26/2018 12:48 AM, Jacques Le Roux wrote:

Thanks Jinghai,

That's an interesting information!

Jacques


Le 26/01/2018 à 02:57, Shi Jinghai a écrit :
Thanks Mike, I agree with you if such image processing happens 
regularly, perl is a good choice but system may be complicated.


The image processing speed of JDK 7 is dramatically slower than JDK 
6, and sometimes wrong, as Kodak and others withdrew their image 
algorithm properties when Java transferred from Sun to Oracle.


Java will struggle on ImageIO for a while, hope JDK 9 have a big 
improvement. [1]


Kind Regards,

Shi Jinghai


[1] https://bugs.openjdk.java.net/browse/JDK-8041125



发件人: Mike [mailto:mz4whee...@gmail.com]
发送时间: 2018年1月26日 0:26
收件人: user
抄送: Shi Jinghai
主题: Re: data import - product images

A well written perl or shell script can take "original.jpg" in 
directory "x" and create, multiple larger/smaller images with the 
same "root" name. You can use image magic, an image processor 
package, to do this.  Basic stuff for anyone who knows shell scripting.


You can then import these images using a single XML data_reader 
file, and import it into OFB.  Example:






[plus 1000s more].



A single script can generate the above XML file (with 1000s of 
products), resize 1000s of "original.jpg" into multiple images, and 
import into OFB, all in one pass.  Standard stuff for anyone 
competent with perl/shell scripting.


What you don't want is make java do busy, CPU intensive work and 
have it render different sizes "on the fly", if that is what you are 
suggesting.


On Wed, Jan 24, 2018 at 11:56 PM, Jesse Thomas 
> wrote:

Thanks Shi and Rishi for the responses.

I was hoping to do this the hard way and l learn some new tricks in 
the process. More specifically I was hoping to use a ftl template 
(like in ./specialpurpose/ecommerce/data/DemoTree.xml) to call a 
service or function directly. Making the solution 100% OFB.


If you know of any examples or clues please let me know.

Thanks again!



On 1/24/2018 11:27 PM, Shi Jinghai wrote:
On generating the other sizes needed, it's already in the source 
code, see
https://github.com/apache/ofbiz-framework/blob/trunk/applications/product/src/main/java/org/apache/ofbiz/product/image/ScaleImage.java 



-邮件原件-
发件人: Jesse Thomas 
[mailto:je...@thomasnetworks.net]

发送时间: 2018年1月24日 15:30
收件人: user@ofbiz.apache.org
主题: data import - product images

Is there is a way of using a data reader to load a product image and 
have it treated as though its uploaded as an "Original Image"
(generating the other sizes needed)? Or whats the best way to load 
images during data migration?


The images are available in the file system and via http, several 
thousand of them. Thanks in advance for any help or advice!


Thanks,

   Jesse










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 "loadDefault" part of:
./gradlew loadDefault
  
I'm looking for what I might edit to create my own version of loadDefault after observing what the existing loadDefault actually executes. I see some shell scripts passing this on, and suspect this is part of one of the jar files, but was unable to find the actual code.
  
Thanks!




Re: Ofbiz Cookbook

2016-08-13 Thread gil portenseigne

Yes i like this plan :)

Gil

Le 12/08/2016 à 13:26, Jacques Le Roux a écrit :
Yes, and I believe, when we will have worked out Gradle stuff (at 
least: finishing it, adding plugins, correctly documenting the whole) 
we should gather to work on this and slowly replace/improve the old 
good 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 more to say about that :)

https://cwiki.apache.org/confluence/display/OFBIZ/Groovy+DSL+for+OFBiz+business+logic 



Jacques


Le 09/08/2016 à 19:11, Taher Alkhateeb a écrit :
I would like to add to what Scott already mentioned that minilang 
is not

only difficult to debug but also overly verbose.

However, minilang exists and continues to be used I think because 
of the
ctrl-space auto complete combined with XSD definitions for the 
statements.
This makes it a DSL (not too pretty) and this is something that we 
did not
provide a reasonable alternative for. Groovy makes a good candidate 
for an
alternative DSL but we don't have something yet which is 
comprehensively
documented with an easy auto-complete feature. This is very 
important for

many developers I think. So we need to think of a good alternative

On Tue, Aug 9, 2016 at 1:34 PM, Scott Gray 
<scott.g...@hotwaxsystems.com>

wrote:

I'm certainly no fan of minilang. I prefer something I can step 
through

with a debugger.

Regards
Scott

On 9/08/2016 20:55, "Paul Piper" <p...@ilscipio.com> wrote:


Skip,

I fear that you may be right with regards to minilang and the 
community,
though luckily with your own projects you can set your own 
standards. I

learned the hard way that minilang leads to more cluttered code and

though
there are some benefits (the automapping of service maps or 
entity-auto

for

creating crud services), I would strongly recommend anyone to rather

invest

the time into proper java or groovy code.

As for the use of widgets over ftl, perhaps it is worth noting 
that we
streamlined both for Scipio ERP. They share the same underlying 
set of
macros and will create the hence create the same HTML & classes 
as are
defined by your theme. So if people prefer to use widgets, they 
can. We
relied on this, when cleaning up & converting usable screens 
alot, as not

always it would make sense to transfer them to ftl.

That being said, our goal is to further replace widgets by ftl 
logic as

we
move along. For both minilang and widgets the reason on our end 
is that
neither technology is used anywhere outside of the ofbiz project 
and thus
adds to the overall learning-curve for newcomers. We much rather 
rely on

trusted alternatives that are easier to pick up for our project ;)

Cheers,
Paul



--
View this message in context: http://ofbiz.135035.n4.nabble.
com/Ofbiz-Cookbook-tp4690647p4690733.html
Sent from the OFBiz - User mailing list archive at Nabble.com.












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 :)

https://cwiki.apache.org/confluence/display/OFBIZ/Groovy+DSL+for+OFBiz+business+logic 



Jacques


Le 09/08/2016 à 19:11, Taher Alkhateeb a écrit :

I would like to add to what Scott already mentioned that minilang is not
only difficult to debug but also overly verbose.

However, minilang exists and continues to be used I think because of the
ctrl-space auto complete combined with XSD definitions for the 
statements.
This makes it a DSL (not too pretty) and this is something that we 
did not
provide a reasonable alternative for. Groovy makes a good candidate 
for an

alternative DSL but we don't have something yet which is comprehensively
documented with an easy auto-complete feature. This is very important 
for

many developers I think. So we need to think of a good alternative

On Tue, Aug 9, 2016 at 1:34 PM, Scott Gray 


wrote:


I'm certainly no fan of minilang. I prefer something I can step through
with a debugger.

Regards
Scott

On 9/08/2016 20:55, "Paul Piper"  wrote:


Skip,

I fear that you may be right with regards to minilang and the 
community,
though luckily with your own projects you can set your own 
standards. I

learned the hard way that minilang leads to more cluttered code and

though
there are some benefits (the automapping of service maps or 
entity-auto

for

creating crud services), I would strongly recommend anyone to rather

invest

the time into proper java or groovy code.

As for the use of widgets over ftl, perhaps it is worth noting that we
streamlined both for Scipio ERP. They share the same underlying set of
macros and will create the hence create the same HTML & classes as are
defined by your theme. So if people prefer to use widgets, they 
can. We
relied on this, when cleaning up & converting usable screens alot, 
as not

always it would make sense to transfer them to ftl.

That being said, our goal is to further replace widgets by ftl 
logic as

we
move along. For both minilang and widgets the reason on our end is 
that
neither technology is used anywhere outside of the ofbiz project 
and thus
adds to the overall learning-curve for newcomers. We much rather 
rely on

trusted alternatives that are easier to pick up for our project ;)

Cheers,
Paul



--
View this message in context: http://ofbiz.135035.n4.nabble.
com/Ofbiz-Cookbook-tp4690647p4690733.html
Sent from the OFBiz - User mailing list archive at Nabble.com.







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 in the 
generated invoice, since the info is already stored/working in it.


We can keep it in mind, Nicolas comment was on a mail thread IIRW.

Thanks

Gil

PS: FTTOMH == For the time, over my head ?



Le 27/07/2016 à 15:10, Jacques Le Roux a écrit :

I also agree it's better to start anew

Gil, I think you considered one of Pierre question "type of work 
(service?)"


Did you analyse "GEO of billing party and 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/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, 2016 at 2:33 PM, Pierre Smits<pierre.sm...@gmail.com>
wrote:


Hi Florian,

In 2008 I already created a JIRA issue related to this. See
https://issues.apache.org/jira/browse/OFBIZ-2040


Best regards,

Pierre Smits

ORRTIZ.COM<http://www.orrtiz.com>
OFBiz based solutions & services

OFBiz Extensions Marketplace
http://oem.ofbizci.net/oci-2/

On Wed, Jul 20, 2016 at 2:37 PM, Montalbano Florian <
florian.montalb...@nereide.fr> wrote:


Hi everyone,

I discovered that I need to put a tax line on the invoice when 
billing

hours spent on a project.

I can create the invoice with the hours from the project 
component (or
scrum) but when I try to "add tax", an error message is displayed 
saying
that there is no productId to calculate the tax from. So I looked 
into

the
items tab of the invoice and it was right about that :'(  There 
is no

product linked to the hours.

I can add "by hand" a product "HoursSpendOnAProject" to every 
items of

the

invoice afterwards but it is not very user-friendly.

Is there a way to automatically link my hours to a product ? (I 
thought
that it would be ok from the Scrum component, since projects are 
linked

to

a product, but it is the same)
Or maybe I'm missing a setting somewhere ?

Have a nice day,
Thanks,

Florian Montalbano














Re: Add tax to billed hours

2016-07-27 Thread gil portenseigne

Hi Jacques,

Yes, the type of work is the product associated with workEffort using 
WorkEffortGoodStandard.


We did not take into consideration the parties involved in the generated 
invoice, since the info is already stored/working in it.


We can keep it in mind, Nicolas comment was on a mail thread IIRW.

Thanks

Gil

PS: FTTOMH == For the time, over my head ?



Le 27/07/2016 à 15:10, Jacques Le Roux a écrit :

I also agree it's better to start anew

Gil, I think you considered one of Pierre question "type of work 
(service?)"


Did you analyse "GEO of billing party and 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/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, 2016 at 2:33 PM, Pierre Smits<pierre.sm...@gmail.com>
wrote:


Hi Florian,

In 2008 I already created a JIRA issue related to this. See
https://issues.apache.org/jira/browse/OFBIZ-2040


Best regards,

Pierre Smits

ORRTIZ.COM<http://www.orrtiz.com>
OFBiz based solutions & services

OFBiz Extensions Marketplace
http://oem.ofbizci.net/oci-2/

On Wed, Jul 20, 2016 at 2:37 PM, Montalbano Florian <
florian.montalb...@nereide.fr> wrote:


Hi everyone,

I discovered that I need to put a tax line on the invoice when 
billing

hours spent on a project.

I can create the invoice with the hours from the project component 
(or
scrum) but when I try to "add tax", an error message is displayed 
saying
that there is no productId to calculate the tax from. So I looked 
into

the

items tab of the invoice and it was right about that :'(  There is no
product linked to the hours.

I can add "by hand" a product "HoursSpendOnAProject" to every 
items of

the

invoice afterwards but it is not very user-friendly.

Is there a way to automatically link my hours to a product ? (I 
thought
that it would be ok from the Scrum component, since projects are 
linked

to

a product, but it is the same)
Or maybe I'm missing a setting somewhere ?

Have a nice day,
Thanks,

Florian Montalbano












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, 2016 at 2:33 PM, Pierre Smits 
wrote:


Hi Florian,

In 2008 I already created a JIRA issue related to this. See
https://issues.apache.org/jira/browse/OFBIZ-2040


Best regards,

Pierre Smits

ORRTIZ.COM 
OFBiz based solutions & services

OFBiz Extensions Marketplace
http://oem.ofbizci.net/oci-2/

On Wed, Jul 20, 2016 at 2:37 PM, Montalbano Florian <
florian.montalb...@nereide.fr> wrote:


Hi everyone,

I discovered that I need to put a tax line on the invoice when billing
hours spent on a project.

I can create the invoice with the hours from the project component (or
scrum) but when I try to "add tax", an error message is displayed saying
that there is no productId to calculate the tax from. So I looked into

the

items tab of the invoice and it was right about that :'(  There is no
product linked to the hours.

I can add "by hand" a product "HoursSpendOnAProject" to every items of

the

invoice afterwards but it is not very user-friendly.

Is there a way to automatically link my hours to a product ? (I thought
that it would be ok from the Scrum component, since projects are linked

to

a product, but it is the same)
Or maybe I'm missing a setting somewhere ?

Have a nice day,
Thanks,

Florian Montalbano







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 
services that are not so far from each other).
We only are within the conception step, and wanted to share our thought 
about it.


And we might need to move this thread to dev list ?

Best Regards,

Gil

On 26/07/2016 12:46, Taher Alkhateeb wrote:

Hi Florian,

Thank you for taking the time to think about this. Have you considered
unifying the solutions by making the links and all the business logic
between the WorkEffort and Product? Then maybe just build the whole
solution for any upper components (project, scrum, etc ..) around that, and
fetch the logic for invoicing based on the workeffort type or any
attributes / parameters related to that?

Regards,

Taher Alkhateeb

On Tue, Jul 26, 2016 at 1:24 PM, Montalbano Florian <
florian.montalb...@nereide.fr> wrote:


Thank you for your answer.

I understand what you mean for the link between Scrum and invoicing. It's
just that I saw the functionality allowing to create an invoice from Scrum
hours in the Scrum component, I didn't think about the fundamental use of
the Scrum.

I talked over this subject with Gil and we came up with the following
proposition :

We took into account that taxes are a very complicated matter since it can
be different from a country to another.

As you said, we have TimeEntry that are linked to a WorkEffort. From the
WorkEffort, we have a relation to the WorkEffortGoodStandard and then to
Product (and thus ProductCategory).

What does this Product stand for a WorkEffort such as a task ? Well, a
task in a project may be of different type. For example :

- A programming task

- A cleaning task

- Preparing a drink party

- Checking the electrical installation

And each of these type might have a specific tax associated. That's why
you should be able to chose the good product representing the task. Of
course, for the Scrum component, it is easier since it is more
computer-science-oriented.

So when we create a task, we can have an optional lookup for selecting a
Product (on which taxes are customizable,the lookup is optional so it won't
hinder the creation of a task and disturb what is already used). When the
task is created, an entry is created in the WorkEffortGoodStandard.
At the moment the invoice is created, we can retrieve this Product by
querying the table WorkEffortGoodStandard for each TimeEntry to bill. The
taxes can be customized by creating specific Product and ProductCategory
(that way, each country tax laws may be respected).

This link to a product is enabled for the Scrum Default Task but the
ProductId is not retrieved when the invoice is created.
With a Product associated to the WorkEffort, we can add this information
(ProductId) when creating an InvoiceItem from the TimeEntry. And with an
associated product, we can add taxes.

Possible improvement :
We could define a link with a Product from either Task/Phase/Project (for
the Project Component) and a Task/BacklogItem/Sprint/Project (for the Scrum
Component).
The ProductId associated with the InvoiceItem will be the more specific
WorkEffort. We can check that by starting from a Task and checking
recursively the parent WorkEffort until one has an entry in
WorkEffortGoodStandard.

I think this is not the clearest "improvement proposal" so feel free to
comment, ask questions or react about this.

Have a nice day,
Thanks

Florian


Le 23/07/2016 à 22:57, Jacques Le Roux a écrit :


Hi Florian,

Conceptually I don't see why the Scrum component should be related to
accounting. After all Scrum is only an organisational method. So it seems a
bit stretched to invoice from Scrum.

But this is minor, because on the other hand a project seems legitimate
to be linked to an invoice.

A project is basically a WorkEffort and I think you should look into this
direction, like WorkEffortBilling and TimeEntry...

This of course does not mean that you will find something ready OOTB

HTH

Jacques


Le 20/07/2016 à 14:37, Montalbano Florian a écrit :


Hi everyone,

I discovered that I need to put a tax line on the invoice when billing
hours spent on a project.

I can create the invoice with the hours from the project component (or
scrum) but when I try to "add tax", an error message is displayed saying
that there is no productId to calculate the tax from. So I looked into the
items tab of the invoice and it was right about that :'(  There is no
product linked to the hours.

I can add "by hand" a product "HoursSpendOnAProject" to every items of
the invoice afterwards but it is not very user-friendly.

Is there a way to automatically link my hours to a product ? (I thought
that it would be ok from the Scrum component, since projects are linked to
a product, but it is the same)
Or maybe I'm missing a 

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 [mailto:jacques.le.r...@les7arts.com]
Sent: Thursday, July 14, 2016 10:50 AM
To: user@ofbiz.apache.org
Subject: Re: [MARKETING] New OFBiz Logos - Feedback Required


Thanks Sharan

At 1st glance I like 4th the most (actually I dislike others)

Thanks for the good work to Kenneth

Jacques


Le 14/07/2016 à 09:50, Sharan-F a écrit :

Hi Everyone

We've done some more work on some potential logos and have come up with 4
new ideas. I'm  aware that our scope has crept a little but the overall

goal

is the same – to find a new logo that the community like so if you are
reading this message then your opinion counts!

Hans / Pierre – I know that you both strongly expressed a preference for

the

old logo with the 'registered trademark' symbol but I think that more

people

wanted us to correct name and capitalise the  'OFB' so that is what we

have

done.

*Option 1 *
This option uses a mixture of blue and orange with the word Apache on the
left.



https://cwiki.apache.org/confluence/download/attachments/61317052/OFBiz-Apache-left.png?api=v2

*Option 2*
This option is similar to the first option and uses a mixture of blue and
orange with the word Apache on the right.



https://cwiki.apache.org/confluence/download/attachments/61317052/OFBiz-Apache-right.png?api=v2

*Option 3*
This option uses a mixture of blue and orange with our original project
circle logo.



https://cwiki.apache.org/confluence/download/attachments/61317052/OFBiz-Circle-Orange.png?api=v2

*Option 4*
This  option uses blue and the Apache feather across the 'O'.



https://cwiki.apache.org/confluence/download/attachments/61317052/OFBiz-Feather.png?api=v2

Please take a look at each of the options and let me have your feedback

and

comments. Please also highlight which (if any) is your most preferred
option.

Thanks
Sharan




--
View this message in context:

http://ofbiz.135035.n4.nabble.com/MARKETING-New-OFBiz-Logos-Feedback-Required-tp4688550.html

Sent from the OFBiz - User mailing list archive at Nabble.com.









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 moment

http://www.orrtiz.com/

and

http://www.neogia.org/wiki/index.php/D%C3%A9mo_en_ligne

don't respond. Please do the needed or tell us to remove them.

Thanks

Jacques





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 yet). The point of a release is to have a
stable codebase, and porting the Gradle stuff (including changes in
startup etc.) to the release branches will cause instability.
Additionally, It will take quite some time before these changes will be
done in trunk. Releasing 14.12 and 15.12 without the changes and then
later doing a minor release with the changes would be bad.

My proposal is to release 14.12 ASAP, after that dropping 13.07 and then
trying to do a release 16.x with Gradle. And a release of 15.12in
between wouldn't be bad either ;)

Christian

Am 28.06.2016 12:26, schrieb Jacopo Cappellato:

Hi all,

as you may know we are working at migrating the build scripts of the OFBiz
trunk from Ant to Gradle.
Together with this important change we are also modifying, for policy
reasons, the way we distribute the external dependencies (i.e., the jar
files needed by OFBiz): the required jars will be downloaded at build time.
Since these changes are not bug fixes, the current plan is to do these
changes only in the trunk and do not backport them to the active branches,
that are currently:

* 13.07
* 14.12
* 15.12

However, we will still have to modify these branches by removing the
external jar files and download them using Ivy.

The first concern is that we will have to work on and stabilize two fronts:
Ivy for the 3 current release branches and Gradle for the trunk and the
future branches.
The second concern is that, as a consequence, we will have, for several
years, significant differences in the setup/build steps between the old
releases and the new ones that could cause confusion and regressions when
bugs are backported.

We have already issued 3 releases from the 13.07 branch and we have a
tentative plan to issue one more release around February 2017 that would be
the last release of this series.
As regards 14.12 and 15.12 branches, no releases have been issued yet.

Based on these details I would like you to consider the following decisions:

1) anticipate the end of life of the release branch 13.07 at now; we would
not issue the fourth release as initially planned
2) once stabilized, backport to 14.12 and 15.12 all the changes required to
build the system and download its dependencies with Gradle

Please express your opinion on each of them separately, since they are
independent (i.e., you could agree/disagree on the first/second/both).

Thanks,

Jacopo





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 
Hotwax Systems 

On Sun, May 29, 2016 at 3:07 PM, Sharan-F  wrote:


Hi

I agree with Pierre in that our logo is about our brand and it could have
been absolutely anything but it just so happens that we chose to use a
word.
The main thing is that when people see the logo – they associate it with
OFBiz.

For the new website, I included the logo re-branding in the scope because
it
was something quick and easy to do. The general feedback seems to be that
people like the 2nd option.

I'm pretty flexible so if someone else from the community wants to work

on

changing the logo to something different to what I've proposed then

that's

fine – I can hand over that task. The main thing is that I really need to
know quickly so that I don't spend any more time on it.

Thanks
Sharan



--
View this message in context:


http://ofbiz.135035.n4.nabble.com/MARKETING-New-OFBiz-Logo-for-Website-tp4681769p4681782.html

Sent from the OFBiz - User mailing list archive at Nabble.com.





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 in context: 
http://ofbiz.135035.n4.nabble.com/Remove-this-email-from-the-any-user-mailing-groups-tp4677812.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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 page to it. It's just a simple video for
downloading and building OFBiz for Linux.

https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Youtube+Channel

It would be good if someone else (that's not me!) could review it and give
me some feedback as to whether it is good enough to publish.

Thanks
Sharan



--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/MARKETING-Potential-Youtube-Video-for-Downloading-and-Buidling-OFBiz-for-Linu-tp4677555.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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 and login attributes).

Can someone point me to the code and properties files that control this?






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 very big event, and 
Apache having a good presence with a dev room should be nice.


Regards,

Gil

On 01/02/2016 11:52, Heidi Dehaes - Olagos wrote:

Hello,

Was at Fosdem on Friday evening at the Beer Event and met Sharan and Pierre
and we had an interesting chat about ofbiz.
I was again at Fosdem on Saturday afternoon. Amazing how many high tech
software presentations were done at the same time. Lots of people.
Should be very attractive if Ofbiz should be there with a presentation and
a booth also.

Regards,
Eric

Olagos bvba
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



2016-02-01 10:57 GMT+01:00 Sharan-F :


Hi All

I thought it would be good to give a brief update of my experience at
FOSDEM
over the weekend.

It was really interesting to be there and I've never seen so many
developers
and techie people in one place ! On Saturday the statistics said that there
were over 4400 people connected to the FOSDEM wifi (and believe me not
everyone who was there was connected!).

I arrived on Friday afternoon and met up with Eric and Pierre at the
beerfest. We had a good chat over a few beers before the hoards arrived. On
Saturday we met up with Gil, Leila and Florient from Nereide. It's always
good to meet people from our community face to face.

I spent most of Saturday at the ASF booth, generally talking to people :-)
There is a lot of interest in big data and so I think OFBiz as project at
FOSDEM may not be geeky enough unless we perhaps look at trying to market
the framework.

That said, I think FOSDEM could still be good as a place for the OFBiz
community to meetup and collaborate. This year there were a range of
'Developer Rooms' available for people to get together and code / fix bugs
etc. I think the ASF group were talking about trying to get a developer
room
for next year and if so then we could plan to meetup there and do some work
together.

Also a  few other projects had project stickers, flyers and t-shirts so
maybe we could get some marketing material done, if not for this then
definitely for Apachecon.

In general I think it's a great open source conference and you have the
ability to talk to a range of people over a lot of different technologies.
I
think all the main sessions have been recorded so should be available
online. It's amazing that this is a free event and I think the ASF are
planning to have a stronger presence there in the future.

Thanks
Sharan





--
View this message in context:
http://ofbiz.135035.n4.nabble.com/Feedback-about-FOSDEM-tp4676722.html
Sent from the OFBiz - User mailing list archive at Nabble.com.





Re: Feedback about FOSDEM

2016-02-01 Thread gil portenseigne
I'm not really specialized into OFBiz standard components, my main 
project is quite specific about training center management.


I think that i'm a "Jack of all trades" kind.

Regards,

Gil

On 01/02/2016 15:26, Heidi Dehaes - Olagos wrote:

Yes, Gil we will meet us for sure the next ofbiz happening.
What components of ofbiz are you specialized in?

Regards,
Eric

Olagos bvba
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



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 wandered between presentation with
interesting and very specific subjects, it's a very big event, and Apache
having a good presence with a dev room should be nice.

Regards,

Gil


On 01/02/2016 11:52, Heidi Dehaes - Olagos wrote:

Hello,

Was at Fosdem on Friday evening at the Beer Event and met Sharan and Pierre
and we had an interesting chat about ofbiz.
I was again at Fosdem on Saturday afternoon. Amazing how many high tech
software presentations were done at the same time. Lots of people.
Should be very attractive if Ofbiz should be there with a presentation and
a booth also.

Regards,
Eric

Olagos bvba
Heidi Dehaes
Kerkstraat 34
2570 Duffel
Belgium
Tel. : 015/31 53 04
GSM :0485/22 35 80
E-mail : 
info.olagos@gmail.comhttp://www.olagos.euhttp://www.olagos.comhttp://www.olagos.behttp://www.olagos.nl



2016-02-01 10:57 GMT+01:00 Sharan-F <sharan.f...@gmail.com> 
<sharan.f...@gmail.com>:


Hi All

I thought it would be good to give a brief update of my experience at
FOSDEM
over the weekend.

It was really interesting to be there and I've never seen so many
developers
and techie people in one place ! On Saturday the statistics said that there
were over 4400 people connected to the FOSDEM wifi (and believe me not
everyone who was there was connected!).

I arrived on Friday afternoon and met up with Eric and Pierre at the
beerfest. We had a good chat over a few beers before the hoards arrived. On
Saturday we met up with Gil, Leila and Florient from Nereide. It's always
good to meet people from our community face to face.

I spent most of Saturday at the ASF booth, generally talking to people :-)
There is a lot of interest in big data and so I think OFBiz as project at
FOSDEM may not be geeky enough unless we perhaps look at trying to market
the framework.

That said, I think FOSDEM could still be good as a place for the OFBiz
community to meetup and collaborate. This year there were a range of
'Developer Rooms' available for people to get together and code / fix bugs
etc. I think the ASF group were talking about trying to get a developer
room
for next year and if so then we could plan to meetup there and do some work
together.

Also a  few other projects had project stickers, flyers and t-shirts so
maybe we could get some marketing material done, if not for this then
definitely for Apachecon.

In general I think it's a great open source conference and you have the
ability to talk to a range of people over a lot of different technologies.
I
think all the main sessions have been recorded so should be available
online. It's amazing that this is a free event and I think the ASF are
planning to have a stronger presence there in the future.

Thanks
Sharan





--
View this message in 
context:http://ofbiz.135035.n4.nabble.com/Feedback-about-FOSDEM-tp4676722.html
Sent from the OFBiz - User mailing list archive at Nabble.com.








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):



location="component://mycomponent/path/to/my/index.html"/>



Or be done in ftl files directly.

Regards

Gil


On 28/01/2016 15:48, hoboy2 wrote:

Hi

Ok I have partially asked this question before.
I have looked into ofbiz doc I can not find an example
of where to use html instead of ftl.
I will like to use html instead of ftl
any link ?

Thanks



--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/Replace-ftl-with-html-in-ofbiz-tp4676594.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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 generally improving OFBiz.

I'd like to suggest that we continue the Community Days in 2016 so have
updated the Wiki page and added some proposed dates.  They are :

- Saturday 19th March
- Saturday 18th June
- Saturday 17th September
- Saturday 17th December

What do people think ?

Thanks
Sharan




--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/OFBiz-Community-Days-2016-tp4676427.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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 do the homework that evening (children ), perhaps i can
take a beer with you. I work during the day in Brussels city. So that is
not the most difficult thing to do.

Let me know when you arrive and i will see if i can arrange with my wife
the transport problems for the children ..

Do you have any knowledge of other people who will come over?

Regards,
Eric

Olagos bvba
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



2016-01-27 16:19 GMT+01:00 Sharan-F :


Hi Eric

There is no OFBiz presentation on the FOSDEM schedule. The ASF has a booth
at FOSDEM and any of the Apache projects that are present can 'take over'
the booth for a fixed amount of time, to promote their project. OFBiz has
been allocated a slot on Saturday when we can use the booth to do OFBiz
demos, talk to people or just meetup.

I'm going around all weekend and will be generally helping out anyway. I
arrive on Friday so if anyone else is around then please let me know,
(there
is a beer event that looks interesting  https://fosdem.org/2016/beerevent/
  ) otherwise I'll see you at the ASF
stand on Saturday.

Thanks
Sharan




--
View this message in context:
http://ofbiz.135035.n4.nabble.com/Apache-OFBiz-FOSDEM-January-30th-31st-January-2016-tp4675831p4676537.html
Sent from the OFBiz - User mailing list archive at Nabble.com.





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 always been polite 
and helpful. He will surely be missed.
We can pay tribute to Adrian by code naming this year release of 
Ofbiz as Adrian. Apart from giving tribute to his work, we can reach 
out to his family through skype or some other channel and pass out 
the condolence to his family members. PMC members can physically sign 
a document listing some of his contributions and passing that to his 
family as his kids will get to know how great  their father was. This 
will inspire them.


Regards:

Ejaz Ahmed






Subject: Re: Adrian Crum
To: user@ofbiz.apache.org
From: jacques.le.r...@les7arts.com
Date: Sat, 9 Jan 2016 13:59:44 +0100

In the PMC private ML Nicolas (Malin) suggested that we should do 
something official in Adrian's memory.


  >How to pay homage to Adrian for the hight work he did. So I ask 
you, do we can/want/have the possibility to tribute him?
  >It's possible regard to the ASF ? By Internet site, ofbiz release 
dedicate, any other ideas ?

  >I wish advise his family also by official condolences
(slightly modified by me to report here)

I proposed that at least we create a new section (hoping that it 
will not fill too quickly :/ ) at
https://cwiki.apache.org/confluence/display/OFBADMIN/Apache+OFBiz+PMC+Members+and+Committers 



For now I simply greyed Adrian's line and put a small comment.

Thoughts?

Thanks

Jacques

Le 05/01/2016 09:04, Pierre Smits a écrit :

Hi all,

With sadness in my heart I inform you that on January 1st Adrian Crum
passed away peacefully. Adrian was hospitalised in December of last 
year
due to suffering from a double pneumonia. He died while being kept 
sedated.


I wish his loved ones, relatives and friends strength in these 
difficult

times.

Best regards,

Pierre Smits










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 Rogers network.
   Original Message
From: robbinpengchen
Sent: Wednesday 25 November 2015 9:19 PM
To: user@ofbiz.apache.org
Reply To: user@ofbiz.apache.org
Subject: Startofbiz.bat run with errors

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 throw out:


Could you help me to solve it? thanks!



--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/Startofbiz-bat-run-with-errors-tp4674879.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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 throw out:


Could you help me to solve it? thanks!



--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/Startofbiz-bat-run-with-errors-tp4674879.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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 : 
https://cwiki.apache.org/confluence/display/OFBENDUSER/iCalendar+Integration


I didn't find time to use it, but it seems the way to go.

Best Regards

Gil



Le 17/10/2015 06:18, Derek Lew a écrit :

Hi



Would it be possible to send meeting invite in Ofbiz to external 
parties?

Similar to the Outlook way of scheduling a meeting.



Best regards.

Derek Lew


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 the future!

I'm also intereted in Youssef's presentation, anywhere to get it?

BTW, I just found a wiki on the Asterisk integration:
https://cwiki.apache.org/confluence/display/OFBIZ/Asterisk+PBX+Server+Integration
and even a patch:
https://issues.apache.org/jira/browse/OFBIZ-640

Cheers,

Shi Jinghai


-邮件原件-
发件人: Sharan-F [mailto:sharan.f...@gmail.com]
发送时间: 2015年10月4日 22:01
收件人: user@ofbiz.apache.org
主题: Re: Apachecon EU 2015: Thanks!

Hi All

I’m still recovering (not in the hangover sense!) from the great time I had
in Budapest with everyone. It was really good to be there and meet, chat and
generally hang out. There were a few surprises for me including seeing OFBiz
Committer Gavin Mabie there all the way from South Africa! It also was good
to see Rupert Howell and also Simon from Stannah.

This year all presentations in the OFBiz track were done by people whose
first language was not English and once again I was very, very impressed!

I think that we have a few jokers in our community  – for example someone
took a picture of Julien during his UX Design presentation when the slide
was blank! (BTW if you haven’t seen the OFBiz photos from Apachecon then
please take a look at the Twitter feed.)

Our presentation attendance numbers were good :  Jacopo (17), Hans (14),
Youssef (17), Gil (16), Nathan (20) and Julien (15).  My talk got 12 but
mainly thanks to the OFBiz guys!

All the talks were very good and I especially liked Youssef’s demo of the
Asterisk PBX integration for OFBiz where it even recorded the phone
conversation!

On Friday morning we ran an informal OFBiz group discussion to talk about
any points that people saw as important. These could then be raised on the
mailing lists for further discussions within the community.  I think that
some really good ideas and suggestions came up and I’ll write up the notes
that I made and add them to the wiki.

As well as discussions, networking and teambuilding happening between the
OFBiz group, we also did some networking with other Apache projects – for
example Jacopo met up with the main Freemarker Committer who lives in
Budapest. One of the outcomes was that he mentioned that the Freemarker
community would be happy to get input from the OFBiz community for potential
features or improvements for Freemarker.

Once again a big thank you to everyone who took part, presented or helped in
anyway. I hope you all enjoyed the experience - I know that I did. Let’s do
it again next year!

Thanks
Sharan




--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/Apachecon-EU-2015-Thanks-tp4672930p4673036.html
Sent from the OFBiz - User mailing list archive at Nabble.com.





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 :

https://www.flickr.com/photos/77101947@N00/albums/72157659439983942

Christian




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"/>
toTempExprId="MINUTE_00"/>
toTempExprId="HOUR_08"/>
toTempExprId="GOVT_WORK_SCHED"/>



The next job will be scheduled at 08:00:xx where xx is the second 
portion retained (not a big deal).


Does that suit you ?

Best Regards

Gil

On 19/09/2015 18:37, Vyom Jain wrote:

Thanks, I figured out the reasons for why no new jobs were getting created,
there were additional associations DAILY_GRIND in my database (as old seed
data used to have TIME_OF_DAY_RANGE association).
After fixing the seed data, the new job doesn't get scheduled at 8:00AM, I
think it retains the minute portion from its parent job, how can that be
solved?

--
Vyom

On 19 September 2015 at 21:03, Adrian Crum <
adrian.c...@sandglass-software.com> wrote:


http://demo-trunk-ofbiz.apache.org/workeffort/control/calendar

Adrian Crum
Sandglass Software
www.sandglass-software.com

On 9/19/2015 8:30 AM, Vyom Jain wrote:


Okay, can you provide some steps or link to a Work Effort in the demo (

http://demo-trunk-ofbiz.apache.org/workeffort/control/EditWorkEffort?workEffortId=1
)
so that I can see what fields need to be filled?

In my testing with a job on trunk code, first job would get finished but
no
new jobs would get created.

--
Vyom

On 19 September 2015 at 20:52, Adrian Crum <
adrian.c...@sandglass-software.com> wrote:

It is best to test temporal expressions with the Work Effort application -

so you can see the effect of your expression.

I used the DAILY_GRIND temporal expression in a work effort and it
creates
the correct events.

Adrian Crum
Sandglass Software
www.sandglass-software.com

On 9/19/2015 3:11 AM, Vyom Jain wrote:

I've been testing with the demo data and this is more likely a bug with

HOUR_RANGE. For example, if I use TemporalExpression DAILY_GRIND
(ServiceDemoData.xml) on a job, the job runs once but no jobs are
scheduled
for the next day.

--
Vyom

On 18 September 2015 at 20:51, Vyom Jain  wrote:

I've been trying to prepare similar expression on trunk code but neither


INTERSECTION nor DIFFERENCE give desired results (mentioned in first
message).
I've split "TIME_OF_DAY_RANGE" expression & replaced it with separate
"FREQUENCY" & "HOUR_RANGE(8, 18)" expressions.
There seems to be an issue with HOUR_RANGE evaluation.

Can anyone suggest what is wrong in the expression? Could this be a
bug?
On Aug 11, 2014 16:37, "Vyom Jain"  wrote:

TIME_OF_DAY_RANGE includes a frequency portion in it (integer1="13"


integer2="05"), when I had independently used ,
the
service would start *everyday* at 8:00, get scheduled after every 5
seconds
and finally stop at 18:00.

I've been able to formulate an expression that is giving me desired
results -






--
Vyom


On 11 August 2014 16:20, Adrian Crum <
adrian.c...@sandglass-software.com>
wrote:

You are missing a Frequency expression. It is needed to make the event


repeat every 5 seconds.

Time Of Day Range was removed because it was a bad implementation and
it
didn't function properly.

Adrian Crum
Sandglass Software
www.sandglass-software.com


On 8/10/2014 8:32 PM, Vyom Jain wrote:

Hello Everyone,


I would like to schedule recurring jobs in such a way that the job
executes
every 5 seconds from Monday to Wednesday starting from 08:00 till
18:00.

I've tried following temporal expression -






This expression doesn't work as expected - the job doesn't execute
every 5
seconds till 6:00 PM, it starts at 8:00 Monday & next run gets
scheduled to
8:00 Tuesday.

Can anyone suggest what is wrong in the expression?

Note: tempExprTypeId="TIME_OF_DAY_RANGE" is no longer valid in
current
trunk, though it is valid in the version of OFBiz I'm using
(somewhere
between v09.04 & 10.04).

--
Vyom








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"/>




location="${parameters.mainDecoratorLocation}">


location="component://budget/widget/budget/CommonScreens.xml"/>





location="${parameters.mainDecoratorLocation}">


location="component://budget/widget/budget/CommonScreens.xml"/>







HTH

Gil

On 17/09/2015 20:40, SAURABH SINGH wrote:

Hi All

I want help on screen rendering after applying the menu permission

Problem Statement -
I have one module called budget in which I have 3 menus
1.Inwards
2.Outwords
3.Upload and an user has the permission of only third menu which is
"Upload" so while login with this user the menu will be visible for him is
Upload but the controlled in being called is "main" and on this main the
defined screen is "Inward"

So what i want to do is if the user has the permission of Only this menu
there the screen should render the 3rd menu screen only which is upload
menu.

Please help me if needed i can give more clarification on problem
statement.




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 its solutions 
(these add to Hans' one)


I'm convinced that an official Apache referencing website is the best 
way to do. Apache referencing has more value (and objectivity) than any 
external owning referencing tool but in that case, there must be some 
control about the references into the "marketplace" (don't like this 
word, I prefer "extension library"). Indeed, extension have to be tested 
and validated by the community to make the marketplace an Apache one... 
I guess there are quality/licensing/other responsibilities for 
extensions released under Apache OFBiz name.


So, in my opinion, there is some work to do before creating such a 
marketplace under Apache OFBiz name, writing some rules about extensions 
validations (using incubator to validation process), requirement... And 
moreover. This kind of work have already been done in OFbiz-france 
association... If this can be levered to the Apache level, it could be 
great...


It seems that more and more people are interested in this kind of 
solution, i wonder if it's possible to manage such a project ? WDYT ?


I'm thinking that doing a survey about this idea to get what kind of 
adoption there is around it could be a good start.


And for examples of implementation : OFBiz-france has worked on a POC 
and there you can see list of extensions and details of one :

 http://www.nomaka.fr/ofbiz/liste.html
 http://www.nomaka.fr/ofbiz/index.html

And for info all of this is designed like in the OFBiz-france website 
(created with OFBiz CMS :o) ).

 http://www.ofbiz-fr.org

I'm curious to have many thoughts about this subject.

Best Regards,

Gil

On 13/09/2015 12:54, Michael Brohl wrote:

Hi Pierre,

I very much like the idea of a community driven marketing initiative 
and I appreciate your efforts on this. It could be a great opportunity 
for the community members to present their skills and solutions and 
show the users what's possible to do with OFBiz outside the standard 
funtionality.


As you might be aware, there was another initiative by Hans with a 
similar approach, see http://ofbiz.info . As far as I see, this 
approach never gained significant success and it seems dead for a few 
years now (at least the latest news is from 2012).


My theory is, and I might be totally wrong with it, that this is 
caused by the fact that the platform is in the hands of a single 
company and primarily used to promote this company itself. This seems 
to be the plan of your approach also, your companies and trademarks 
are placed prominently at the starting page, using adserver links etc..


I think this approach goes in the wrong direction and won't get enough 
acceptance and support by the community to be successful.


From my perspective, the right approach would be to develop and host 
such a site in the hands of the community, just like the OFBiz 
official website and demo sites. It should be a neutral place where 
every contributor and service provider has the same space to present 
his services and solutions. It must be assured that the platform is 
supported over a long time and that the community can decide which way 
to go with it.


I think the risk to have it in the hands of a single person or company 
is too high to spent significant time and effort in it.


This is just my thought of the current state of the initiative and 
maybe I misunderstood the approach. My apologies if that's the case.


Maybe I'm right and you think over the approach. Any thoughts of you 
and the other community members are very welcome, I'm curious what you 
think.


Kind regards,

Michael Brohl
ecomify GmbH
www.ecomify.de

Am 13.09.15 um 10:28 schrieb Pierre Smits:
The correct url for a sneak peek into the OFBiz Extensions 
Marketplace is

http://oem.ofbizci.net/oci-2

Best regards,

Pierre Smits

*OFBiz Extensions Marketplace*
http://oem.ofbizci.net

On Sun, Sep 13, 2015 at 10:24 AM, Pierre Smits 
wrote:


Hi all,

While the development of the OEM is moving forward at a steady pace, 
I am
pleased to be able to provide a sneak peek into the preliminary 
website.

Please visit http://oem.ofbizci.net for a impression.

Please be advised that it is still work in progress and that the actual
theme and user experience might be subject to change.

Best regards,

Pierre Smits

*OFBiz Extensions Marketplace*
http://oem.ofbizci.net








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" menu seems a good way to include it 
into B design (already got dev and  Business User there) .


Thanks for the work !

Gil

On 08/09/2015 09:56, Sharan-F wrote:

Hi Everyone

Thanks very much for the feedback on my thread about updating our current
website. Based on suggestions from the community I've put together a couple
of diagrams that show a proposed structure for the new OFBiz website.

Please note that these proposals are only meant as guides so we are still
open to getting feedback on any suggested changes.

The first option is :
https://cwiki.apache.org/confluence/display/OFBIZ/Draft+Website+Structure+-+Option+A

The second option is:
https://cwiki.apache.org/confluence/display/OFBIZ/Draft+Website+Structure+Option+B+-+Work+in+Progress

Next we need to get feedback from the community to understand which is the
most preferred, so please can you respond back to this thread with your
thoughts, suggestions, comments.

Thanks
Sharan



--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/MARKETING-OFBiz-New-Website-Structure-Proposals-Feedback-Required-tp4671926.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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"|
|location=||"component://practice/script/org/hotwax/practice/PracticeServices.xml"| 
|invoke=||"createPracticePerson"| |auth=||"true"||>|

|Create a Person|
||
||optional=||"true"||/>|
||optional=||"false"||/>|
||optional=||"true"||/>|
||optional=||"false"||/>|
||optional=||"true"||/>|

|

Which is a minilang service, in these kind of services, you'll find 
example to create more data.


But in you case, to fetch data into forms, it's best to use 
 in screen/form widget, see there for more info 
https://cwiki.apache.org/confluence/display/OFBIZ/Understanding+the+OFBiz+Widget+Toolkit


Or look for some examples in *Forms.xml files.
|

HTH

Gil
On 02/09/2015 15:09, Barou wrote:

Sorry about my new bee question.
I am not sure  if I am in the right place.
When I look at Ofbiz doc I  se many examples like the link below.
https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Tutorial+-+A+Beginners+Development+Guide#OFBizTutorial-ABeginnersDevelopmentGuide-WritingCRUDOperations
for example:

 Create a Example
 
 
 
 
 
 


How can I create service that read from several table ?
Is there a service already implemented in the ofbiz I can use for this
purpose ?
And how do I send user credentials from a form  then used that to fetch the
records created for example  in the product table ?





--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/Is-this-forum-only-for-experienced-Ofbizers-tp4671812.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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 global=true/ 
(YourFileUiLabels.xml have to be in config folder if you kept default 
config)


Adding it after the other overload already existing properties.

HTH

Gil

On 04/08/2015 19:47, Taher Alkhateeb wrote:

Hi,

All setup and mapping is done in ofbiz-component.xml fix everything you
need there.

Taher Alkhateeb
On Aug 4, 2015 8:40 PM, damon henry damonhe...@hotmail.com wrote:


I have a custom app that I am building.  I started with an existing app
which I copied to hot-deploy and have been modifying as needed.  I'm having
a hard time figuring out where uiLabelMap is being loaded from.  My app is
still utilizing the properties in the original component for it's
uiLabelMap values, and I would like it to point to the ones in the new
component I am modifying.  Can someone point me in the right direction?  If
it matters, it is the Warehouse component that I started with.
thanksDamon




Re: Import OFBiz WorkEffort into Outlook calendar

2015-07-17 Thread gil portenseigne

Thanks both for the feedback, i'll use iCalendar integration.

Gil

On 16/07/2015 14:45, Jacques Le Roux wrote:
Sincerely the Funambol integration I did from Opentaps (OFBIZ-4247) 
was a pain. I had no ideas it would be so when I started. I'm not even 
sure it still works with current trunk or last releases.


I agree with Adrian it should be better to rewrite it from scratch. It 
could be then contributed and integrated in OFBiz.


Jacques

Le 16/07/2015 14:26, Adrian Crum a écrit :
The iCalendar integration would be the way to go. Outlook can read 
iCalendar data.


Adrian Crum
Sandglass 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 into mails, wiki and Jira, I only found
https://issues.apache.org/jira/browse/OFBIZ-4247, and Icalendar
Integration :
https://cwiki.apache.org/confluence/display/OFBENDUSER/iCalendar+Integration 




I guess there is a way to import .ical files into Outlook, but if there
is some other experience in the community, it would be nice.

Best Regards

Gil






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 
https://issues.apache.org/jira/browse/OFBIZ-4247, and Icalendar 
Integration : 
https://cwiki.apache.org/confluence/display/OFBENDUSER/iCalendar+Integration


I guess there is a way to import .ical files into Outlook, but if there 
is some other experience in the community, it would be nice.


Best Regards

Gil


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 
announcements etc.


So, the main landing page would have something like:

If you are a developer, go a href=...here/a.

If you are an end user, go a href=...here/a.


I like the idea

Jacques

+1

An end user space with very marketing oriented data could be great. In 
an end user point of view i found current website not very attractive.


The idea expressed in the thread of doing a WebResponsive design is nice !

I'd be glad to help.

Gil




Adrian Crum
Sandglass Software
www.sandglass-software.com

On 5/26/2015 1:09 AM, Sharan-F wrote:

Hi All

I'd like to start a discussion about changing and updating our main 
project
website. We have had our current side for quite a while now and I 
think that

it would be good to update it.

Here are some of my initial thoughts

1. Our logo takes up less space now and we have a lot of space at 
the top so

perhaps we could look at moving the navigation bar into this area
2. A lot of the links on the right hand side could be moved into a 
drop down

navigation bar to give us more space
3. The site itself contains a lot of words which I think makes it 
hard for

visitors to see what is important
4. If we want to focus on potential visitor types (e.g. developers and
business users) then we need to adapt the website and highlight what 
would

interest them and encourage them into trying OFBiz
5. At the moment he biggest thing we highlight is downloading OFBiz 
(yet why

would someone download if they are not sure that it meets their needs).
6. On my version of linux (14.04 LTS) the webpage doesn't fill the 
screen

(I'm not sure if that is just me!)
7. We have links to two versions of OFBiz demos (do we really need 2?)
without any instructions for users as to what they need to do. If 
for some
reason they are logged out they have no instructions how to log in 
again.
8. The 'News' section is very static and gets out of date quickly. 
We have
resurrected our blog so perhaps it would be better to replace this 
with a

blog feed instead.

What do people think? I'm happy to hear any other ideas that people may
have.

If feedback is positive then I'd like to start work on a new draft 
website
that could be presented to back the community. Only if accepted will 
we do

the changeover.

Also I'm not a graphical person or a website designer so would be 
looking

for some volunteers to help me put this together.

Thanks
Sharan



--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/MARKETING-Updating-our-OFBiz-Website-tp4668990.html

Sent from the OFBiz - User mailing list archive at Nabble.com.







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 
?


Jacques

Le 19/05/2015 14:19, Pranay Pandey a écrit :

Thanks Jacopo, its a good OFBiz Committers Guide.

Best regards,

Pranay Pandey
HotWax Systems
http://www.hotwaxsystems.com/
skype: pranay.pandey
cell: +91 982.603.5576

On Tue, May 19, 2015 at 10:52 AM, Jacopo Cappellato 
jacopo.cappell...@hotwaxsystems.com wrote:


Hi Christian,

On May 19, 2015, at 3:37 AM, Christian Carlow 
christian.car...@gmail.com

wrote:


Should committers download the entire ofbiz repository to help with
backporting?
it is easier if you keep the trunk and the release branches in 
different

svn folders (i.e. different checkouts); for example:

mkdir ofbiz
cd ofbiz
svn co https://svn.apache.org/repos/asf/ofbiz/trunk trunk
svn co https://svn.apache.org/repos/asf/ofbiz/branches/release14.12
release14.12
svn co https://svn.apache.org/repos/asf/ofbiz/branches/release13.07
release13.07
svn co https://svn.apache.org/repos/asf/ofbiz/branches/release12.04
release12.04
svn co https://svn.apache.org/repos/asf/ofbiz/site/ website

you will end up with the following folder layout:
ofbiz/
ofbiz/trunk
ofbiz/release14.12
ofbiz/release13.07
ofbiz/release12.04
ofbiz/website

Then you can setup, with your favorite IDE, one project for each.


Is there a standard procedure new committers should follow
for backporting?
Only bugs should be backported to active release branches (if they 
happen

also there); it is not mandatory that you do but it is very much
appreciated!
Here is a simple workflow to backport a commit to a branch.
1) commit the fix to trunk and note down the commit id; e.g. rev 12345
2) go to the release branch you want to backport to; e.g. cd
ofbiz/release14.12
3) run the following script (the script will apply the commit to your
local release branch):
./tools/mergefromtrunk.sh/bat merge 12345
4) run the tests with:
./tools/mergefromtrunk.sh/bat test
5) it is also a good idea to start the instance and test manually
6.a) if tests are unsuccessful, abort the process and clean your local
release branch:
./tools/mergefromtrunk.sh/bat abort
6.b) if tests are successful, and you want to commit the backport:
./tools/mergefromtrunk.sh/bat commit


  I was going to test my new committer privilege by
applying my OFBIZ-6387.patch.  Should I apply it to the release 
branches

also?

That is probably not a bug but it is a small change and could be a good
chance to practice with the above process, so please do if you like.

Regards,

Jacopo




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 
since we have already a commit and a lot of comments, I think it's time to 
congratulates you new committer, welcome on board :)

Jacques

I know that at this time it is not a news but, now that the list is complete, I 
would like second Jacques in welcoming our new committers:

Arun Patidar
Christian Carlow
Divesh Dutta,
Julien Nicolas
Michael Brohl
Shi Jinghai
Taher Alkhateeb

welcome onboard guys!

This is the first time we invite so many persons in one shot and I am aware 
this could be a surprise to some and a concern to others.
I am aware that onboarding 8 new persons is a challenge and that extra effort 
will have to be spent by our senior committers to guide and help them, but I am 
sure that we will succeed is we work together and are nice with each other.

To the senior committers and PMC members: please be kind, patient, and 
supportive with the new committer; we should all keep in mind that our primary 
goal is to build an amazing and nice community, and our secondary goal is to 
build a great software.

To the new committers: please do your best to commit code you are sure about, 
and ask for advices before committing code you are not sure; and please help 
each other by reviewing other's work and helping to improve it; now that I read 
these notes I realize that they apply to all committers old and new :-)

Jacopo





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
https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+track+@+Apachecon+US+2015+in+Texas%2C+Austin+-++April+13-17%2C+2015

I've also updated the page to include a summary abstract of each
presentation.

Thanks
Sharan



--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/ApacheCon-2015-tp448p4666955.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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? Won't that run off screen and get lost in oblivion?

Best regards.


Pierre Smits

*ORRTIZ.COM http://www.orrtiz.com*
Services  Solutions for Cloud-
Based Manufacturing, Professional
Services and Retail  Trade
http://www.orrtiz.com

On Fri, Apr 17, 2015 at 6:02 AM, Jacques Le Roux 
jacques.le.r...@les7arts.com wrote:


Le 16/04/2015 14:44, Jacques Le Roux a écrit :


Thanks Adrian!

Maybe we could share all the slideshows in some place in the wiki?


No need, it's on the main site http://ofbiz.apache.org/ thanks to Twitter
and Sharan :)

Jacques




Jacques

Le 16/04/2015 12:41, Adrian Crum a écrit :


Here is the slideshow from my presentation at ApacheCon:


http://www.sandglass-software.com/products/sandglass/documents/2015_ApacheCon_Reduced.pdf






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, Jacques Le Roux a écrit :
Did you look at it? It's the last tweet in the timeline, there is a 
link to all ASF presentations, look for OFBiz ones there


As said Gil, OFBiz ones are also in the wiki for the sake of history :)


Ha wait I misread Gil, ApachCon 2015 is not there yet...

Jacques



Jacques

Le 17/04/2015 07:46, Pierre Smits a écrit :
So it is in a tweet? Won't that run off screen and get lost in 
oblivion?


Best regards.


Pierre Smits

*ORRTIZ.COM http://www.orrtiz.com*
Services  Solutions for Cloud-
Based Manufacturing, Professional
Services and Retail  Trade
http://www.orrtiz.com

On Fri, Apr 17, 2015 at 6:02 AM, Jacques Le Roux 
jacques.le.r...@les7arts.com wrote:


Le 16/04/2015 14:44, Jacques Le Roux a écrit :


Thanks Adrian!

Maybe we could share all the slideshows in some place in the wiki?

No need, it's on the main site http://ofbiz.apache.org/ thanks to 
Twitter

and Sharan :)

Jacques




Jacques

Le 16/04/2015 12:41, Adrian Crum a écrit :


Here is the slideshow from my presentation at ApacheCon:


http://www.sandglass-software.com/products/sandglass/documents/2015_ApacheCon_Reduced.pdf 










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 brief
survey. This will help us gather some feedback and information about how we
can improve future Community Days.

*IMPORTANT NOTE*: Please only complete the survey if you actually
participated in the Community Day.

The link to the survey is below
  
https://www.surveymonkey.com/s/V25MB73

https://www.surveymonkey.com/s/V25MB73

The survey will be open until *Friday 27th March 2015.* and  I will  publish
the results on the Wiki.

Thanks
Sharan



--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/Community-Day-Survey-Feedback-Required-tp4665649.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




Re: sending mails to contactlist (marketing component)

2015-02-04 Thread gil portenseigne

I'm talking about the service :

http://demo-stable-ofbiz.apache.org/webtools/control/ServiceList?sel_service_name=sendEmailDated

Here you can find it :

http://demo-stable-ofbiz.apache.org/webtools/control/FindJob

Gil*

*
Le 04/02/2015 12:10, Heidi Dehaes a écrit :

Gil,

I have only these jobs planned at today 's date:

- sendcontactListPartySubscribeEmail
- sendContactListPartyVerifyEmail

They are also finished. But nothing happened.

Eric

Olagos bvba
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



2015-02-04 12:53 GMT+01:00 Heidi Dehaes info.ola...@gmail.com:


Ok Gil,

Thanks for info.
And what do you mean with and the job sendEmailDate is planned.

Heidi


Olagos bvba
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



2015-02-04 13:50 GMT+01:00 gil portenseigne gil.portensei...@nereide.fr:


  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
preview or publish.

When you publish, if your instance is configured and the job
sendEmailDate is planned, the mail will be sent (after the startDate given
in commEvent creation).

Best Regards

Gil

Le 04/02/2015 11:31, Heidi Dehaes a écrit :

Hello,

Can anyone give me a hint where i can find documentation on how sending
mails to a contactlist in the marketing package.
I define the contactlist properly, i think , but there is never an email
sent outside.

Regards,
Eric

Olagos bvba
Heidi Dehaes
Kerkstraat 34
2570 Duffel
Belgium
Tel. : 015/31 53 04
GSM :0485/22 35 80
E-mail : 
info.olagos@gmail.comhttp://www.olagos.euhttp://www.olagos.comhttp://www.olagos.behttp://www.olagos.nl







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 preview or publish.


When you publish, if your instance is configured and the job 
sendEmailDate is planned, the mail will be sent (after the startDate 
given in commEvent creation).


Best Regards

Gil

Le 04/02/2015 11:31, Heidi Dehaes a écrit :

Hello,

Can anyone give me a hint where i can find documentation on how sending
mails to a contactlist in the marketing package.
I define the contactlist properly, i think , but there is never an email
sent outside.

Regards,
Eric

Olagos bvba
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





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, that many perceive that contributors don't take ownership of
their own issues in JIRA. They create the issue and at best provide
comments to further explain and/or add replies to questions? But that is
that. And the person assigned to the issue is regarded as the one
responsible for having the issue brought to closure.

This has led to the situation that we now have approx of 780 open issues,
of which 600 are unassigned.  Some of which are quite old (pre r10), even
those with committers assigned.

But this isn't how it should be. The creator of the issue should be
regarded as the owner, the persons who brings the issue to closure. And the
committer should be regarded as the gatekeeper/enabler regarding having
patches committed and process followed.

Currently contributors can't be assigned to issues they are willing to work
on, so that they can take ownership. That contributors can't be assigned to
a JIRA issue, is due to the fact that they don't have the proper role set.
In stead of being identified with the role 'Contributor Project Role', they
are treated as 'Any Registered User' (in accordance with the standard
permissions scheme for JIRA, see
https://cwiki.apache.org/confluence/display/INFRA/Role+Based+JIRA+Authorization
).

*Improvement (the proposal)*
In order to improve this situation and increase community involvement, we
should assign the 'Contributor Project Role' to recognised contributors
(see the Contributors page in the wiki:
https://cwiki.apache.org/confluence/display/OFBADMIN/Apache+OFBiz+Contributors)
so that they can be assigned to JIRA issues. Also, we should enable
contributors to be able to assign themselves to their own issues and have
them take ownership.

Enabling contributors to take ownership of JIRA issues will enable the
project to identify the more active community members more easily (as
opposed to those who fire and forget) and get more issues assigned and
closed, but it also helps lessening the burden on committers.
Infrastructure has already such a construct  in place to enable project
contributors to do more (see
https://cwiki.apache.org/confluence/display/INFRA/Role+Based+JIRA+Authorization,
the *Default plus Contributor Assign Permission Scheme*).

What do you think?

Best regards,

Pierre Smits

*ORRTIZ.COM http://www.orrtiz.com*
Services  Solutions for Cloud-
Based Manufacturing, Professional
Services and Retail  Trade
http://www.orrtiz.com





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 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 :
* Introduction to the Apache OFBiz ERP
* Experiences testimony
* Barcamp
* Twelfth-Night pancake tasting

The number of seats are limited, so if you want to attend to the event 
please subscribe using the tool here : 
http://www.ofbiz-fr.org/cmssite/cms/ofbiz-formulaire-evenement


The event is not limited to french speaking people, if you're in Paris 
and want to visit us you are welcome.


Seen you soon in Paris !

OFBiz France Team.





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 (
http://www.hotwaxmedia.com/apache-ofbiz-blog/happy-2015-team-hotwax/) it
was a milestone in 2014 for the organisation to having them invited and
accepted as committers by this project.


Regards,
Pierre Smits

*ORRTIZ.COM http://www.orrtiz.com*
Services  Solutions for Cloud-
Based Manufacturing, Professional
Services and Retail  Trade
http://www.orrtiz.com





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 :
* Introduction to the Apache OFBiz ERP
* Experiences testimony
* Barcamp
* Twelfth-Night pancake tasting

The number of seats are limited, so if you want to attend to the event 
please subscribe using the tool here : 
http://www.ofbiz-fr.org/cmssite/cms/ofbiz-formulaire-evenement


The event is not limited to french speaking people, if you're in Paris 
and want to visit us you are welcome.


Seen you soon in Paris !

OFBiz France Team.



Re: French speaking meeting in Paris

2014-12-19 Thread gil portenseigne

Hi Eric,

It will be in 20th district ! To the east :)

Gil


Le 19/12/2014 17:14, Heidi Dehaes a écrit :

Hi,

Very interesting  
Shall it be in the south or the north of Paris?

Regards,
Eric Lens

Olagos bvba
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:09 GMT+01:00 gil portenseigne gil.portensei...@nereide.fr:

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 :
 * Introduction to the Apache OFBiz ERP
 * Experiences testimony
 * Barcamp
 * Twelfth-Night pancake tasting

The number of seats are limited, so if you want to attend to the event
please subscribe using the tool here : http://www.ofbiz-fr.org/
cmssite/cms/ofbiz-formulaire-evenement

The event is not limited to french speaking people, if you're in Paris and
want to visit us you are welcome.

Seen you soon in Paris !

OFBiz France Team.






Re: French speaking meeting in Paris

2014-12-19 Thread gil portenseigne

Yes it's in the inner Paris and safe.

I repaste the link : (was cut in the first mail)

https://www.ofbiz-fr.org/cmssite/cms/ofbiz-formulaire-evenement

Gil


Le 19/12/2014 17:21, Heidi Dehaes a écrit :

Hi Gil,

In the East is it safe there? Is that inside the Peripherique?
Eric

Olagos bvba
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,

It will be in 20th district ! To the east :)

Gil


Le 19/12/2014 17:14, Heidi Dehaes a écrit :

  Hi,

Very interesting  
Shall it be in the south or the north of Paris?

Regards,
Eric Lens

Olagos bvba
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:09 GMT+01:00 gil portenseigne gil.portensei...@nereide.fr

:
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 :
  * Introduction to the Apache OFBiz ERP
  * Experiences testimony
  * Barcamp
  * Twelfth-Night pancake tasting

The number of seats are limited, so if you want to attend to the event
please subscribe using the tool here : http://www.ofbiz-fr.org/
cmssite/cms/ofbiz-formulaire-evenement

The event is not limited to french speaking people, if you're in Paris
and
want to visit us you are welcome.

Seen you soon in Paris !

OFBiz France Team.







Re: French speaking meeting in Paris

2014-12-19 Thread gil portenseigne
It's from 10 o'clock until lunch, afternoon their is a meeting for 
OFBiz-france member, you could stay if you are interested in the 
association I guess.


Gil

Le 19/12/2014 17:38, Heidi Dehaes a écrit :

Gil,

It is foreseen from 10 o'clock until what time ? Early evening?

Eric

Olagos bvba
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 in the inner Paris and safe.

I repaste the link : (was cut in the first mail)

https://www.ofbiz-fr.org/cmssite/cms/ofbiz-formulaire-evenement

Gil


Le 19/12/2014 17:21, Heidi Dehaes a écrit :

  Hi Gil,

In the East is it safe there? Is that inside the Peripherique?
Eric

Olagos bvba
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,

It will be in 20th district ! To the east :)

Gil


Le 19/12/2014 17:14, Heidi Dehaes a écrit :

   Hi,


Very interesting  
Shall it be in the south or the north of Paris?

Regards,
Eric Lens

Olagos bvba
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:09 GMT+01:00 gil portenseigne 
gil.portensei...@nereide.fr


:
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 :
   * Introduction to the Apache OFBiz ERP
   * Experiences testimony
   * Barcamp
   * Twelfth-Night pancake tasting

The number of seats are limited, so if you want to attend to the event
please subscribe using the tool here : http://www.ofbiz-fr.org/
cmssite/cms/ofbiz-formulaire-evenement

The event is not limited to french speaking people, if you're in Paris
and
want to visit us you are welcome.

Seen you soon in Paris !

OFBiz France Team.








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 
installation folder and UFO will propose all the entities ordered in 
their packages, available to drag and drop and make a new diagram. 
Relation are displayed automatically between entities.


Diagrams are saved in a ufo format for later edition and can be exported 
to png or svg.


Gil




Le 16/12/2014 09:24, pierre.gaudin a écrit :

Hi all,

There is a tool : UFO (UML for OFBIz) that have been developed to make 
UML diagrams from OFBiz XML entity definition :

http://ufo.labs.libre-entreprise.org/UFO/index.html
http://www.neogia.org/wiki/index.php/U.F.O.

We use it for a long time and it works well. It's on GPL licence but 
may be it can be set to Apache licence.


Pierre
On 16/12/2014 05:38, Jacques Le Roux wrote:
The graphs at 
https://cwiki.apache.org/confluence/display/OFBTECH/Data+Model+Diagrams 
were done using OmniGraffle, that's all what I know. Are you 
referring to other places (IIRW other places are older...)


Jacques

Le 15/12/2014 20:37, Ron Wheeler a écrit :
Others may have more definite information about what has been used 
in the past.


I have seen UML(use case) drawings in the wiki that use the same (or 
very similar) graphics that ArgoUML uses.

ArgoUML is open source
We are only scratching the surface in our internal use of it so I am 
not an expert modeller but it looks like something that an 
experienced UML modeler should be able to use to get most of the 
diagrams required to support development.


It would be nice to have a product that deals with the issue of 
version control and SCM for models in a way that allowed many people 
to update the models.
It is probably possible to partition the model into enough chunks 
that people can keep the models up to date without tripping over 
each other.


There are a lot of database models already part of the documentation 
but I am not sure if they are up to date.

I also do not know what tool was used to make them
We use MySQL Workbench which is free and produces diagrams that are 
pretty aesthetically pleasing.




Ron




On 15/12/2014 1:56 PM, Todd Thorner wrote:

I'm sold ... for what that's worth. Is there any UML-type facility for
the project's future of design  spec-chasing?



On 14-12-15 10:41 AM, Ron Wheeler wrote:

On 15/12/2014 1:30 PM, Todd Thorner wrote:

Yeah, graphs  charts represent special cases.

For the first applications of our ETVL, org charts were a very useful
output since we were dealing with people in organizations where a 
clean
hierarchy is the common way that companies are organized. It was 
useful

to have the organizational structure (departments, divisions, etc) as
well as reporting relationships between people.

Graphviz is capable of producing very complex charts and has a fair
amount of language features to support customizing the appearance.

Ron




On 14-12-15 09:49 AM, Ron Wheeler wrote:
If people don't like the idea of using the Graphviz version that 
I made,
there is a viewer for graffle that runs on the PC. Not sure if 
any of

their other free utilities will output an SVG.
Graphviz can outout SVG.
I am not sure if it would be easy to use svg as a source.

Graphviz offers high level control over placement that usually 
gives a

clean graph without having to manually place nodes.

I have just started to use the dynamic javascript version of 
graphviz in

my ETVL tool to output org charts embedded into HTML pages from
hierarchical data.
Works fine but the org charts are not as nice looking as 
GetOrgChart's
charts and GetOrgChart produces a chart that can be interrogated 
in the
browser to view the detail information stored at each node so I 
support

both ways of generating charts in HTML format.

Ron

On 15/12/2014 12:04 PM, Todd Thorner wrote:
What happens if you change a .graffle file's extension to 
something

else
like SVG or XML?  Any luck?  I know very little about Mac 
lock-ins, but
if you can get a text-based file to display (e.g. if .graffle 
is .xml

underneath) you might be able to edit the text.

You could also try taking a screenshot and then editing that by
overlaying the newer links on top of the old image. Quality might
suffer.

Perhaps committers could consider SVG as a forward-thinking 
standard
format for the project's graphical source files 
(production-ready files

can be exported as whatever).  My preferred tool is Inkscape
(Windows/Mac/Linux).



On 14-12-15 06:33 AM, Ron Wheeler wrote:

Can we move them to open source products such as  Open Office or
ArgoUML
or Freeplane?
These run on all platforms and are all free.

Ron

On 15/12/2014 7:30 AM, Sharan-F wrote:

Hi All

Does anyone in the community have access to Graffle on a Mac 
who is

willing
to help us update one of our wiki 

Re: connection with external database

2014-12-07 Thread gil portenseigne
   field name=postDateGmt type=id/field
   field name=postTitle type=id/field
   field name=postPassword type=id/field
   field name=postContent type=id/field
   field name=postType type=id/field
   prim-key field=ID/
 /entity
/entitymodel
--END
entitymodel.xml

--entitygroup.xml:---

?xml version=1.0 encoding=UTF-8?
!-- Licensed to the Apache Software Foundation (ASF) under one or more
contributor
 license agreements. See the NOTICE file distributed with this work
for
additional
 information regarding copyright ownership. The ASF licenses this
file to
 you under the Apache License, Version 2.0 (the License); you may
not use
 this file except in compliance with the License. You may obtain a
copy of
 the License at http://www.apache.org/licenses/LICENSE-2.0 Unless
required
 by applicable law or agreed to in writing, software distributed
under the
 License is distributed on an AS IS BASIS, WITHOUT WARRANTIES OR
CONDITIONS
 OF ANY KIND, either express or implied. See the License for the
specific
 language governing permissions and limitations under the License.
--

entitygroup xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
 xsi:noNamespaceSchemaLocation=
http://ofbiz.apache.org/dtds/entitygroup.xsd;
/entitygroup

delegator name=test_mysql entity-model-reader=main
   entity-group-reader=main entity-eca-reader=main
   distributed-cache-clear-enabled=false
   group-map group-name=org.ofbiz.test_mysql
datasource-name=test_mysql/
/delegator


entity-group group=test_mysql entity=WpPosts /

--entitygroup.xml:---

(below is only the added part of the existing file
/framework/entitydef/config/entityengine.xml)

--entityengine.xml (the data-source
part)---

datasource name=test_mysql
 helper-class=org.ofbiz.entity.datasource.GenericHelperDAO
 field-type-name=mysql
 check-on-start=true
 add-missing-on-start=true
 check-pks-on-start=false
 use-foreign-keys=true
 join-style=ansi-no-parenthesis
 alias-view-columns=false
 drop-fk-use-foreign-key-keyword=true
 table-type=InnoDB
 character-set=latin1
 collate=latin1_general_cs
 read-data reader-name=seed/
 read-data reader-name=seed-initial/
 read-data reader-name=demo/
 read-data reader-name=ext/
 read-data reader-name=main/
 inline-jdbc
 jdbc-driver=com.mysql.jdbc.Driver
 jdbc-uri=jdbc:mysql://127.0.0.1:3306/wp_platfo
 jdbc-username=test
 jdbc-password=test
 isolation-level=ReadCommitted
 pool-minsize=2
 pool-maxsize=250
 time-between-eviction-runs-millis=60 /
/datasource


--END entityengine.xml--

Meanwhile searching in the entity with
   https://localhost:8443/webtools/control/FindGeneric?entityName=WpPosts

does not lead to errors anymore but to empty records.
(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 82 740 444
www.nereide.fr http://www.nereide.fr



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: 
http://ofbiz.135035.n4.nabble.com/Create-new-entity-in-ofbiz-tp4659364.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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 sufficient, to keep the history of the party


Gil

Le 02/12/2014 07:47, vivek.mi a écrit :

Hello all,

I want to delete a party along with all associated data with it. How can it
be achieved in OFBiz,
as of now i can not see if we can delete a party in OFBiz.

Thanks in advance,
Vivek



-
Vivek Mishra
--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/Deletion-of-Party-Data-tp4659287.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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 thoughts.


There isn't much to add to what already written by my conference mates, but
there is one thing I would really like to share.  It is about how warmly
and nicely I was welcomed by the OFBiz group as a newcomer.

They are all skilled, enthusiastic and dedicated professionals and I'm sure
they are only a representative sample of the brilliant community that
supports OFBiz.


It didn't take long to me (and I think also to the others) to understand
that together, as a group, we were much more than each of us alone. I was
the last to present on Monday and when, at the end, I saw Sharan, Pierre,
Jacopo, Olivier, Gil, Nicholas and Youssef still there with me, after all
the other people had left the room, I felt how rewarding and reassuring is
to be part of a 'community'.


  I think that OFBiz is a great project and has the potential to be even
more successful than it is right now. If I were David Jones, I would be
really proud to be the one who gave rise to all this!


Kind regards

Anahita



P.S. I will shortly attach the code illustrated in my presentation to the
wiki page at https://cwiki.apache.org/confluence/x/OYPfAg

Divesh, thank you for your congratulations!

2014-11-22 12:45 GMT+01:00 Sharan-F sharan.f...@gmail.com:


Hi All

See below for my thoughts and feedback on Apachecon last week. It was an
amazing experience to see so many people that are involved with Apache as
well as OFBiz in one place.

Monday (the OFBiz track day) was the very intense. In the morning most of
us
met each other face to face for the first very time and straightaway we
found that we could sit down and start  discussions on a range of topics.
As
the only native English speaker I must admit that I was impressed by
everyone's language ability!

My presentation was the first (so I was a bit aprehensive) but like all the
presentations that day – raised questions for discussion.

I think one of the most surprising things that came out of my presentation
was that the host of the talk (a committer from the FreeBSD project) spoke
to us about the problems he had as a potential new user trying to download,
setup and use OFBiz.  We would have probably never got this feedback if he
hadnt been assigned to host our talk.

Just for information - here are the attendance stats.

- I think my talk attracted 8 people
- Pierre's talk attracted 11 people
- Jacopo's talk attracted 11 people
- Olivier's talk attracted 16 people
- Nicolas and Gil's talk attracted 11 people
- Anahita's talk attracted 27 people


On Tuesday we attended some other tracks and I hosted the talk for
committer
on the Tomcat project (so someone good to know).  I also went to see a talk
on Trademarks and Branding so this is as task that I'd like to do a bit
more
about just to make sure that the OFBiz brand is not being misrepresented.

On Wednesday afternoon we all decided to hold a bit of a workshop to talk
about OFBiz and what our ideas are now and for the future. It was really
interesting to hear everyone's vision of the project and how they wanted it
to be. We identified a range of areas and some proposals that we'd like to
consult the community about. I am in the process of writing up the minutes
and summarising the range of proposals that came out of that meeting so
will
share that with the mailing list via a different thread.

On Thursday a lot of us attended the Barcamp which was a specific forum for
asking questions and getting feedback from other Apache projects. Any topic
could be raised and we had some great discussions around How Apache works,
Git vs SVN, PMC roles, Updating other people's code without offending them,
etc.

It was a very busy week and I think I can speak for everyone when I say
that
we also had a lot of fun too.

Looking forward to the next one!

Thanks
Sharan

Sharan-F wrote

Hi All

We've been having a busy week at Apachecon in Budapest and I'm sure that
the people that attended will be posting their updates about it soon.

I just wanted to let the community mailing list know that I think the
OFBiz track was a success (our biggest session was Anahita's where 27
people came along!)

As well as running our own track, meeting each other for the first time,
attending some other sessions, we found some time to hold a round table
session to talk about some project related topics. I will be summarising
our discussions and post these here - I think we have some great

potential

proposals that we'd like to consult the community about.

More news coming soon!

Thanks
Sharan





--
View this message in context:
http://ofbiz.135035.n4.nabble.com/OFBiz-at-Apachecon-Europe-tp4658651p4658773.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: OFBiz at Apachecon Europe

2014-11-21 Thread gil portenseigne

Hi all,

First Thanks for the sum-up work ! My time to feedback !

The apacheCon was great, i learned a lot About Apache software and the 
apache way,  I can only advice everyone to come to the next one !
It's a great oppotunity to meet people and to put a face onto the name 
we see daily, to discuss and to understand each one view points. That's 
good for the project life !


OFBiz presentations were interesting and comfort myself into my personal 
and professional project of life !
I hope that the audio recording of the conferences will be published 
soon to share a bit of the experience.


Then, i would like to complete wiki page with Olivier's presentation, if 
somebody could create an account for me it would be great !


Best Regards !

Gil




On 21/11/2014 09:49, Pierre Smits wrote:

Hi all,

I have extended the Apachecon EU 2014 page a bit with tags, and I have
added:

- link to the explanatory page regarding the talk by Anahita about the
Recommender System
- link to the explanatory page regarding the talk by Jacopo about the
OFBiz Groovy DSL
- link to the explanatory page regarding my talk about Brewing with
Apache OFBiz

See the changes in effect here:
https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+track+@+Apachecon+EU+2014+in+Budapest,+Hungary+Nov+17th+-+Nov+19th+2014

Best regards,

Pierre Smits

*ORRTIZ.COM http://www.orrtiz.com*
Services  Solutions for Cloud-
Based Manufacturing, Professional
Services and Retail  Trade
http://www.orrtiz.com

On Fri, Nov 21, 2014 at 6:56 AM, Jacopo Cappellato 
jacopo.cappell...@hotwaxmedia.com wrote:


Thanks to all.
I have moved the conference pages to the public wiki:

https://cwiki.apache.org/confluence/x/x5CuAg

and I have uploaded my presentation.
As soon as I will find some time I will post here my comments and notes
about the conference.
It was a great experience.

Jacopo

On Nov 20, 2014, at 12:11 PM, Pierre Smits pierre.sm...@gmail.com wrote:


Hi Sharan, Divesh, All,

We currently have this page:


https://cwiki.apache.org/confluence/display/OFBADMIN/OFBiz+track+@+Apachecon+EU+2014+in+Budapest%2C+Hungary+Nov+17th+-+Nov+19th+2014

in
the OFBiz Project Administration wiki

This page is a child of the Conference Planning page, which I believe
should all move to the more generic OFBiz wiki. Moving it there will

lessen

the burden on committers to maintain these pages. It will also allow

other

contributors to extend the pages with child pages regarding new events.

In the general OFBiz wiki Anahita has already created a placeholder
regarding here talk, see here


https://cwiki.apache.org/confluence/display/OFBIZ/ApacheCon+EU+2014+-+Introduction+to+a+Recommender+System+for+Apache+OFBiz

Also, Jacopo has created a page there regarding the subject of his talk,
and has recently attached his presentation to that. See here:


https://cwiki.apache.org/confluence/display/OFBIZ/Groovy+DSL+for+OFBiz+business+logic

And you can find my talk here:


https://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 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: OFBiz at Apachecon Europe

2014-11-21 Thread gil portenseigne

Hi Sharan !

It was Good to see you too !

My bad for the way to do that ! I just created my account with the 
username : gil.pts


Thank you for updating the page :)

Gil

On 21/11/2014 11:44, Sharan-F wrote:

Hi Gil

It was good to meet you.

If you want to be able to edit the wiki then you need to

1. Create an account in confluence (so just access the wiki page and
register)
2. When you have your username then post a message to the mailing list with
your username and request to be a contributor.

I think normally Jacques will be able to modify the access for you.

Thanks
Sharan



--
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 46 09, puis 1, poste 61
Mob : 06 82 740 444
www.nereide.fr http://www.nereide.fr



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

2014-10-23 Thread gil portenseigne
Hi, you should have given the userLogin variable in the context to your 
service. It's better than desactivate login on the service.


I quote an exemple from another groovy file in ofbiz :

checkMap = [orderId : orderId, userLogin : 
session.getAttribute(userLogin), checkAction : VIEW];
checkResult = dispatcher.runSync(checkSupplierRelatedOrderPermission, 
checkMap);


Gil



Le 23/10/2014 19:44, joelfrad...@gmail.com a écrit :

Got it to run by looking at the other one that works and added
login-required=false.
Really odd, I mean I was logged in?
I tried changing the servicedef to say no auth, but that did not help.
What else was odd is it must default to needing login, as I did not see it
was required and I changed. It just was not there at all and my service def
said no to auth, but I guess in the end if you dont want logged in you have
to specify. But since I was logged in I am 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 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: OFBiz and Attitude Trust

2014-10-22 Thread gil portenseigne

Hi Jacques, i felt the same !

So +1 !

Gil
Le 22/10/2014 11:59, Jacques Le Roux a écrit :


Le 22/10/2014 08:17, Scott Gray a écrit :
it's a community issue, code review is an important part of 
open-source and it doesn't require any special access to perform. 


A very important point, thanks 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 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

Hi Joel try this in minilang :


if-compare field=parameters.quantityOnHandVar 
operator=less value=0

!-- do --
else
!-- do --
/else
/if-compare

If you're working with eclipse, it's best to configure your xml catalog, 
to have auto completion based on the xsd.


Gil

Le 22/10/2014 17:15, joelfrad...@gmail.com a écrit :

I am trying to do some logic.
   if-compare field=parameters.quantityOnHandVar
operator=less value=0
do something
   else-compare
do something else
   /else-compare
   /if-compare
My do something else is never called.
I can do two if's ok, but wondered if I am doing something wrong when I want
to do a else in minilang.




-
Joel Fradkin
--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/else-compare-question-tp4657240.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 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 :

Hi Joel try this in minilang :


if-compare field=parameters.quantityOnHandVar 
operator=less value=0

!-- do --
else
!-- do --
/else
/if-compare

If you're working with eclipse, it's best to configure your xml 
catalog, to have auto completion based on the xsd.


Gil

Le 22/10/2014 17:15, joelfrad...@gmail.com a écrit :

I am trying to do some logic.
   if-compare field=parameters.quantityOnHandVar
operator=less value=0
do something
   else-compare
do something else
   /else-compare
   /if-compare
My do something else is never called.
I can do two if's ok, but wondered if I am doing something wrong when I want
to do a else in minilang.




-
Joel Fradkin
--
View this message in 
context:http://ofbiz.135035.n4.nabble.com/else-compare-question-tp4657240.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 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




--

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: 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 the documentation survey that was
run at the end of September / early October. The details are available on
the Wiki at the link below

https://cwiki.apache.org/confluence/display/OFBIZ/September+2014%3A+OFBiz+Documentation+Survey+Results
https://cwiki.apache.org/confluence/display/OFBIZ/September+2014%3A+OFBiz+Documentation+Survey+Results

Thanks to everyone that completed the survey. A big thank you also goes out
to Ron Wheeler who provided me with a lot of help putting the survey
together.

I hope that people will review the details and provide their feedback on the
results and my conclusions. Perhaps this could help with providing some
input into some of the current discussion topics (e.g New Users,
Documentation, Community Health etc)

I think that a survey is a useful tool that gives us valuable information
about the community and their thoughts. I’d like to suggest that we look at
doing future surveys on specific topics and also try to see if we can
increase the response coverage.

Thanks
Sharan
  





--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/OFBiz-Survey-Results-tp4656853.html
Sent from the OFBiz - User mailing list archive at Nabble.com.




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

2014-10-09 Thread gil portenseigne

Hello Christian,

The default pagination size being twenty, if the list is lower (i.e. 
with no paginate bar) it's quite easy to count the rows. If higher, you 
already have the number on pagination bar and then in mind when you 
change the paginate size.


I think that it's cleaner to remove paginate bar if not needed. But it 
might be a good solution to add an option on the form to enforce the 
pagination bar presence, even if under the limit. That's worthy of a JIRA :)


My 2 cents.

Gil






On 08/10/2014 20:32, Christian Carlow wrote:
Does anyone have a good reason why the paginate 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
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: Starting a new

2014-10-03 Thread gil portenseigne

Hi,

Go here to unsubscribe :

https://ofbiz.apache.org/mailing-lists.html

You'll find the links !

Thanks.

Gil

Le 03/10/2014 15:22, Sumit Personal a écrit :

Remove me from this mail chain

Sent from my iPhone


On 03-Oct-2014, at 2:39 am, Anil Patel anil.pa...@hotwaxmedia.com wrote:

Yes, get 13.07 from http://svn.apache.org/repos/asf/ofbiz/branches/release13.07



Thanks and Regards
Anil Patel
COO
Hotwax Media Inc
http://www.hotwaxmedia.com/
ApacheCon US 2014 Silver Sponsor
http://na.apachecon.com/sponsor/our-sponsors


On Oct 2, 2014, at 3:50 PM, Forrest Rae f...@14x.net wrote:

Hi Anil,

Do you just mean the branch in SVN [1], or just the trunk for now until
13.07.01 is released?

-Forrest

1: http://svn.apache.org/repos/asf/ofbiz/branches/release13.07/


On 10/2/2014 11:50 AM, Anil Patel wrote:
Forrest,
I recommend 13.07.


Thanks and Regards
Anil Patel
COO
Hotwax Media Inc
http://www.hotwaxmedia.com/
ApacheCon US 2014 Silver Sponsor
http://na.apachecon.com/sponsor/our-sponsors


On Oct 2, 2014, at 2:26 PM, Nicolas Malin nicolas.ma...@nereide.fr wrote:

Hi Forrest,

But for what doing ? Production site, testing, learning or just for fun ?

If you want install a debian, 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
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: [ANNOUNCE] Apache OFBiz 12.04.03 released

2014-06-19 Thread gil portenseigne

Hi Julien,

I dont know if a such list exists but you can get the list of commit 
between the two releases with in a fresh svn checkout of the branch :

svn log -r1502759:1601320  Commit.12.04.03

(i got the revision from the dowloaded zip of the 12.04.03 and 12.04.02)

Gil

Le 19/06/2014 08:49, Julien NICOLAS a écrit :

Hello Jacopo,

Is it possible to have the link to the bug fix list ?
I want to share this news but it could be more interesting if I can 
explain more about this release.


Thanks,

Julien.


Le 19/06/2014 07:50, Jacopo Cappellato a écrit :
The Apache OFBiz community is pleased to announce the new release 
Apache OFBiz 12.04.03.


Apache OFBiz is an open source enterprise automation software project 
(ERP, CRM, E-Business / E-Commerce, MRP, SCM, CMMS/EAM...):


http://ofbiz.apache.org/

Apache OFBiz 12.04.03 is a bug fix release for the 12.04 series; 
all users of Apache OFBiz 12.04.02 are encouraged to upgrade to 
this latest release because the new release contains several bug fixes.


The release file can be downloaded following the instructions in the 
OFBiz download page :


http://ofbiz.apache.org/download.html

The OFBiz Team.






--

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



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

2012-07-30 Thread Gil Portenseigne
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: Adrian Crum [mailto:adrian.c...@sandglass-software.com]
  Sent: July-29-12 9:06 PM
  To: user@ofbiz.apache.org
  Subject: Re: Still getting started but question about 'startofbiz.sh'
  
  It sounds to me like you have everything working properly.
  
  -Adrian
  
 
 Thanks Adrian.
 
 So this 'startofbiz.sh' is supposed to run forever?  Is there a way to start
 ofbiz like a server, 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
Le lundi 30 juillet 2012 à 15:18 +0200, Jacques Le Roux a écrit :

 rather
 ./sh startofbiz.sh  
 though

Did you mean ./startofbiz.sh ? I do not understand the ./sh
thing...  :-)

gil


 
 You  may also have a look at rc.ofbiz* files (in tools 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 juillet 2012 à 08:15 -0400, Ted Byers a écrit :
 
   -Original Message-
   From: Adrian Crum [mailto:adrian.c...@sandglass-software.com]
   Sent: July-29-12 9:06 PM
   To: user@ofbiz.apache.org
   Subject: Re: Still getting started but question about 'startofbiz.sh'
  
   It sounds to me like you have everything working properly.
  
   -Adrian
  
 
  Thanks Adrian.
 
  So this 'startofbiz.sh' is supposed to run forever?  Is there a way to 
  start
  ofbiz like a server, 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
  


-- 
Gil Portenseigne gil.portensei...@nereide.fr


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

2012-07-30 Thread Gil Portenseigne
Hi

Le lundi 30 juillet 2012 à 16:46 +0200, Carsten Schinzer a écrit :

 Gil,
 
 go get some Linux basics for Server operations.
 
 ./sh will invoke a separate shell (runtime environment) for your ofbiz
 instance

I do not agree with that, it will try to launch a script called sh in
current directory...

  will send it to background processing

agree, that was my advice ;)

 
 Make sure, you have your logfiles under control before you start hiding
 things from a console.

+1, for that uncomment/comment the last lines of startofbiz.sh (or bat
under windows) scripts...

 Basically you should keep
 + a running logfile that rolls over every day (or every x MBs), keep a
 series of them -- see the log4.xml configuration for this one
 + a session logfile, typically this is available at
 {OFBIZ_HOME}/runtim/logs/console.log
 
 In order to read and follow these while your ofbiz instance runs, you will
 need to familiarize with one of vi, cat, tail.
 

I'm fully familiarized with all of these tools ;) !

Regards

Gil


 @Jacques: Looks like these are some Run OFBiz in *ix environments Faq do
 we not have a basic cheat sheet in the wiki?
 
 Regards
 
 
 Carsten
 
 
 2012/7/30 Gil Portenseigne gil.portensei...@nereide.fr
 
  Le lundi 30 juillet 2012 à 15:18 +0200, Jacques Le Roux a écrit :
 
   rather
   ./sh startofbiz.sh  
   though
 
  Did you mean ./startofbiz.sh ? I do not understand the ./sh
  thing...  :-)
 
  gil
 
 
  
   You  may also have a look at rc.ofbiz* files (in tools 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 juillet 2012 à 08:15 -0400, Ted Byers a écrit :
   
 -Original Message-
 From: Adrian Crum [mailto:adrian.c...@sandglass-software.com]
 Sent: July-29-12 9:06 PM
 To: user@ofbiz.apache.org
 Subject: Re: Still getting started but question about
  'startofbiz.sh'

 It sounds to me like you have everything working properly.

 -Adrian

   
Thanks Adrian.
   
So this 'startofbiz.sh' is supposed to run forever?  Is there a way
  to start
ofbiz like a server, 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
   
 
 
  --
  Gil Portenseigne gil.portensei...@nereide.fr
 


-- 
Gil Portenseigne gil.portensei...@nereide.fr


Re: Who is using the seleniumxml and why?

2012-03-01 Thread Gil Portenseigne
Hi Hans,

I agree with jacopo, we used to have a CI using pure selenium with bash
scripts.

 Since we wanted to migrate into jenkins for IC purpose, we are
interested in your habits about using CI within ofbiz. 

If we can contribute by giving new tests and using the same system, we
will be glad to do so.

Cheers

Cil

Le jeudi 01 mars 2012 à 08:17 +0100, Jacopo Cappellato a écrit :

 Hi Hans,
 
 interesting; I would love if you could add some details:
 * how do you create seleniumxml tests? do you create them manually (editing 
 xml files) or with some other mechanism (Selenium IDE etc...)?
 * do you have a big library of test scripts?
 * did you try the new version of Selenium?
 
 And last question: when you say we are using it what do you mean? You and 
 your development team?
 
 Thanks,
 
 Jacopo
 
 On Mar 1, 2012, at 7:38 AM, Hans Bakker wrote:
 
  We are using this and this function should not be deleted quickly
  
  Regards,
  Hans
  
  
  On 02/23/2012 11:05 PM, Jacopo Cappellato wrote:
  Good day everyone,
  
  I would love to know from the persons that are using the seleniumxml 
  integration available in framework/testools their opinion about this 
  tools; specifically I am interested to know:
  
  1) how you use it (settings, platform, browser) and if it is functional 
  and useful
  2) the advantages you see in using this OFBiz specific integration rather 
  than using the standard Selenium tools
  ** do you find it easier to setup this component rather than the standard 
  Selenium?
  ** is it easier to write tests in the custom xml syntax provided by 
  seleniumxml? or do you rather create them (as suggested by the 
  documentation in framework/testools) using one of the standard browser 
  plugins available for Selenium and then convert to xml using the custom 
  script in OFBiz?
  3) are you willing to contribute the tests you are using? are they generic 
  enough to be contributed back to the project?
  
  I am asking #1 and #2 because I feel that we could replace all the custom 
  code we have for seleniumxml (and required jar files) with a good document 
  that explains how to setup Selenium (no special integration is actually 
  required for ofbiz) and then, instead of writing/maintaining test scripts 
  in this custom xml formal, we could simply accept and commit standard 
  selenium test scripts (in my opinion users 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...@nereide.fr