...
|
...
|
@@ -24,16 +24,22 @@ class Crontab extends Api |
|
|
{
|
|
|
//查询未生成的条形码
|
|
|
$id = db('study')->where('generate', 0)->limit(10)->column('id');
|
|
|
foreach ($id as $k => $v){
|
|
|
if (empty($id)) {
|
|
|
$this->error('不执行', ['status' => 0]);
|
|
|
}
|
|
|
foreach ($id as $k => $v) {
|
|
|
$res = str_pad($v, 8, "0", STR_PAD_LEFT);
|
|
|
$barpath = Resource::StudyBar($res);
|
|
|
db('study')
|
|
|
->where('id',$v)
|
|
|
->where('id', $v)
|
|
|
->update([
|
|
|
'barcode' => $barpath,
|
|
|
'unique' => $res,
|
|
|
'generate'=>1
|
|
|
'generate' => 1
|
|
|
]);
|
|
|
|
|
|
}
|
|
|
$this->success('执行成功', ['status' => 1]);
|
|
|
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|