-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pick List Tool #10
Comments
Include a filter for already picked, not picked or all unshipped items. This will help with isolating the workflow from the print format. We should expect to use the Frappe Query Builder for this, but it might be appropriate to start with some raw SQL. |
The principal idea is to generate in a first instance, a screenshot of what you are looking to be prepared, in order to be able to visualize it in another way, which can be used for picking ( print format). Also taking into consideration the limits of the report view and the print view. The pick percentage is at the SO level, so for the moment, it would not be possible to detect which line was not picked in an SO without adding complexity. For this reason, the main filter will allow, based on the per_picked field to know if it is equal to or different from 100% in order to differentiate the SOs that already have a pick list.
I think the warehouse filter should repeat the behavior of the parent_warehouse field of the PickList doctype in order to use the same logic.
Report ViewIn this first way of visualizing it, we think that the objective is to have a quick overview of what is and what is not in stock. If there is no total stock for all the OVs that appear in the filter we would simply mark each product with an option that denotes that there is not enough to satisfy the entire order, so that in case, you keep playing with the filters and you can arrive at the desired result. For the Total Stock field, we should generate a query accumulating the total product-wise in the selected warehouses and subtract it by the total of SO Qty, to show graphically what is compliant and what is not. In the example, we use the result Total Availability and not Total Availability with two colors for easy understanding. Knowing that some orders are not fulfilled in full you can use the Check Stock button so that it mentions the missing products and their quantities. This is the same method used by the Pick List creation check.
Create actionOur main idea, based on the logic of use that we understand, is that Pick Lists are created per client. Because the tool serves a role of massively having something that is seen individually in the pick list.
Create Pick List:The PL is created in draft state. This will allow it to be used for the picking through Scan Mode or Promp Qty. Also being able to choose or change serialized or batched products.
Create PL and DN:Especially in this section is where we see with more sense the creation of PL by Customer since it would allow us to then make the DN. This action would leave the PL Validated and the DN Validated.
Print PickNo matter the filter, we will look for the Pick Lists created with respect to the OV shown in the Report (this is because the information is taken from the Pick Lists), and we will build a printout listing the pick lists separated by customers, grouping by product and differentiating by warehouse, the quantities needed to pick. This is the same action that the individual pick list printout does. The Cocoplum example shows that you should look for 10 in Principal and 15 in Washington. The checked column is simply a manual control.
BundlesThe pick list creation method already controls for the elements that make up the bundle, indicating which product you are missing, but does not specify which bundle they belong to. The print format of the pick list, brings the code of the Bundle product line, we could see to bring the name of the product to make it clearer, adding a Bundle column. |
Pick Lists are currently restricted to a single Sales Order. This tool would serve as a way to pick multiple Sales Orders, optionally generate Delivery Notes and allow for partial fulfillment. A Print Format for this report would aggregate by Item (total qty to pull), ordered by warehouse
lft
in way that the user could pull the items needed in an order that made some kind of sense.The text was updated successfully, but these errors were encountered: