mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
62 lines
1.9 KiB
PHP
62 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2026 ShopeX (https://www.shopex.cn)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @Author:
|
|
* @Vsersion:
|
|
* @Describe: 定时清理
|
|
* sdb_ome_branch_freeze_queue
|
|
* sdb_ome_material_freeze_queue
|
|
* sdb_material_basic_material_stock_freeze
|
|
*/
|
|
class monitor_autotask_timer_cleanfreezequeue
|
|
{
|
|
|
|
public function process($params, &$error_msg = '')
|
|
{
|
|
set_time_limit(0);
|
|
ignore_user_abort(1);
|
|
@ini_set('memory_limit', '512M');
|
|
$db = kernel::database();
|
|
|
|
|
|
$cleanTime = strtotime('yesterday');
|
|
$cleanTime = date('Y-m-d 00:00:00', $cleanTime);
|
|
|
|
|
|
$branch_freeze_queue_sql = "DELETE FROM sdb_ome_branch_freeze_queue
|
|
WHERE status='2' AND up_time<'{$cleanTime}'";
|
|
print_R($branch_freeze_queue_sql."\n");
|
|
$db->exec($branch_freeze_queue_sql);
|
|
|
|
|
|
$material_freeze_queue_sql = "DELETE FROM sdb_ome_material_freeze_queue
|
|
WHERE status='2' AND up_time<'{$cleanTime}'";
|
|
print_R($material_freeze_queue_sql."\n");
|
|
$db->exec($material_freeze_queue_sql);
|
|
|
|
|
|
$material_stock_freeze_sql = "DELETE FROM sdb_material_basic_material_stock_freeze
|
|
WHERE num='0' AND up_time<'{$cleanTime}' AND at_time<>up_time";
|
|
print_R($material_stock_freeze_sql."\n");
|
|
$db->exec($material_stock_freeze_sql);
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|