Re: Valid Item Status for partial shipment

2020-04-25 Thread Shikha Jaiswal
Thanks, everyone for your help.

Best,
Shikha Jaiswal
Senior Enterprise Software Engineer

On Sat, Apr 25, 2020 at 1:02 PM Suraj Khurana 
wrote:

> Yes.
>
> Adding up to this, in fact, OrderReadHelper.*getItemShippedQuantity*
> handles *cancelQuantity* effectively. So we can efficiently get desired
> results using these methods.
>
> HTH.
>
> --
> Best Regards,
> Suraj Khurana
> Senior Technical Consultant
>
> On Sat, Apr 25, 2020 at 12:19 PM Mridul Pathak <
> mridul.pat...@hotwaxsystems.com> wrote:
>
> > The way order statuses works today seems to be fine, OrderReadHelper has
> > the necessary methods to get additional details for the order item.
> >
> > 1) If order item is partially shipped and remaining quantity is pending
> > you could get the shipped quantity from OrderReadHelper. Approved status
> > seems valid here.
> >
> > 2) If order item is partially shipped and remaining quantity is
> cancelled,
> > the cancelled quantity is stored in OrderItem.cancelQuantity. Again you
> > could get the shipped quantity and cancelled quantity from
> OrderReadHelper.
> > Completed status seems valid here.
> >
> > Thanks.
> > Mridul Pathak
> >
> >
> > > On 25-Apr-2020, at 10:57 AM, Mohammad Kathawala <
> > mohammad.kathaw...@hotwaxsystems.com> wrote:
> > >
> > > Hello Shikha,
> > >
> > > The statuses mentioned by you in all the scenarios seem correct to me
> and
> > > AFAIK it works in the same way in OFBiz. We can definitely improve it
> by
> > > adding a 'Partially Complete/Partially Fulfilled' status to an order
> item
> > > as mentioned by Pawan.
> > >
> > > Thanks & Regards
> > > Mohammad Kathawala
> > >
> > > On Tue, Apr 14, 2020 at 6:03 PM Suraj Khurana  >
> > > wrote:
> > >
> > >> Adding Dev ML.
> > >>
> > >> --
> > >> Best Regards,
> > >> Suraj Khurana
> > >> Senior Technical Consultant
> > >>
> > >> On Tue, Apr 14, 2020 at 5:13 PM Shikha Jaiswal <
> > >> shikha.jais...@hotwaxsystems.com> wrote:
> > >>
> > >>> Hello team,
> > >>>
> > >>> From the business point of view, please share what should be the
> exact
> > >>> status of an item after approval, if it is being shipped partially.
> > >>>
> > >>> Suppose an order item is of 3 qty and all three are split down into
> > >>> separate ship groups and shipped one by one, what should be the ideal
> > >>> status on each following instances, as we maintain item status on
> > >> OrderItem
> > >>> level only, not specific to OISGA:
> > >>>
> > >>> - One item is shipped, two are pending.
> > >>> -- IMO, it should be Approved as there are still pending items,
> please
> > >>> confirm.
> > >>>
> > >>> - Two items are shipped, one is pending.
> > >>> -- IMO, it should be Approved as there are still pending items,
> please
> > >>> confirm.
> > >>>
> > >>> - Two items are shipped, one is canceled.
> > >>> -- IMO, it should be Completed as it is shipped or canceled, please
> > >>> confirm.
> > >>>
> > >>> OR
> > >>>
> > >>> - All three items are shipped
> > >>> -- IMO, it should be Completed as all items are shipped.
> > >>>
> > >>> Please let me know your thoughts on this.
> > >>>
> > >>> --
> > >>> Thanks & Regards,
> > >>> Shikha Jaiswal
> > >>> Senior Enterprise Software Engineer
> > >>>
> > >>
> >
> >
>


Re: Valid Item Status for partial shipment

2020-04-25 Thread Suraj Khurana
Yes.

Adding up to this, in fact, OrderReadHelper.*getItemShippedQuantity*
handles *cancelQuantity* effectively. So we can efficiently get desired
results using these methods.

HTH.

--
Best Regards,
Suraj Khurana
Senior Technical Consultant

On Sat, Apr 25, 2020 at 12:19 PM Mridul Pathak <
mridul.pat...@hotwaxsystems.com> wrote:

> The way order statuses works today seems to be fine, OrderReadHelper has
> the necessary methods to get additional details for the order item.
>
> 1) If order item is partially shipped and remaining quantity is pending
> you could get the shipped quantity from OrderReadHelper. Approved status
> seems valid here.
>
> 2) If order item is partially shipped and remaining quantity is cancelled,
> the cancelled quantity is stored in OrderItem.cancelQuantity. Again you
> could get the shipped quantity and cancelled quantity from OrderReadHelper.
> Completed status seems valid here.
>
> Thanks.
> Mridul Pathak
>
>
> > On 25-Apr-2020, at 10:57 AM, Mohammad Kathawala <
> mohammad.kathaw...@hotwaxsystems.com> wrote:
> >
> > Hello Shikha,
> >
> > The statuses mentioned by you in all the scenarios seem correct to me and
> > AFAIK it works in the same way in OFBiz. We can definitely improve it by
> > adding a 'Partially Complete/Partially Fulfilled' status to an order item
> > as mentioned by Pawan.
> >
> > Thanks & Regards
> > Mohammad Kathawala
> >
> > On Tue, Apr 14, 2020 at 6:03 PM Suraj Khurana 
> > wrote:
> >
> >> Adding Dev ML.
> >>
> >> --
> >> Best Regards,
> >> Suraj Khurana
> >> Senior Technical Consultant
> >>
> >> On Tue, Apr 14, 2020 at 5:13 PM Shikha Jaiswal <
> >> shikha.jais...@hotwaxsystems.com> wrote:
> >>
> >>> Hello team,
> >>>
> >>> From the business point of view, please share what should be the exact
> >>> status of an item after approval, if it is being shipped partially.
> >>>
> >>> Suppose an order item is of 3 qty and all three are split down into
> >>> separate ship groups and shipped one by one, what should be the ideal
> >>> status on each following instances, as we maintain item status on
> >> OrderItem
> >>> level only, not specific to OISGA:
> >>>
> >>> - One item is shipped, two are pending.
> >>> -- IMO, it should be Approved as there are still pending items, please
> >>> confirm.
> >>>
> >>> - Two items are shipped, one is pending.
> >>> -- IMO, it should be Approved as there are still pending items, please
> >>> confirm.
> >>>
> >>> - Two items are shipped, one is canceled.
> >>> -- IMO, it should be Completed as it is shipped or canceled, please
> >>> confirm.
> >>>
> >>> OR
> >>>
> >>> - All three items are shipped
> >>> -- IMO, it should be Completed as all items are shipped.
> >>>
> >>> Please let me know your thoughts on this.
> >>>
> >>> --
> >>> Thanks & Regards,
> >>> Shikha Jaiswal
> >>> Senior Enterprise Software Engineer
> >>>
> >>
>
>


