Hi,
I want to create a line in order_lines which is not a product, aims to group the same type of product. Like that:
| sequence | Product | Description | Unit | Total |
| 1 | Product Pack | |||
| 2 | Product_01 | Is a super product | 1 | 5000 |
| 3 | Product_01.1 | Is a sub product | 2 | 2500 |
| 4 | Product_01.2 | Is a sub product | 2 | 2500 |
| 5 | Product_02 | Is a super product | 1 | 10000 |
| 6 | Product_02.1 | Is a sub product | 3 | 6000 |
| 7 | Product_02.2 | Is a sub product | 2 | 4000 |
| 8 | Common Product | |||
| 9 | Product_03 | Is a product | 3 | 1234 |
What I want is create line 1 & 8 to group the same type of product Pack(has sub product) or Common.
Is there anyway to do that?
Thanks.