multi-store/app/common/logic/CashFlowLogic.php
mkm 0caae69371 feat(CashFlowLogic): 添加现金流来源标记功能
- 在现金流记录存在时,将新的来源标记添加到原有标记之后
- 仅在来源标记存在时执行添加操作
2025-01-13 10:43:38 +08:00

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();
}
}
}