mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
32 lines
945 B
PHP
32 lines
945 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class wms_ctl_admin_queue extends desktop_controller
|
||
{
|
||
var $name = "导入中盘点";
|
||
var $workground = "wms_center";
|
||
/**
|
||
* index
|
||
* @return mixed 返回值
|
||
*/
|
||
public function index(){
|
||
$base_filter = array(
|
||
'queue_title'=>'盘点导入',
|
||
|
||
);
|
||
$params = array(
|
||
'title'=>app::get('desktop')->_('导入中盘点'),
|
||
'actions'=>array(
|
||
array('label'=>app::get('desktop')->_('全部启动'),'submit'=>'index.php?app=desktop&ctl=queue&act=run'),
|
||
array('label'=>app::get('desktop')->_('全部暂停'),'submit'=>'index.php?app=desktop&ctl=queue&act=pause'),
|
||
),
|
||
'base_filter' => $base_filter
|
||
);
|
||
|
||
$this->finder('base_mdl_queue',$params);
|
||
}
|
||
}
|
||
?>
|