feat : order

This commit is contained in:
2025-03-25 10:10:16 +08:00
parent 374257f06a
commit 09fd4aa89d

View File

@@ -148,7 +148,7 @@ trait PrintTrait
{ {
$this->stopOrderKey = AdminRedisKey::optionCateringStopOrder($cycleId); $this->stopOrderKey = AdminRedisKey::optionCateringStopOrder($cycleId);
return CateringCode::REDIS_FINISH_VALUE == $this->redis->hGet($this->stopOrderKey, $siteId); return CateringCode::REDIS_FINISH_VALUE == $this->redis->hGet($this->stopOrderKey, (string)$siteId);
} }
/** /**
@@ -340,6 +340,6 @@ trait PrintTrait
{ {
$this->stopMealOrderKey = AdminRedisKey::mealCateringStopOrder($cycleId); $this->stopMealOrderKey = AdminRedisKey::mealCateringStopOrder($cycleId);
return CateringCode::REDIS_FINISH_VALUE == $this->redis->hGet($this->stopMealOrderKey, $siteId); return CateringCode::REDIS_FINISH_VALUE == $this->redis->hGet($this->stopMealOrderKey, (string)$siteId);
} }
} }