Changes between Version 25 and Version 26 of BluePrint/Logistics


Ignore:
Timestamp:
03/18/12 06:58:32 (13 years ago)
Author:
graeme
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/Logistics

    v25 v26  
    1919 * UserGuidelines/Logistics
    2020=== Shipment ===
    21 Items can be moved from one site to another. This is managed by the shipment application.
    22 This application has a number of work-flows, which are briefly described here from a technical (developer rather than user) perspective. The shipment application manages the movement of stock items form one site to another. For clarity the word warehouse will be used for the site sending the goods although it would not necessarily be a warehouse.
     21Items can be moved from one site to another. This is managed by the shipment application. This application has a number of work-flows, which are briefly described here from a technical (developer rather than user) perspective.
     22 * Send Items
     23 * Receive Items
     24 * Adjust Items
     25 * Cancel a shipment
     26 * Print Reports (Waybill, Goods Received, Donation Certificate)
     27 * Return goods - typically this is for when:
     28   * Goods are sent to a distribution point but
     29   * It was not possible to distributed all the goods and so
     30   * Some need to be returned to the warehouse
     31
     32The shipment application manages the movement of stock items form one site to another. For clarity the word warehouse will be used for the site sending the goods although it would not necessarily be a warehouse. Whilst the place to where the items are being sent is referred to as the site. Both of these are references to org_site records.
    2333==== Send & Receive ====
    24 This involves a warehouse creating a send inventory (inv_send) and populating it with stock items (inv_inv_item) from the warehouse. The system will move these items from out of the warehouse totals, to avoid any potential problems with over-commitment, and into track items (inv_track_item). At this point their will be a send inventory and multiple track items, physically the items will still be in the warehouse and all the records will have a status of "In Process".
     34This involves a warehouse creating a send inventory record (inv_send) and populating it with stock item records (inv_inv_item) from the warehouse. The system will move these items from out of the warehouse totals, to avoid any potential problems with over-commitment, and into track item records (inv_track_item). At this point their will be a send inventory and multiple track item records, physically the items will still be in the warehouse and all the records will have a status of "In Process".
    2535
    2636When each track item is created several actions are performed:
     
    2939 * Details from the inventory item are copied across so that they are preserved (for example if the price changes the price at time of shipping it retained)
    3040
    31 When the items are ready to be sent (presumably they have been loaded onto some form of transport and are ready to leave the warehouse) they can then be sent (send shipment). At this point the status of the records are changed to "Sent". These records are now locked to prevent any change (except by someone with admin permissions) and a receive inventory record (inv_recv) is created. Each track item record is linked with this receive record, the ownership of this record is set to being the site to where the goods are being sent.
     41When the items are ready to be sent (presumably they have been loaded onto some form of transport and are ready to leave the warehouse) they can then be sent (send shipment). At this point the status of the records are changed to "Sent". These records are now locked to prevent any change and a receive inventory record (inv_recv) is created. Each track item record is linked with this inventory receive record, the ownership of this record is set to being the site to where the goods are being sent.
    3242
    3343Once the goods have been send a "Waybill" can be printed off. The shipment can be cancelled (presumably the lorries have been called back) or it is possible to confirm that the shipment has been received, this is used if the items are being received by a site which is not using Sahana-Eden to track the goods.
     
    3545If a shipment is cancelled then the status is changed to "cancelled" (no surprises there) and the good are put back into the warehouse. The quantities in each track item are reduced to zero but the original values are added as a comment.
    3646
    37 If a shipment is confirmed as having been received, then the status of the send inventory is changed to "Received" but within the system no warehouse will actually receive the goods (although one hopes that reality is somewhat different).
     47If a shipment is confirmed as having been received by the sending warehouse, then the status of the send inventory is changed to "Received" but within the system no site will actually receive the goods (although one hopes that reality is somewhat different).
    3848
    39 When the goods arrive at a site a person responsible for the stock can receive the goods. In this case they will select the sent record and then Receive the shipment, The goods in the track items will then be moved into the warehouse stock. If their are matching inventory records then the quantity in those records will be incremented, otherwise a new inventory item record will be created.
     49When the goods arrive at a site a person responsible for the stock can receive these goods. In this case they will select the sent record and then Receive the shipment. The person needs to view each individual item record and confirm the quantity receives and (optionally) provide details of the bin to where they will go to. Once this is done for every record then the goods in the track items can be received and they will then be moved into the warehouse stock. If their are matching inventory records (same item same bin) then the quantity in those records will be incremented, otherwise a new inventory item record will be created.
    4050
    41 Once stock has been received a Goods Received Notice and a Certificate can be printed off. It is also possible to cancel a received shipment, in this case the goods need to come out of the warehouse and effectively back into the track item records.
     51Once stock has been received a Goods Received Notice and a Certificate can be printed off.
     52
     53It is also possible to cancel a received shipment, in this case the goods need to come out of the warehouse and effectively back into the track item records. The sent inventory record is then set to being in transit and the warehouse of origin will then need to cancel the goods for them to go back into the warehouse stock levels.
     54
     55 * Inventory items can be set without being received by a different site.
     56 * Inventory items can be received without being sent. For example this can cover:
     57   * Inventory coming from a local supplier
     58   * Inventory coming from a donor
    4259==== Adjusting a Received Shipment ====
     60During a shipment if the goods send and good received totals are different then an adjustment is made (all the original figures are retained for a proper audit trail) During a shipment the adjustment is generated automatically.
     61
     62The inventory totals in a warehouse are also fixed so once the goods arrive their is no way to adjust them except via a shipment process as described above. Obviously this is not sufficient since goods do get lost, damage or expire. To manage this a virtual stock-take can be done (potentially mirroring a real stock-take) which is essentially an adjustment. When an inventory adjustment is performed (as opposed to a shipment adjustment) all the items in the warehouse with non-zero quantities are automatically added to the adjustment record. It is possible to add new records to the adjustment but they can't be deleted. The user (warehouse manager) will then need to confirm the totals in each record. Once all the record quantities have been set the adjustment can be closes and then this record is locked and no further editing is possible.
    4363
    4464=== Related ===