Re: Business case: Use explodeOrderItems OOTB utility

2020-08-05 Thread Pritam Kute
Hello Suraj,

This will be surely a good architecture for the businesses who route
shipments from different locations and allow partial returns etc. As far as
I remember, there is one flag at the product store level with the name
"explodeOrderItems". When we set this flag to "Y", the system explodes
order items and create a separate order item data for multi-quantity items
in the order. I haven't tested it thoroughly but it works quite well on the
trunk code.

Let's have others to comment on this. Also, let me know if you have already
tested this flow.

Kind Regards,
--
Pritam Kute


On Wed, Aug 5, 2020 at 9:02 PM Suraj Khurana 
wrote:

> Hello everyone,
>
> Hope everyone is safe and doing well.
>
> For any business which is supporting partial quantity cancellations or
> partial quantity fulfillments, then it can use exploding the order item
> OOTB utility.
>
> - In case business is entertaining partial cancellations of items, then all
> adjustments need to be re-calculated and prorated accordingly. This
> computation overhead can be avoided using an explode item while creating an
> order.
> -- While doing this we also need to make sure that rounding is handled and
> the amount is adjusted properly between all order items.
>
> - In case of partial fulfillments, again business demands to prorate item
> adjustments (tax, shipping etc) to create a invoice, or if there is a third
> party accounting system in place, we need to provide respective data to it,
> so again if you have already exploded the item while importing/creating
> order into the system, you could have reduced this calculations overhead
> and improve system performance in production environment.
>
> Currently, OOTB has this explode functionality on shopping cart level.
> IMO, we need to have the same capabilities in the createSalesOrder service
> (can be used as API call) as well.
>
> Please share your thoughts on this. Is there any other better approach to
> handle these business use cases?
>
> --
> Best Regards,
> Suraj Khurana
> Senior Technical Consultant
>


Re: Restrict Access/Hide items from the Application/Plugins menu (top level)

2020-08-05 Thread Georg Potthast

Thank you Aditya!

-Ursprüngliche Nachricht- 
From: Aditya Sharma

Sent: Wednesday, August 5, 2020 8:49 AM
To: user@ofbiz.apache.org
Subject: Re: Restrict Access/Hide items from the Application/Plugins menu 
(top level)


Hi Georg Potthast,

If you change it for ofbizDemo, it will hide ofbizDemo, not all the
applications. Each component has it's own ofbiz-component.xml file
responsible for the initial setup.

For example, if you wanted to hide the marketing component you need to add
this attribute to webapp tag for the marketing component.
So you will have to add it here:
https://github.com/apache/ofbiz-framework/blob/trunk/applications/marketing/ofbiz-component.xml#L39

Thanks and Regards,
Aditya Sharma


On Wed, Aug 5, 2020 at 11:35 AM Georg Potthast 
wrote:


In my "plugins/ofbizDemo" folder the ofbiz-component.xml file only
contains
one webapp, title="OfbizDemo". When I enter app-bar-display="false" there,
still all applications available with OFBiz are in the menu bar after a
restart.

-Ursprüngliche Nachricht-
From: Aditya Sharma
Sent: Wednesday, August 5, 2020 6:57 AM
To: user@ofbiz.apache.org
Subject: Re: Restrict Access/Hide items from the Application/Plugins menu
(top level)

Hi Oleksandr Darchuk,

Refer my answer on the following mail thread

https://markmail.org/message/o7nvrxo4wtk5brls


HTH

Thanks and regards,
Aditya Sharma


On Wed, Aug 5, 2020 at 12:56 AM Oleksandr Darchuk
 wrote:
