|
|
@@ -56,7 +56,7 @@ class Money {
|
|
|
//验证流水金额与余额是否正常
|
|
|
$checkWater = $this->checkWater($account_identity,$getAccount['available_cash']);
|
|
|
if($checkWater != 1){
|
|
|
- return $checkWater;
|
|
|
+ // return $checkWater;
|
|
|
}
|
|
|
//获取money_type
|
|
|
$m_type = $this->getMtype($type);
|
|
|
@@ -70,8 +70,6 @@ class Money {
|
|
|
}
|
|
|
//更新用户余额
|
|
|
$updateAccountMoney = $this->updateAccountMoney($account_identity,$nowMoney, $nowCash);
|
|
|
- var_dump($updateAccountMoney);
|
|
|
- exit;
|
|
|
if($updateAccountMoney != 1){
|
|
|
return $updateAccountMoney;
|
|
|
}else {
|
|
|
@@ -92,13 +90,6 @@ class Money {
|
|
|
*/
|
|
|
public function updateAccountMoney($account_identity, $nowMoney,$nowCash)
|
|
|
{
|
|
|
- echo '</br>';
|
|
|
- var_dump($account_identity);
|
|
|
- echo '</br>';
|
|
|
- var_dump($nowMoney);
|
|
|
- echo '</br>';
|
|
|
- var_dump($nowCash);
|
|
|
-
|
|
|
if(empty($account_identity)||empty($nowMoney)||empty($nowCash)){
|
|
|
return '-2255';
|
|
|
}
|