Re: Why create transaction in Event?

2016-07-27 Thread 叶双明
Hi Scott,

Yes,modify

def results = dispatcher.runSync("createOrder", serviceCtx)

to

def results = dispatcher.runSync("createOrder", serviceCtx, 60, true)

would make my secas works as expected. But i need to modify so many
code in Event
to resolve similar problem, I think it is a bad smell for the entire system.

And I still worry about i mentioned above 1,2.

Thanks & Regards

2016-07-26 15:56 GMT+08:00 Scott Gray :

> You can leave your code mostly the same, but just require a new transaction
> for createOrder, you'll see the option available in the runSync overloaded
> methods.
>
> I've been working with an older version of OFBiz for the last few years so
> I wasn't aware of this change, but I believe it is better than what we had
> before.  The primary purpose of an event in OFBiz is to perform some sort
> of action, and it is very easy for developers to unwittingly directly write
> to the database inside an event.  Obviously this is problematic when the
> updates aren't wrapped in a transaction.  Virtually everything else in
> OFBiz automatically begins a transaction (services, simple methods,
> screens, etc.) and I think it was a good idea for the sake of consistency
> to have the same behavior with events.
>
> The behavioral change between versions is regrettable, but also unavoidable
> if we want to progress.
>
> Regards
> Scott
>
> On 26 July 2016 at 19:02, 叶双明  wrote:
>
> > Hi all:
> >
> > After update ofbiz to 13.07.03, our system was Unstable. At last, I found
> > the cause was The transaction created in Event, introduced in revision
> > 1,740,632.
> > And found https://issues.apache.org/jira/browse/OFBIZ-6808.
> > But I doubt whether it is good to do this.
> >
> > In my opinion:
> >
> > 1. It would make more long-running transaction.
> > For example, there was a event which call three services, the three
> > services has their own transaction before the change, but now there is
> one
> > big transaction for the event and three services, of course the
> transaction
> > would run longer time.
> >
> > 2. It would make a lots of transaction run longer time.
> > Almost all event would do something else after call service, for
> > example, convert the result from service to JSON format, but the
> conversion
> > not need transaction!
> >
> > 3. It makes it difficult to manage transactions between services and
> > events.
> > For example, there was a event:
> >
> > public String createOrder() {
> >
> > //some business process here... and define serviceCtx
> >
> > def results = dispatcher.runSync("createOrder", serviceCtx)
> >
> > //some business process here... and return success or error at
> last
> >
> > }
> >
> > after call createOrder service success, i want to fire a jms
> > service(call it jmsIndexOrder) to index the order in Elasticsearch。
> > I use secas before the change, everything work well.
> >
> > 
> > 
> > 
> >
> >
> > but now i don't know where ant how to call jmsIndexOrder. :(
> >
> >
> > --
> > 叶双明
> >
>



-- 
叶双明


Re: ofbiz version 14 webpos

2016-07-27 Thread Heidi Dehaes - Olagos
Ok i get it working.

Rather complicated  ofbiz.

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-07-26 14:26 GMT+02:00 Heidi Dehaes - Olagos :