>
> Hello,
> Subscribed already.
> And looks like authorization is the way I have to dig to get the answer
to
> my question. Still any suggestions/directions will be appreciated :)
> Thank you
>
> On Tue, Aug 4, 2020 at 9:02 PM Jacques Le Roux <
jacques.le.r...@les7arts.com>
> wrote:
>
> > Hi,
> >
> > Your message has been moderated, else it would not have reached this
> > Mailing List.
> >
> > Please subscribe to the user ML for such questions and then use your
email
> > client.
> > See why here http://ofbiz.apache.org/mailing-lists.html.
> >
> > You will get a better support, people can answer you on the ML.
> > The wider the audience the better the answers you might get.
> >
> > Also it's more work for moderators who have to accept your messages as
> > long as you have not subscribed.
> > I'll personally no longer accept them (other moderators still could).
> >
> > Thanks
> >
> > This said, if nobody answers you before me I'll do tmrw...
> >
> > Jacques
> >
> > Le 04/08/2020 à 17:03, Oleksandr Darchuk a écrit :
> > > Hello
> > > Is it possible to restrict/hide some unused applications from the 
> > > top
> > level menu bar? E.g. make Mmarketing or Manufacturing invisible for 
> > the

> > end-user after log-in?
> > > Thank you
> >
> >






Re: COA setup and association of GL accounts to processes

2020-08-05 Thread Akash Jain
Hello Joseph,

They could import CoA and related data using webtools, Web Tools > XML Data
Import

There is one more option to setup/import chart of accounts, Accounting >
Organization GL Settings > Setup of specific company.

HTH

Thanks and Regards
--
Akash Jain

On Mon, Jul 20, 2020 at 1:40 PM joefrancois  wrote:

> Hello All,
>
> I have set up OFBIZ Dev, Test, and Prod box to start. In the Dev instance,
> have loaded an OFBIZ instance with demo data. Now for the Test and Prod, I
> have only loaded the seed data. I plan to use OFBIZ standard COA for now.
>
> Can someone share with me how they loaded their COA and associated the GL
> accounts to the different processes?
>
> Thank you and Regards,
> Joseph
>
>
>
> --
> Sent from: http://ofbiz.135035.n4.nabble.com/OFBiz-User-f135036.html
>


Business case: Use explodeOrderItems OOTB utility

2020-08-05 Thread Suraj Khurana
Hello everyone,

Hope everyone is safe and doing well.

For any business which is supporting partial quantity cancellations or
partial quantity fulfillments, then it can use exploding the order item
OOTB utility.

- In case business is entertaining partial cancellations of items, then all
adjustments need to be re-calculated and prorated accordingly. This
computation overhead can be avoided using an explode item while creating an
order.
-- While doing this we also need to make sure that rounding is handled and
the amount is adjusted properly between all order items.

- In case of partial fulfillments, again business demands to prorate item
adjustments (tax, shipping etc) to create a invoice, or if there is a third
party accounting system in place, we need to provide respective data to it,
so again if you have already exploded the item while importing/creating
order into the system, you could have reduced this calculations overhead
and improve system performance in production environment.

Currently, OOTB has this explode functionality on shopping cart level.
IMO, we need to have the same capabilities in the createSalesOrder service
(can be used as API call) as well.

Please share your thoughts on this. Is there any other better approach to
handle these business use cases?

--
Best Regards,
Suraj Khurana
Senior Technical Consultant


Re: Restrict Access/Hide items from the Application/Plugins menu (top level)

2020-08-05 Thread Aditya Sharma
Hi Georg Potthast,

If you change it for ofbizDemo, it will hide ofbizDemo, not all the
applications. Each component has it's own ofbiz-component.xml file
responsible for the initial setup.

For example, if you wanted to hide the marketing component you need to add
this attribute to webapp tag for the marketing component.
So you will have to add it here:
https://github.com/apache/ofbiz-framework/blob/trunk/applications/marketing/ofbiz-component.xml#L39

Thanks and Regards,
Aditya Sharma


On Wed, Aug 5, 2020 at 11:35 AM Georg Potthast 
wrote:

