|
|
@@ -85,22 +85,6 @@ class printUtil
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- $mainId = $shop->mainId ?? 0;
|
|
|
- $shopName = $shop->shopName ?? '';
|
|
|
- $staffList = ShopAdminClass::getAllByCondition(['mainId' => $mainId], null, '*', null, true);
|
|
|
- if (!empty($staffList)) {
|
|
|
- foreach ($staffList as $staff) {
|
|
|
- $remind = $staff->remind ?? 0;
|
|
|
- $isPt = $staff->isPt ?? 0;
|
|
|
- $delStatus = $staff->delStatus ?? 0;
|
|
|
- if ($isPt == 0 && $remind == 1 && $delStatus == 0) {
|
|
|
- $mobile = $staff->mobile ?? '';
|
|
|
- sms::send($mobile . ',' . $shopName, '请注意,您有一个订单花材很多,小票没有打出来。门店:{$var}');
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
|