Hi,
I have some pallets that can have 2 types of items on it. When 1 item of each type is on a pallet, I want to transform them into one other item.
For instance :
1 item1 + 0 Item2 = 1 item1
0 item1 + 1 Item2 = 1 item2
1item1 + 1 item2 = 1 item3
2items1 + 1 item2 = 1item1 + 1item3
and so on.
Is there any simple way to make the transformation ?
thanks in advance.