> In my "plugins/ofbizDemo" folder the ofbiz-component.xml file only
> contains
> one webapp, title="OfbizDemo". When I enter app-bar-display="false" there,
> still all applications available with OFBiz are in the menu bar after a
> restart.
>
> -Ursprüngliche Nachricht-
> From: Aditya Sharma
> Sent: Wednesday, August 5, 2020 6:57 AM
> To: user@ofbiz.apache.org
> Subject: Re: Restrict Access/Hide items from the Application/Plugins menu
> (top level)
>
> Hi Oleksandr Darchuk,
>
> Refer my answer on the following mail thread
>
> https://markmail.org/message/o7nvrxo4wtk5brls
>
>
> HTH
>
> Thanks and regards,
> Aditya Sharma
>
>
> On Wed, Aug 5, 2020 at 12:56 AM Oleksandr Darchuk
>  wrote:
> >
> > Hello,
> > Subscribed already.
> > And looks like authorization is the way I have to dig to get the answer
> to
> > my question. Still any suggestions/directions will be appreciated :)
> > Thank you
> >
> > On Tue, Aug 4, 2020 at 9:02 PM Jacques Le Roux <
> jacques.le.r...@les7arts.com>
> > wrote:
> >
> > > Hi,
> > >
> > > Your message has been moderated, else it would not have reached this
> > > Mailing List.
> > >
> > > Please subscribe to the user ML for such questions and then use your
> email
> > > client.
> > > See why here http://ofbiz.apache.org/mailing-lists.html.
> > >
> > > You will get a better support, people can answer you on the ML.
> > > The wider the audience the better the answers you might get.
> > >
> > > Also it's more work for moderators who have to accept your messages as
> > > long as you have not subscribed.
> > > I'll personally no longer accept them (other moderators still could).
> > >
> > > Thanks
> > >
> > > This said, if nobody answers you before me I'll do tmrw...
> > >
> > > Jacques
> > >
> > > Le 04/08/2020 à 17:03, Oleksandr Darchuk a écrit :
> > > > Hello
> > > > Is it possible to restrict/hide some unused applications from the top
> > > level menu bar? E.g. make Mmarketing or Manufacturing invisible for the
> > > end-user after log-in?
> > > > Thank you
> > >
> > >
>
>


Re: Restrict Access/Hide items from the Application/Plugins menu (top level)

2020-08-05 Thread Georg Potthast
In my "plugins/ofbizDemo" folder the ofbiz-component.xml file only contains 
one webapp, title="OfbizDemo". When I enter app-bar-display="false" there, 
still all applications available with OFBiz are in the menu bar after a 
restart.


-Ursprüngliche Nachricht- 
From: Aditya Sharma

Sent: Wednesday, August 5, 2020 6:57 AM
To: user@ofbiz.apache.org
Subject: Re: Restrict Access/Hide items from the Application/Plugins menu 
(top level)


Hi Oleksandr Darchuk,

Refer my answer on the following mail thread

https://markmail.org/message/o7nvrxo4wtk5brls


HTH

Thanks and regards,
Aditya Sharma


On Wed, Aug 5, 2020 at 12:56 AM Oleksandr Darchuk
 wrote:


Hello,
Subscribed already.
And looks like authorization is the way I have to dig to get the answer to
my question. Still any suggestions/directions will be appreciated :)
Thank you

On Tue, Aug 4, 2020 at 9:02 PM Jacques Le Roux <

jacques.le.r...@les7arts.com>

wrote:

> Hi,
>
> Your message has been moderated, else it would not have reached this
> Mailing List.
>
> Please subscribe to the user ML for such questions and then use your

email

> client.
> See why here http://ofbiz.apache.org/mailing-lists.html.
>
> You will get a better support, people can answer you on the ML.
> The wider the audience the better the answers you might get.
>
> Also it's more work for moderators who have to accept your messages as
> long as you have not subscribed.
> I'll personally no longer accept them (other moderators still could).
>
> Thanks
>
> This said, if nobody answers you before me I'll do tmrw...
>
> Jacques
>
> Le 04/08/2020 à 17:03, Oleksandr Darchuk a écrit :
> > Hello
> > Is it possible to restrict/hide some unused applications from the top
> level menu bar? E.g. make Mmarketing or Manufacturing invisible for the
> end-user after log-in?
> > Thank you
>
>