|
|
@@ -194,6 +194,9 @@ class OrderController extends BaseController
|
|
|
$id = $post['id'] ?? '';
|
|
|
$order = OrderClass::getById($id, true);
|
|
|
OrderClass::valid($order, $this->shopId);
|
|
|
+ $staff = $this->shopAdmin;
|
|
|
+ $staffId = $staff->id??0;
|
|
|
+ $staffName = $staff->name??'';
|
|
|
$fhWl = $post['fhWl'] ?? '';
|
|
|
$fhWlNo = $post['fhWlNo'] ?? '';
|
|
|
$fhType = $post['fhType'] ?? '';
|
|
|
@@ -201,6 +204,8 @@ class OrderController extends BaseController
|
|
|
'fhType' => $fhType,
|
|
|
'fhWl' => $fhWl,
|
|
|
'fhWlNo' => $fhWlNo,
|
|
|
+ 'staffId'=>$staffId,
|
|
|
+ 'staffName'=>$staffName,
|
|
|
];
|
|
|
|
|
|
if ($order->book == 1) {
|