Files
OMS/app/ome/lib/finder/tbgift/goods.php
2025-12-28 23:13:25 +08:00

46 lines
2.0 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 ome_finder_tbgift_goods{
var $addon_cols = "status";
var $column_control = '操作';
var $column_control_width = "150";
function column_control($row){
#获取赠品的商品类型
$gift_goods = app::get('ome')->model('tbgift_goods');
$type = $gift_goods->dump($row['goods_id'],'goods_type');
$find_id = $_GET['_finder']['finder_id'];
if($row[$this->col_prefix . 'status'] == 2){
$btn = "<a href='javascript:void(0);' target='download' onclick='if(confirm(\"你确定要启用当前的赠品吗?\")) {href=\"index.php?app=ome&ctl=admin_preprocess_tbgift&act=setStatus&p[0]={$row['goods_id']}&p[1]=true&finder_id={$_GET['_finder']['finder_id']}\";}'>启用</a> | ";
}else{
$btn = "<a href='javascript:void(0);' target='download' onclick='if(confirm(\"你确定要暂停当前的赠品吗?\")) {href=\"index.php?app=ome&ctl=admin_preprocess_tbgift&act=setStatus&p[0]={$row['goods_id']}&p[1]=false&finder_id={$_GET['_finder']['finder_id']}\";}'>暂停</a> | ";
}
$btn .= '<a href="index.php?app=ome&ctl=admin_preprocess_tbgift&act=edit&p[0]='.$row['goods_id'].'&p[1]='.$type['goods_type'].'&finder_id='.$find_id.'&_finder[finder_id]='.$find_id.'" target="_blank">编辑</a>';
return $btn;
}
function detail_basic($gift_id){
$render = app::get('ome')->render();
$gift_product = app::get('ome')->model('tbgift_product');
$data = $gift_product->getAllProduct($gift_id);
$render->pagedata['gift_data'] = $data;
return $render->fetch('admin/preprocess/tbgift/detail_basic.html');
}
var $column_status = '当前状态';
var $column_status_width = "100";
var $column_status_order = "200";
function column_status($row){
if($row[$this->col_prefix . 'status'] == 2){
return '关闭';
}else{
return '启用';
}
}
}
?>