答复: 答复: How to Create Plugin without loadDefault

2018-11-29 Thread Schumann Ye
t; 发送时间: 2018年11月29日 16:02 收件人: user@ofbiz.apache.org<mailto:user@ofbiz.apache.org> 主题: Re: 答复: How to Create Plugin without loadDefault Newly created plugins should work with seed data as base-permission@_ADMIN permissions are assigned to SUPER group. Please make sure to associate you

Re: 答复: How to Create Plugin without loadDefault

2018-11-29 Thread Deepak Dixit
.org<mailto:user@ofbiz.apache.org> > 主题: Re: 答复: How to Create Plugin without loadDefault > > 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 > &g

答复: 答复: How to Create Plugin without loadDefault

2018-11-28 Thread Schumann Ye
t; 主题: Re: 答复: How to Create Plugin without loadDefault 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" plu

Re: 答复: How to Create Plugin without loadDefault

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

答复: How to Create Plugin without loadDefault

2018-11-28 Thread Schumann Ye
Dear Jacques, My bad memory! I double check it and it was written by Jacopo from Hotwax. Thanks Schumann 发件人: Jacques Le Roux 发送时间: Wednesday, November 28, 2018 3:47:32 AM 收件人: user@ofbiz.apache.org 主题: Re: How to Create Plugin without loadDefault Hi

答复: How to Create Plugin without loadDefault

2018-11-28 Thread Schumann Ye
e.org> 主题: Re: How to Create Plugin without loadDefault Hi, After you have (re)build and started your OFBiz implementation you don't need to (re)build and start it again loading all data (with ./gradlew loadDefault) unit you make changes to your java code or service definitions. You can make cha

答复: How to Create Plugin without loadDefault

2018-11-28 Thread Schumann Ye
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 loadDe

Re: How to Create Plugin without loadDefault

2018-11-27 Thread Pierre Smits
Hi, After you have (re)build and started your OFBiz implementation you don't need to (re)build and start it again loading all data (with ./gradlew loadDefault) unit you make changes to your java code or service definitions. You can make changes to your screens, forms, FTL and Groovy scripts

Re: How to Create Plugin without loadDefault

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

Re: How to Create Plugin without loadDefault

2018-11-27 Thread Jacques Le Roux
Hi Schumann, Sorry I don't remember having wrote a such tutorial (maybe I updated it). Have you an URL? Jacques Le 27/11/2018 à 13:09, 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

How to Create Plugin without loadDefault

2018-11-27 Thread Schumann Ye
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