> Hello Pierre, Jacques,
>
> I set up also the "categories" "product" "price" page with the tax fields.
>
> For the "standard" price and the "list" price , i added information for
> Belgium in "tax percentage" field, in the "tax authority party" field and
> in the "tax auth geo id" field and the "tax in price" field is set to yes.
>
> But no changes in the WEBPOS application . Here the prices are shown
> without taxes even if we fill in the shipment or billing address with an
> address in Belgium.
>
> Is it possible that part is not yet implemented in the java code?
>
> 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-07-26 14:07 GMT+02:00 Heidi Dehaes - Olagos :
>
>> Hello Jacques, Pierre,
>>
>> I used until now only module "accounting" with menu "TaxAuthority" for
>> setting up VAT Taxes which works fine until now.
>> But not for the webpos. There is no tax used apparently.
>>
>> I will now investigate with your documentation what to set up under the
>> "categories" "product" part .
>>
>> 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-07-26 13:50 GMT+02:00 Jacques Le Roux 
>> :
>>
>>> This may also complete Pierre's answer and helps you Eric
>>> https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz's+Tax+Authority+Data+Model
>>>
>>> VAT and other type of taxes are handled at
>>> https://localhost:8443/accounting/control/EditTaxAuthority?taxAuthPartyId=BEL_FOD&taxAuthGeoId=BEL
>>>
>>> Not sure if you knew about EditTaxAuthority or not, anyway I guess it
>>> helps
>>>
>>> Jacques
>>>
>>>
>>> Le 26/07/2016 à 13:14, Pierre Smits a écrit :
>>>
 Hi Eric,

 Prices (and whether or not to include taxes - e.g. VAT) are defined in
 the
 product component.

 I trust the above helps.

 Best regards,

 Pierre Smits

 ORRTIZ.COM 
 OFBiz based solutions & services

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

 On Tue, Jul 26, 2016 at 12:09 PM, Heidi Dehaes - Olagos <
 info.ola...@gmail.com> wrote:

 Hello,
>
> I start the "webpos" application from ofbiz 14.2.
>
> The "webpos" has already a lot of functionality but how to add VAT
> taxes to
> the prices which are shown?
>
> Can someone help me?
>
> I don't find it. Is the code therefore already implemented?
>
> 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: What am I missing? /etc/init.d type of start

2016-07-27 Thread Chris Clark
I only commented because it took me a while to get a init.d startup to
work, and as soon as I finished it, i upgraded my fedora box and now
everything is systemd.  Some people don't like the all powerful systemd,
but it is taking over nonetheless, much like selinux

Chris

On Jul 27, 2016 1:20 PM, "Craig Parker"  wrote:

> Welp... I guess that's the next step.
>
> On 07/27/2016 12:39 AM, Chris Clark wrote:
>
>> The real question is why you aren't on systemd by now
>>
>> Chris
>>
>> On Jul 26, 2016 9:33 PM, "Craig Parker"  wrote:
>>
>> Pierre -- it's up and running. Thanks a bunch. I need to get POS running
>>> too, but I'll take a break and just learn what I've got for the moment
>>>
>>> On 07/22/2016 12:01 PM, Pierre Smits wrote:
>>>
>>> Hi Craig,

 I have found that the script for Ubuntu is of a lesser quality than the
 one
 for Debian, so that is what I have been using for various environments
 as
 a
 starting point.

 Best regards,

 Pierre Smits

 ORRTIZ.COM 
 OFBiz based solutions & services

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

 On Fri, Jul 22, 2016 at 5:09 PM, Craig Parker 
 wrote:

 I'm on Ubuntu 14.04 server (32 bit -- this is just an old clunker
 computer

