Beispiel #1
0
 /**
  * submit_stock_claims method, changes the association of the stock claims from the cart unique to the purchase log
  * ID
  *
  * @access public
  *
  *         No parameters, nothing returned
  */
 function submit_stock_claims($purchase_log_id)
 {
     $claimed_query = new WPSC_Claimed_Stock(array('cart_id' => $this->unique_id));
     $claimed_query->submit_claimed_stock($purchase_log_id);
 }