When I first started with Actinic I had a problem with the component causing the quantity to list twice in the cart and on the packing slip. Some searching on the forum resolved this as it was just a matter of changing the orderscript. Now I have set up hidden products to assist in stock control and the problem is (half) back.
The quantity is now listed twice but only on the packing slip this time. I assume it's taking the quantity from the component - as it has always done - but it's now taking it from the hidden product too, resulting in a weird and slightly confusing packing slip.
Can this be changed to just one occurrence of the quantity. ( I have "component as separate order line' unchecked).
Could I rectify this by removing 'QUANTITY' from this in Actinicorder. ?
I don't have 'component as separate order line' though, so maybe not. Hmm
The quantity is now listed twice but only on the packing slip this time. I assume it's taking the quantity from the component - as it has always done - but it's now taking it from the hidden product too, resulting in a weird and slightly confusing packing slip.
Can this be changed to just one occurrence of the quantity. ( I have "component as separate order line' unchecked).
Could I rectify this by removing 'QUANTITY' from this in Actinicorder. ?
I don't have 'component as separate order line' though, so maybe not. Hmm
Code:
# # Check components displayed as separate order line # foreach $pComponent (@aComponentsSeparated) { my $sCompQty = $pComponent->{'QUANTITY'}; my $sCompRemove = ""; my $nCompRowspan = -1; if ($CurrentItem{'CANEDIT'} == 1 && $$pComponent{'CANEDIT'} == 1 && $bIncludeButtons)
Comment