> I'm trying stuff out on) and the OFBIZ zip I grabbed is 13.07.03.
>
> There was an ubuntu script I tried grabbing instead of rc.ofbiz
> (rc.ofbiz.for.ubuntu) a couple months ago, but didn't have any better
> luck
> with that. I think I'm going to land on Debian eventually, but if I can
> troubleshoot this install I should be able to figure that one out.
>
>
> On 07/22/2016 02:24 AM, Pierre Smits wrote:
>
> Hi Craig,
>
>> May I ask what OS version you are using and what the version of OFBiz
>> is?
>>
>> Best regards,
>>
>> Pierre Smits
>>
>> ORRTIZ.COM 
>>
>> OFBiz based solutions & services
>>
>> OFBiz Extensions Marketplace
>> http://oem.ofbizci.net/oci-2/
>>
>> On Fri, Jul 22, 2016 at 5:15 AM, Craig Parker 
>> wrote:
>>
>> I set this down because I couldn't get it running, but I'm picking it
>> back
>>
>> up. Still in the "using the demo" stage,a nd while I can start fine
>>> with
>>> ./ant start from the ofbiz directory, I can't seem to get it started
>>> with
>>> an /etc/init.d/ofbiz script.
>>> I've tried a couple things, but the latest (back to square 1) spot
>>> I'm
>>> in
>>> is copying ofbizdir/tools/rc.ofbiz /etc/init.d/ofbiz
>>>
>>> Not sure what I read that told me this, but I commented out .
>>> /etc/rc.d/init.d/functions (in the vicinity of line 30) and .
>>> /etc/sysconfig/network near line 34, changed my path to /ofbiz
>>> (where I
>>> unzipped it) and also replaced any instances of echo_ with just echo
>>> (echo
>>> followed by a space).
>>>
>>> So here's my script, and I can't get it running. Nor can I seem to
>>> find a
>>> log file anywhere that tells me what's going on. ofbiz owns the
>>> /etc/init.d/ofbiz , and I'm starting it as root with sudo -u ofbiz
>>> /etc/init.d/ofbiz restart
>>>
>>> #!/bin/sh
>>> #
>>> # 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.
>>> #
>>> #
>>> # ofbizThis shell script takes care of starting and stopping
>>> #  the OFBiz subsystem
>>> #
>>> # chkconfig: - 80 10
>>> # description: OFBiz server
>>>
>>> # Source function library
>>> # this does not exist in Debian/Ubuntu/etc. => see
>>> rc.ofbiz.for.debian
>>> # => comment out and use "echo failure" and "echo success" in place
>>> of
>>> echo failure and echo success (minor anyway)
>>> #. /etc/rc.d/init.d/functions
>>>
>>> # Source networking configuration
>>> # this does not exist i

Re: What am I missing? /etc/init.d type of start

2016-07-27 Thread Craig Parker

Welp... I guess that's the next step.

On 07/27/2016 12:39 AM, Chris Clark wrote:

The real question is why you aren't on systemd by now

Chris

On Jul 26, 2016 9:33 PM, "Craig Parker"  wrote:


Pierre -- it's up and running. Thanks a bunch. I need to get POS running
too, but I'll take a break and just learn what I've got for the moment

On 07/22/2016 12:01 PM, Pierre Smits wrote:


Hi Craig,

I have found that the script for Ubuntu is of a lesser quality than the
one
for Debian, so that is what I have been using for various environments as
a
starting point.

Best regards,

Pierre Smits

ORRTIZ.COM 
OFBiz based solutions & services

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

On Fri, Jul 22, 2016 at 5:09 PM, Craig Parker 
wrote:

I'm on Ubuntu 14.04 server (32 bit -- this is just an old clunker computer

I'm trying stuff out on) and the OFBIZ zip I grabbed is 13.07.03.

There was an ubuntu script I tried grabbing instead of rc.ofbiz
(rc.ofbiz.for.ubuntu) a couple months ago, but didn't have any better
luck
with that. I think I'm going to land on Debian eventually, but if I can
troubleshoot this install I should be able to figure that one out.


On 07/22/2016 02:24 AM, Pierre Smits wrote:

Hi Craig,

May I ask what OS version you are using and what the version of OFBiz
is?

Best regards,

Pierre Smits

ORRTIZ.COM 

OFBiz based solutions & services

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

On Fri, Jul 22, 2016 at 5:15 AM, Craig Parker 
wrote:

I set this down because I couldn't get it running, but I'm picking it
back


up. Still in the "using the demo" stage,a nd while I can start fine
with
./ant start from the ofbiz directory, I can't seem to get it started
with
an /etc/init.d/ofbiz script.
I've tried a couple things, but the latest (back to square 1) spot I'm
in
is copying ofbizdir/tools/rc.ofbiz /etc/init.d/ofbiz

