This commit is contained in:
mkm 2024-05-22 17:21:38 +08:00
parent 0fa8522d01
commit cd9eb33f8f
2 changed files with 26 additions and 3 deletions

View File

@ -122,7 +122,25 @@ class SupplierController extends BaseAdminController
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 绑定用户
*/
public function bind_user()
{
$params = $this->request->post();
if (!isset($params['id']) && !isset($params['uid'])) {
return $this->fail('参数错误');
}
$find = Supplier::where('uid', $params['uid'])->find();
if ($find) {
return $this->fail('该用户已绑定商户');
}
$res = Supplier::where('id', $params['id'])->update(['uid' => $params['uid']]);
if ($res) {
return $this->success('绑定成功', [], 1, 1);
}
return $this->fail('绑定失败');
}
/**
* @notes 获取供应商管理详情
* @return \think\response\Json

View File

@ -4,6 +4,7 @@ namespace app\api\lists\financial;
use app\admin\lists\BaseAdminDataLists;
use app\common\enum\OrderEnum;
use app\common\lists\ListsSearchInterface;
use app\common\model\financial\FinancialRecord;
@ -51,13 +52,17 @@ class FinancialRecordLists extends BaseAdminDataLists implements ListsSearchInte
'mer_id' => $mer_id,
];
$this->where = $where;
$searchWhere=$this->searchWhere;
$list = FinancialRecord::where($this->searchWhere)
->where($where)
->field("FROM_UNIXTIME(create_time, '%Y-%m-%d') as record_date, SUM(number) as total_amount")
->group('record_date')
->order('record_date')
->select()->each(function ($item) {
$item['total_amount'] = $item['total_amount'] ?? 0;
->select()->each(function ($item) use($where,$searchWhere) {
$cashier_total_amount=FinancialRecord::where($where)->where($searchWhere)->where('financial_type',OrderEnum::CASHIER_ORDER_PAY)->sum('number');
$item['cashier_total_amount'] = $cashier_total_amount;
$cashier_cash_total_amount=FinancialRecord::where($where)->where($searchWhere)->where('financial_type',OrderEnum::CASHIER_CASH_ORDER_PAY)->sum('number');
$item['cashier_cash_total_amount'] = $cashier_cash_total_amount;
});
return $list?->toArray();
}