Files
OMS/app/ediws/controller/admin/reship.php
2025-12-28 23:13:25 +08:00

109 lines
3.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
class ediws_ctl_admin_reship extends desktop_controller{
var $name = "主库退货单";
var $workground = "ediws_center";
/**
* index
* @return mixed 返回值
*/
public function index(){
$this->title = '主库退货单';
$actions = array();
$actions[] = array(
'label' => '获取EDI单据',
'href' => $this->url .'&act=sync&view='. $_GET['view'] .'&finder_id='.$_GET['finder_id'],
'target' => "dialog::{width:550,height:350,title:'获取EDI单据'}",
);
$params = array(
'title'=>$this->title,
'base_filter' =>array(),
'actions' => $actions,
'orderBy' => 'reship_id DESC',
'use_buildin_recycle'=>false,
'use_buildin_export'=>false,
'use_buildin_filter'=>true,
);
$this->finder('ediws_mdl_reship',$params);
}
/**
* sync
* @return mixed 返回值
*/
public function sync() {
$this->pagedata['start_time'] = strtotime('-7 days');
$this->pagedata['end_time'] = time();
$this->pagedata['request_url'] = $this->url.'&act=do_sync';
$shop = app::get('ome')->model('shop')->getList('shop_id, name', ['node_type'=>'360buy','business_type'=>'jdlvmi']);
$this->pagedata['shop'] = $shop;
$this->display('syncrefundinfo.html');
}
/**
* do_sync
* @return mixed 返回值
*/
public function do_sync() {
$shop_id = $_POST['shop_id'];
$warehouse = $_POST['warehouse'];
$start_time = $_POST['start_time'].' '.$_POST['_DTIME_']['H']['start_time'].':'.$_POST['_DTIME_']['M']['start_time'].':00';
$end_time = $_POST['end_time'].' '.$_POST['_DTIME_']['H']['end_time'].':'.$_POST['_DTIME_']['M']['end_time'].':00';
$pageNo = (int) $_POST['page_no'];
if (strtotime($start_time) >= strtotime($end_time)) {
echo json_encode(array('total'=>0));exit;
}
$start_time = strtotime($start_time);
$end_time = strtotime($end_time);
$bill_id = $_POST['bill_id'];
$sdf = array('start_time'=>$start_time,'end_time'=>$end_time,'shop_id'=>$shop_id);
$result = kernel::single('ediws_task_reship')->getReship($sdf);
$ret = array('total'=>0,'succ'=>0,'fail'=>0);
if($result) {
$ret['succ'] += 1;
} else {
$ret['fail'] += 1;
$ret['err_msg'][] = $msg;
}
echo json_encode($ret);exit;
}
/**
* batchsync
* @return mixed 返回值
*/
public function batchsync(){
// $this->begin('');
$reship_ids = $_POST['reship_id'];
if (!empty($reship_ids)) {
foreach ($reship_ids as $reship_id) {
kernel::single('ediws_event_trigger_reship')->add($reship_id);
}
}
$this->splash('success', null, '命令已经被成功发送!!');
}
}