Index: includes/commerce_product.inline_entity_form.inc
===================================================================
--- includes/commerce_product.inline_entity_form.inc	(revision 323)
+++ includes/commerce_product.inline_entity_form.inc	(working copy)
@@ -108,6 +108,13 @@
       'weight' => 99,
     );
 
+    $fields['status'] = array(
+      'type' => 'property',
+      'label' => t('Status'),
+      'visible' => TRUE,
+      'weight' => 100,
+    );
+
     return $fields;
   }
 
@@ -191,6 +198,15 @@
       '#fieldset' => 'product_details',
       '#weight' => -9,
     );
+    $entity_form['status'] = array(
+      '#type' => 'radios',
+      '#title' => t('Status'),
+      '#default_value' => $product->status,
+      '#options' => array(1 => t('Enabled'), 0 => t('Disabled')),
+      '#required' => TRUE,
+      '#fieldset' => 'product_details',
+      '#weight' => -8,
+    );
     // Hide or disable the SKU field if it is auto-generated by Commerce AutoSKU.
     if (module_exists('commerce_autosku') && $settings = commerce_autosku_get_settings($product)) {
       $entity_form['sku']['#required'] = FALSE;
