OrderItem::onPlacement PHP Method

onPlacement() public method

This should only be called when order is transformed from Cart to Order, aka being 'placed'.
public onPlacement ( )
    public function onPlacement()
    {
        $this->extend('onPlacement');
    }

Usage Example

 public function onPlacement()
 {
     parent::onPlacement();
     if ($product = $this->Product(true)) {
         $this->ProductVersion = $product->Version;
     }
 }