コード例 #1
0
ファイル: Real.class.php プロジェクト: evilgeny/bob
 /**
  * Enter description here...
  *
  */
 public function save()
 {
     if (!$this->_obReceipt->cdate_real) {
         $this->_obReceipt->cdate_real = M('Date')->dbDateTime();
     }
     $this->_obReceipt->checker_id = me()->id();
     parent::save();
 }
コード例 #2
0
ファイル: Virtual.class.php プロジェクト: evilgeny/bob
 /**
  * Enter description here...
  *
  */
 public function save()
 {
     if (!$this->_obReceipt->cdate_virt) {
         $this->_obReceipt->cdate_virt = M('Date')->dbDateTime();
     }
     $this->_obReceipt->total_virt = $this->_obReceipt->getReceiptTotalVirtual();
     parent::save();
 }
コード例 #3
0
ファイル: Receipt.class.php プロジェクト: evilgeny/bob
 /**
  * Enter description here...
  *
  * @param RM_Purchase_Receipt_Object $obReceipt
  */
 public function __construct($obReceipt)
 {
     $this->_typeValue = 3;
     parent::__construct($obReceipt);
 }