Not sure what I read that told me this, but I commented out .
/etc/rc.d/init.d/functions (in the vicinity of line 30) and .
/etc/sysconfig/network near line 34, changed my path to /ofbiz (where I
unzipped it) and also replaced any instances of echo_ with just echo
(echo
followed by a space).

So here's my script, and I can't get it running. Nor can I seem to
find a
log file anywhere that tells me what's going on. ofbiz owns the
/etc/init.d/ofbiz , and I'm starting it as root with sudo -u ofbiz
/etc/init.d/ofbiz restart

#!/bin/sh
#
# 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.
#
#
# ofbizThis shell script takes care of starting and stopping
#  the OFBiz subsystem
#
# chkconfig: - 80 10
# description: OFBiz server

# Source function library
# this does not exist in Debian/Ubuntu/etc. => see rc.ofbiz.for.debian
# => comment out and use "echo failure" and "echo success" in place of
echo failure and echo success (minor anyway)
#. /etc/rc.d/init.d/functions

# Source networking configuration
# this does not exist in Debian/Ubuntu/etc. => see rc.ofbiz.for.debian
#. /etc/sysconfig/network

# Paths - Edit for your locations
JAVA_BINARY=/usr/bin/java
OFBIZ_HOME=/ofbiz
OFBIZ_LOG=$OFBIZ_HOME/runtime/logs/console.log

# VM Options
JAVA_VMOPTIONS="-Xms128M -Xmx512M -XX:MaxPermSize=512m"

# Java arguments
JAVA_ARGS="-jar ofbiz.jar"

# *nix user ofbiz should run as (you must create this user first)
OFBIZ_USER=ofbiz

# OFBiz processes running
ofbizprocs() {
   OFBIZ_PROCS=`/bin/ps h -o pid,args -C java | /bin/grep -e
"$JAVA_ARGS"
| /bin/egrep -o "^[[:space:]]*[[:digit:]]*"`
}

# Checking user...
checkuser() {
   if [ "$USER" != "$OFBIZ_USER" ]; then
   echo failure
   echo
   echo "Only users root or $OFBIZ_USER should start/stop the
application"
   exit 1
   fi
}

# Start OFBiz
start() {
   echo -n "Starting OFBiz: "
   checkuser
   ofbizprocs
   if [ "$OFBIZ_PROCS" != "" ]; then
   echo failure
   echo
   echo "OFBiz is already running..."
   return 1
   fi

   # All clear
   cd $OFBIZ_HOME
   umask 007
   /bin/rm -f $OFBIZ_LOG
   $JAVA_BI

Re: Add tax to billed hours

2016-07-27 Thread Jacques Le Roux

Yes that's what I thought about, thanks Gil!

A word about this issue could maybe figure in 
https://cwiki.apache.org/confluence/display/OFBIZ/VAT

BTW this page could support a refresh ;)

Jacques


Le 27/07/2016 à 15:32, gil portenseigne a écrit :


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
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-27 Thread Jacques Le Roux

Le 27/07/2016 à 15:23, gil portenseigne a écrit :


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

From The Top Of My Head, the other would have worked also :)

Jacques


Re: Add tax to billed hours

2016-07-27 Thread Pierre Smits
Indeed I found a solution. But the actual issue didn't disappear.

Pierre Smits

ORRTIZ.COM 
OFBiz based solutions & services

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

On Wed, Jul 27, 2016 at 3:27 PM, Jacopo Cappellato <
jacopo.cappell...@hotwaxsystems.com> wrote:

> I agree that the creation of a new ticket is a better idea because that was
> probably a different thing, at least accordingly to the last comment on it
> posted by Jacques, in which he stated that Pierre and him had an off list
> conversation in which Pierre reported that the error was gone in 2010.
>
> Jacopo
>
> On Wed, Jul 27, 2016 at 2:33 PM, gil portenseigne <
> gil.portensei...@nereide.fr> wrote:
>
> > Hi,
> >
> > I agree that creating a new Jira is better.
> > Gil
> >
> >
>


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
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-27 Thread Jacopo Cappellato
I agree that the creation of a new ticket is a better idea because that was
probably a different thing, at least accordingly to the last comment on it
posted by Jacques, in which he stated that Pierre and him had an off list
conversation in which Pierre reported that the error was gone in 2010.

