完成订单重构

This commit is contained in:
xman 2025-06-01 22:59:53 +08:00
parent a03f58bbc9
commit ad4ea19122
2 changed files with 4 additions and 4 deletions

View File

@ -152,8 +152,8 @@ class Auditorder extends Backend
Message::create([
'to_id' => $row->dispatch_admin_id,
'type' => 1,
'title' => '订单'.$row->order_no.'财务审核未通过,请重新配置',
'content' => '订单编号:'.$row->order_no.',审核说明:'.$params['audit_remark'].',审核人:'.$this->auth->nickname
'title' => '订单结算审核未通过',
'content' => '【订单结算未通过】订单编号:'.$row->order_no.',审核说明:'.$params['audit_remark'].',审核人:'.$this->auth->nickname
]);
}

View File

@ -38,8 +38,8 @@ class CheckOrdeRecordCommand extends Command
Message::create([
'to_id' => $dispatch->admin_id,
'type' => 1,
'title' => '派单任务跟进提',
'content' => '您有一条待跟进订单,订单编号:'.$dispatch->orderb->order_no.',请及时关注。'
'title' => '派单任务跟进提',
'content' => '【订单跟进提示】您有一条待跟进订单,订单编号:'.$dispatch->orderb->order_no.',请及时关注。'
]);
}
}