I want to model the following production scenario.
A manufacturing facility receives production orders which are either its own replenishment orders or back orders of another facility. It needs to produce these orders and execute the rest of the process. Each of these orders varies by quantity and time. Inventory availability is checked at the manufacturing facility where these orders are produced. For any order, the inventory availability is checked, and it changes dynamically.
Each of these orders has three fulfilment options, and based on inventory availability, any order could be either of these 3 options. For each of these three options, it has to go through the production process and release the orders to follow through the rest of the flow, which is different based on the fulfilment option.
Ideally, the production execution follows:
- Sorting orders based on time.
- Once order sorted, released order should be checked for inventory availability. It has 3 options for producing based on inventory availability. These production options are different from fulfilment options since they are produced from raw material and fulfilment is occuring from finished product.
- Execute production
- I already tried to sort the orders based on lists but once the order is released it has to check for inventory which is becoming redundant since I have to already check inventory( using decide) to understand which fulfilment option is appropriate for each order and follow the aftermath process flow after production. But if I check inventory and then sort the order it defeats the FIFO concept since not all orders are being produced by same source.
- I tried order sorting using queue and processors ( pull strategy), still the same issue occurs.
- If I use two different processors based on order type, then the inventory isnt correctly assigned based on the oldest order.
Could you please help me if there’s something I am missing or any concept that can help me model this? Please let me know if you have any further questions for clarity.