Ejemplo n.º 1
0
 public function updateBalance()
 {
     $historyModel = new BalanceHistory();
     $balance = $historyModel->getBalanceById($this->user->id);
     $this->balance = $balance;
     $this->save(false, ['balance']);
 }
Ejemplo n.º 2
0
 public function crib()
 {
     $balanceModel = new BalanceHistory();
     $balanceModel->id = md5($this->id . '' . time());
     $balanceModel->type = BalanceHistory::TYPE_REMOVE;
     $balanceModel->userId = $this->id;
     $balanceModel->sum = $this->crib;
     $balanceModel->date = date(DATE_FORMAT_DB);
     $balanceModel->save();
     $balance = $balanceModel->getBalanceById($this->id);
     $this->profile->updateBalance();
 }