Re: Valid Item Status for partial shipment

2020-04-24 Thread Mohammad Kathawala
Hello Shikha,

The statuses mentioned by you in all the scenarios seem correct to me and
AFAIK it works in the same way in OFBiz. We can definitely improve it by
adding a 'Partially Complete/Partially Fulfilled' status to an order item
as mentioned by Pawan.

Thanks & Regards
Mohammad Kathawala

On Tue, Apr 14, 2020 at 6:03 PM Suraj Khurana 
wrote:

> Adding Dev ML.
>
> --
> Best Regards,
> Suraj Khurana
> Senior Technical Consultant
>
> On Tue, Apr 14, 2020 at 5:13 PM Shikha Jaiswal <
> shikha.jais...@hotwaxsystems.com> wrote:
>
> > Hello team,
> >
> > From the business point of view, please share what should be the exact
> > status of an item after approval, if it is being shipped partially.
> >
> > Suppose an order item is of 3 qty and all three are split down into
> > separate ship groups and shipped one by one, what should be the ideal
> > status on each following instances, as we maintain item status on
> OrderItem
> > level only, not specific to OISGA:
> >
> > - One item is shipped, two are pending.
> > -- IMO, it should be Approved as there are still pending items, please
> > confirm.
> >
> > - Two items are shipped, one is pending.
> > -- IMO, it should be Approved as there are still pending items, please
> > confirm.
> >
> > - Two items are shipped, one is canceled.
> > -- IMO, it should be Completed as it is shipped or canceled, please
> > confirm.
> >
> > OR
> >
> > - All three items are shipped
> > -- IMO, it should be Completed as all items are shipped.
> >
> > Please let me know your thoughts on this.
> >
> > --
> > Thanks & Regards,
> > Shikha Jaiswal
> > Senior Enterprise Software Engineer
> >
>


Re: Valid Item Status for partial shipment

2020-04-15 Thread Pawan Verma
Hello Shikha,

I hope you are doing well in this pandemic situation!

It seems unclear to me what is working wrong in the system, could you
please throw some more light on it :)

Please see my comments below:

- One item is shipped, two are pending.
> -- IMO, it should be Approved as there are still pending items, please
> confirm.
>

Yes, Currently it is Approved but sometimes it's confusing that
partial quantity of the item has been shipped and item status is still
Approved. IMO we should do some brainstorming here and improve it.


> - Two items are shipped, one is pending.
> -- IMO, it should be Approved as there are still pending items, please
> confirm.
>

Same as above elaborated.


> - Two items are shipped, one is canceled.
> -- IMO, it should be Completed as it is shipped or canceled, please
> confirm.
>

Yes, item status should be Completed. If one qty is canceled then system
should set OrderItem.cancelQuantity to 1 and item status should be
Completed.

- All three items are shipped
> -- IMO, it should be Completed as all items are shipped.
>

Yes, item status should be Completed.

 AFAIR, there are some systems that use 'Partially Fulfilled' as item
status in case of partial shipment of the item. Please let me know your
thoughts.
-- 
Thanks & Regards
Pawan Verma
ofbiz.apache.org


Re: Valid Item Status for partial shipment

2020-04-14 Thread Suraj Khurana
Adding Dev ML.

--
Best Regards,
Suraj Khurana
Senior Technical Consultant

On Tue, Apr 14, 2020 at 5:13 PM Shikha Jaiswal <
shikha.jais...@hotwaxsystems.com> wrote:

> Hello team,
>
> From the business point of view, please share what should be the exact
> status of an item after approval, if it is being shipped partially.
>
> Suppose an order item is of 3 qty and all three are split down into
> separate ship groups and shipped one by one, what should be the ideal
> status on each following instances, as we maintain item status on OrderItem
> level only, not specific to OISGA:
>
> - One item is shipped, two are pending.
> -- IMO, it should be Approved as there are still pending items, please
> confirm.
>
> - Two items are shipped, one is pending.
> -- IMO, it should be Approved as there are still pending items, please
> confirm.
>
> - Two items are shipped, one is canceled.
> -- IMO, it should be Completed as it is shipped or canceled, please
> confirm.
>
> OR
>
> - All three items are shipped
> -- IMO, it should be Completed as all items are shipped.
>
> Please let me know your thoughts on this.
>
> --
> Thanks & Regards,
> Shikha Jaiswal
> Senior Enterprise Software Engineer
>