33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace app\common\logic;
|
|
|
|
use app\common\enum\YesNoEnum;
|
|
use app\common\model\store_cash_finance_flow\StoreCashFinanceFlow;
|
|
|
|
class CashFlowLogic extends BaseLogic
|
|
{
|
|
|
|
public function insert($storeId, $amount,$source_mark='')
|
|
{
|
|
$model = new StoreCashFinanceFlow();
|
|
$find = $model->where(['store_id' => $storeId])->whereDay('create_time')->where('status', 0)->find();
|
|
if ($find) {
|
|
$find->cash_price = bcadd($find->cash_price, $amount, 2);
|
|
$find->receivable = bcadd($find->receivable, $amount, 2);
|
|
if($source_mark){
|
|
$find->source_mark =$find->source_mark.','.$source_mark;
|
|
}
|
|
$find->save();
|
|
} else {
|
|
$model->store_id = $storeId;
|
|
$model->cash_price = $amount;
|
|
$model->receivable = $amount;
|
|
$model->remark = '银行转账请备注:'.mt_rand(1000, 9999);
|
|
$model->source_mark = $source_mark;
|
|
$model->status = YesNoEnum::NO; //收银台收了默认算完成了
|
|
$model->save();
|
|
}
|
|
}
|
|
}
|