Depending on the contents of the order, the preparation is split following the rules below (otherwise, the products are on the same packing slip).

If you need to split the preparation manually, you can create additional Shipping Labels in BP.

1 PD = 1 separate Order Prep
1 box = up to 3 kegs or 1 PD + 2 kegs

Examples:

Scenario Outline: Split 1PD
Given there are 1 PerfectDraft and <Kegs> kegs in an order
And id_organization == 2
Then I should get <OrderPreps> Order Preparations

Examples:

| Kegs          | OrderPreps      |
| 0             | 1               |
| 1             | 1               |
| 2             | 1               |
| 3             | 2               |
| 4             | 2               |
Scenario Outline: Split 2PDs
Given there are 2 PerfectDraft and <Kegs> kegs in an order
And id_organization == 2
Then I should get <OrderPreps> Order Preparations

Examples:

| Kegs          | OrderPreps      |
| 0             | 2               |
| 1             | 2               |
| 2             | 2               |
| 3             | 2               |
| 4             | 2               |
Scenario Outline: Split Kegs
Given there are <Kegs> kegs in an order
And id_organization == 2
Then I should get <OrderPreps> Order Preparations

Examples:

| Kegs          | OrderPreps      |
| 1             | 1               |
| 2             | 1               |
| 3             | 1               |
| 4             | 2               |