WeMall微信商城源码插件Coupon代金券代码是用于商业推广的比较有效的方式,分享了部分比较重要的代码,供技术员学习参考
 
AdminController.class.php

<?php
namespace Addons\Coupon\Controller;  

class AdminController extends InitController
{
    public function index()
    {
        $num = 25;
        $p = I("get.page") ? I("get.page") : 1;  

        $couponModel = D(’Addons://Coupon/AddonCouponMenu’);
        $coupon = $couponModel->getPageConditionOrder($p, $num, "id desc");
        $this->assign("couponList", $coupon);// 赋值数据集  

        $count = $couponModel->getCount();// 查询满足要求的总记录数
        $Page = new \Think\Page($count, $num);// 实例化分页类 传入总记录数和每页显示的记录数
        $Page->setConfig(’theme’, "<ul class=’pagination no-margin pull-right’></li><li>%FIRST%</li><li>%UP_PAGE%</li><li>%LINK_PAGE%</li><li>%DOWN_PAGE%</li><li>%END%</li><li><a> %HEADER%  %NOW_PAGE%/%TOTAL_PAGE% 页</a></ul>");
        $show = $Page->show();// 分页显示输出
        $this->assign(’page’, $show);// 赋值分页输出  

        $this->display(); // 输出模板
    }  

    public function add()
    {
        if (IS_POST) {
            if (!I("post.name")) {
                return;
            }  

            $data = I("post.");
            $data[’last_time’] = I(’post.last_time’, ’’, ’strtotime’);
            $coupon_id = D(’Addons://Coupon/AddonCouponMenu’)->addCouponMenu($data);  

            isset($coupon_id) ? $this->success(’添加成功’, ’Admin/Admin/index/addon/Coupon’) : $this->error(’添加失败’, u_addons("Coupon://Admin/Admin/index"));
        } else {
            $this->display(); // 输出模板
        }
    }  

    public function detail()
    {
        $cdata[’coupon_menu_id’] = I(’get.id’);
        $m = M(’AddonCoupon’);
        $count = $m->where($cdata)->count(); // 查询满足要求的总记录数
        $Page = new \Think\Page ($count, 15); // 实例化分页类 传入总记录数和每页显示的记录数
        $Page->setConfig(’theme’, "<ul class=’pagination no-margin pull-right’></li><li>%FIRST%</li><li>%UP_PAGE%</li><li>%LINK_PAGE%</li><li>%DOWN_PAGE%</li><li>%END%</li><li><a> %HEADER%  %NOW_PAGE%/%TOTAL_PAGE% 页</a></ul>");
        $show = $Page->show(); // 分页显示输出
        $detail = $m->where($cdata)->limit($Page->firstRow . ’,’ . $Page->listRows)->select();  

        $this->assign("page", $show); // 赋值分页输出
        $this->assign(’coupon’, $detail);
        $this->display();
    }  

    public function export()
    {  

    }  

    public function del()
    {
        $cdata[’coupon_menu_id’] = $data[’id’] = I(’get.id’);
        $c = M(’AddonCouponMenu’)->where($data)->delete();
        $m = M(’AddonCoupon’)->where($cdata)->delete();
        if ($c != false && $m != false) {
            $this->success(’删除成功’, ’Admin/Admin/index/addon/Coupon’);
        } else {
            $this->error(’操作失败’, ’Admin/Admin/index/addon/Coupon’);
        }
    }  

    public function detail_del()
    {
        $cdata[’id’] = I(’get.id’);
        $m = M(’AddonCoupon’)->where($cdata)->delete();
        if ($m != false) {
            $this->success(’删除成功’, ’Admin/Admin/index/addon/Coupon’);
        } else {
            $this->error(’操作失败’, ’Admin/Admin/index/addon/Coupon’);
        }
    }
}

  

AddonCouponMenuModel.class.php

<?php
namespace Addons\Coupon\Model;  

use Think\Model\RelationModel;  

class AddonCouponMenuModel extends RelationModel
{
    protected $_link = array();  

    public function getCount()
    {
        $count = $this->count();
        return $count;
    }  

    public function getPageConditionOrder($p = 1, $num = 1, $order)
    {
        // 进行分页数据查询 注意page方法的参数的前面部分是当前的页数使用 $_GET[p]获取
        $orderList = $this->page($p . ’,’ . $num . ’’)->order($order)->select();
        return $orderList;
    }  

    public function addCouponMenu($data)
    {
        $data[’ctime’] = time();
        $number = $data[’num’] = intval($data[’num’]);
        $data[’coupon_menu_id’] = $this->add($data);  

        for ($i = 0; $i < $number; $i++) {
            $data[’code’] = rand_code(6);
            $code = M(’AddonCoupon’)->where(array(’code’ => $data[’code’]))->find();
            if (!isset($code)) {
                $coupon_id = M(’AddonCoupon’)->add($data);
            } else {
                $number = $number + 1;
            }
        }
        return $coupon_id;
    }
}

  

 Admin_detail.html

<section class="content-header">
    <h1>
        优惠券管理
        <small></small>
    </h1>
</section>  

<!-- Main content -->
<section class="content">
    <div class="row">
        <!-- /.col -->
        <div class="col-md-12">
            <div class="box box-danger">
                <div class="box-header with-border">
                    <h3 class="box-title">优惠券管理</h3>
                    <!-- /.box-tools -->
                </div>
                <!-- /.box-header -->
                <div class="box-body no-padding">
                    <div class="mailbox-controls">
                        <div class="btn-group">
                            <a href="{:u_addons(\’Coupon://Admin/Admin/index\’)}" class="btn btn-danger ">
                                返回优惠券列表页
                            </a>
                        </div>
                        <!-- /.btn-group -->
                    </div>
                    <div class="table-responsive" style="overflow-x: visible;">
                        <table class="table table-bordered table-hover">
                            <tbody>
                            <tr>
                                <!--<th class="hidden-xs">-->
                                    <!--<label><input onchange="checkAll()" type="checkbox" value=""></label>-->
                                <!--</th>-->
                                <th>ID</th>
                                <th>优惠码</th>
                                <th>金额</th>
                                <th>状态</th>
                                <th>截止时间</th>
                                <th>操作</th>
                            </tr>
                            <volist name="coupon" id="coupon">
                                <tr>
                                    <!--<td class="hidden-xs">-->
                                        <!--<label><input name="checkbox" class="check" type="checkbox"-->
                                                      <!--value="{$coupon.id}"></label>-->
                                    <!--</td>-->
                                    <td>
                                        {$coupon.id}
                                    </td>
                                    <td>
                                        {$coupon.code}
                                    </td>
                                    <td>
                                        {$coupon.price}
                                    </td>
                                    <td>
                                        {$coupon.status}
                                    </td>
                                    <td>
                                        {:date(’Y-m-d H:i:s’,$coupon[’last_time’])}
                                    </td>
                                    <td class="table-action"><a
                                            href="{:u_addons(\’Coupon://Admin/Admin/detail_del\’,array(’id’=>$coupon[’id’]))}">删除</a></td>
                                </tr>
                            </volist>
                            </tbody>
                        </table>
                        <div class="box-footer no-padding">
                            <div class="mailbox-controls">
                                <!--<div class="btn-group">-->
                                    <!--<button type="button" class="btn btn-danger"-->
                                            <!--onclick="batchUrl(’{:U(\’Admin/coupon/delcoupon\’)}’)">全部删除-->
                                    <!--</button>-->
                                <!--</div>-->
                                <div class="pull-right" style="margin-bottom: 6px">
                                    {$page}
                                    <!-- /.btn-group -->
                                </div>
                            </div>
                        </div>
                    </div>
                    <!-- /.mail-box-messages -->
                </div>
            </div>
            <!-- /. box -->
        </div>
        <!-- /.col -->
    </div>
</section>  

 代码来源: www.wemallshop.com


 

WeMall微信商城源码插件代金券部分代码的更多相关文章

  1. WeMall微信商城源码插件会员卡代码详情

    WeMall微信商城源码插件会员卡代码是用于商业推广的比较有效的方式,分享了部分比较重要的代码,供技术员学习参考 Index_index.html <html> <head> ...

  2. WeMall微信商城源码插件大转盘代码详情

    WeMall微信商城源码插件大转盘代码是用于商业推广的比较有效的方式,分享了部分比较重要的代码,供技术员学习参考 代码详情地址:http://addon.wemallshop.com/Product/ ...

  3. WeMall微信商城源码活动报名插件代码详情

    WeMall微信商城源码插件活动报名代码是用于商业推广的比较有效的方式,分享了部分比较重要的代码,供技术员学习参考,商家可自由设置报名项目,活动时间,报名内容 代码详情地址:http://addon. ...

  4. wemall app商城源码Android之支付宝通知处理类

    wemall-mobile是基于WeMall的Android app商城,只需要在原商城目录下上传接口文件即可完成服务端的配置,客户端可定制修改.本文分享wemall app商城源码Android之处 ...

  5. wemall app商城源码机器人检测

    wemall-mobile是基于WeMall的Android app商城,只需要在原商城目录下上传接口文件即可完成服务端的配置,客户端可定制修改.本文分享wemall app商城源码Android之 ...

  6. wemall app商城源码Android之支付宝接口公用函数

    wemall-mobile是基于WeMall的Android app商城,只需要在原商城目录下上传接口文件即可完成服务端的配置,客户端可定制修改.本文分享wemall app商城源码Android之  ...

  7. wemall app商城源码Android数据的SharedPreferences储存方式

    wemall-mobile是基于WeMall的Android app商城,只需要在原商城目录下上传接口文件即可完成服务端的配置,客户端可定制修改.本文分享wemall app商城源码Android数据 ...

  8. wemall app商城源码Android之ListView异步加载网络图片(优化缓存机制)

    wemall-mobile是基于WeMall的android app商城,只需要在原商城目录下上传接口文件即可完成服务端的配置,客户端可定制修改.本文分享wemall app商城源码Android之L ...

  9. wemall app商城源码中android按钮的三种响应事件

    wemall-mobile是基于WeMall的android app商城,只需要在原商城目录下上传接口文件即可完成服务端的配置,客户端可定制修改.本文分享wemall app商城源码中android按 ...

随机推荐

  1. 列表视图(ListView)和ListActivity

    ListView是手机系统中使用非常广泛的一种组件,它以垂直列表的形式显示所有列表项. 创建ListView有如下两种方式: 直接使用ListView进行创建. 让Activity继承ListActi ...

  2. VS生成时复制文件到指定目录

    1.右键项目属性,选择生成事件,再点击"编辑后生成事件",可以直接在编辑框内填写命令行,如图: 2.也可以在弹出的编辑框内,写命令,$(ProjectDir)这种是系统的宏路径,具 ...

  3. Android的文件存储

    //文件的写入 String content1 = edt_file.getText().toString(); //用于文件的写操作 FileOutputStream fos=null; //缓冲输 ...

  4. 最快让你上手ReactiveCocoa之基础篇(简称RAC)

    前言 很多blog都说ReactiveCocoa好用,然后各种秀自己如何灵活运用ReactiveCocoa,但是感觉真正缺少的是一篇如何学习ReactiveCocoa的文章,小编看了很多篇都没看出怎么 ...

  5. 在ubuntu linux 中编写一个自己的python脚本

    在ubuntu linux 中编写一个自己的简单的bash脚本. 实现功能:终端中输入简单的命令(以pmpy为例(play music python),为了区别之前说的bash脚本添加了py后缀),来 ...

  6. IIS7出现“HTTP 错误 404.17 - Not Found 请求的内容似乎是脚本,因而将无法由静态文件处理程序来处理。”错误-Windows-

    Errore HTTP 404.2 - Not Found" IIS 7.5 请求的内容似乎是脚本,因而将无法由静态文件处理程序来处理 如果你用了安全狗,可能只看到404错误,请打开狗,资源 ...

  7. c#入门系列——基础篇

    c#与VB的区别 刚接触c#发现c#与vb还是有所不同的--它可以在控制台显示.它比vb多出来了一些东西.代码规范上跟VB也稍有不同.....暂时就发现这么多,正在努力发现中. c#的代码结构     ...

  8. js设置、获取、清除cookie

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8&quo ...

  9. 快速排序的C语言实现

    #include <stdio.h> int qSort(int a[],int i,int j) { int h = i; int r = j; int x = a[h]; int f ...

  10. 8086cpu

    1.  8086CPU和8088CPU内部结构基本相同,不同之处在于8088有8条外部数据总线,因此为准16位.8086有16条外部数据总线.两个CPU的软件完全兼容,程序的编制也完全相同. 2.   ...