Jacopo

On Wed, Jul 27, 2016 at 2:33 PM, gil portenseigne <
gil.portensei...@nereide.fr> wrote:

> Hi,
>
> I agree that creating a new Jira is better.
> Gil
>
>


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












[COMMUNITY VOTE RESULT] New OFBiz Logo

2016-07-27 Thread Sharan Foga

Hi Everyone

Thank you to everyone who participated in the community vote for a logo. 
The vote has been active for the last 5 days and I closed it today after 
have posted the results on the wiki at the link below:


https://cwiki.apache.org/confluence/display/OFBIZ/July+2016+-+OFBiz+Logo+Survey+Results 



One person voted for more than one option so I have not counted that vote.

The results are:

 * Option 1: Updated Existing Logo: 8 votes
 * Option 2: Correct OFBiz Spelling and New Apache Feather: 8 votes
 * Option 3: Power Button based OFBiz logo: 14 votes

The majority of the votes were for Option 3 so I will take this as the 
logo that has been selected by the community to move forward with.


I was especially glad to see that we had responses from a wide range of 
countries which shows how truly truly international OFBiz is!


Thanks
Sharan


Re: Add tax to billed hours

2016-07-27 Thread Jacques Le Roux

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
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-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-27 Thread Taher Alkhateeb
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-27 Thread Pierre Smits
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: What IDE for Ofbiz

2016-07-27 Thread Taher Alkhateeb
Speaking of Intellij, I'm thinking of incorporating the plugin in gradle so
also fixup the classpath and everything. Is that something people would
like?

On Wed, Jul 27, 2016 at 9:20 AM, Jacopo Cappellato <
jacopo.cappell...@hotwaxsystems.com> wrote:

> +1
>
> IntelliJ IDEA is a great tool!
>
> Jacopo
>
> On Wed, Jul 27, 2016 at 7:58 AM, Forrest Rae  wrote:
>
> > IntelliJ IDEA, hands down.  The Java/Groovy debugging support is
> > superior.  The IntelliJ Platform SDK is amazing, though not for the
> > faint of heart.  There is a learning curve, but it's worth it.  There is
> > a reason Google picked it to be the base for Android Studio.
> >
> > On 07/19/2016 12:13 AM, Pranay Pandey wrote:
> > >> Eclipse or IntelliJ IDEA(Free version )
> > >
> > > Both of these work well. I started using IntelliJ since last 6 months
> and
> > > personally I like it very much.
> > >
> > > Best regards,
> > >
> > > Pranay Pandey
> > > HotWax Systems
> > > http://www.hotwaxsystems.com/
> > >
> > > On Tue, Jul 19, 2016 at 5:05 AM, james yong 
> > wrote:
> > >
> > >> Hi Puwanat,
> > >>
> > >> Please make sure that you are registered with OFBiz's mailing list.
> Else
> > >> your post at Nabble will not reach the mailing list.
> > >>
> > >> Regards,
> > >> James
> > >>
> > >> puwanat_sr wrote
> > >>> Dear All
> > >>>
> > >>> I'm new with OFBIZ
> > >>> May I ask you about the best IDE I should use for OFBIZ project
> > >>>
> > >>> Eclipse or IntelliJ IDEA(Free version )
> > >>>
> > >>> Thank you very much
> > >>
> > >>
> > >>
> > >>
> > >>
> > >> --
> > >> View this message in context:
> > >>
> >
> http://ofbiz.135035.n4.nabble.com/What-IDE-for-Ofbiz-tp4688352p4689453.html
> > >> Sent from the OFBiz - User mailing list archive at Nabble.com.
> > >>
> > >
> >
>