dever 6 лет назад
Родитель
Сommit
d8cc63947a

+ 56 - 0
stat/assets/manage/html/journal.html

@@ -0,0 +1,56 @@
+<style>
+.layui-col-md2
+{
+    height: 250px;
+    border:1px solid #bababa;
+    margin:5px;
+}
+.layui-col-md2 .img
+{
+    text-align: center;overflow: hidden;text-align: center;
+}
+</style>
+<div class="layui-fluid layadmin-cmdlist-fluid">
+  <ul class="layui-row layui-col-space30" id="sortable">
+    <li class="layui-col-md2 layui-col-sm4" id="data" style="">
+        <div class="cmdlist-container">
+            <div href="javascript:;" class="img" style="height: 154px;">
+              <img src="../../layuiadmin/style/res/template/portrait.png">
+            </div>
+            <a href="javascript:;" >
+              <div class="cmdlist-text" style="text-align:center;">
+                <p class="info">2018春夏季新款港味短款白色T恤+网纱中长款chic半身裙套装两件套</p>
+                <div class="price">
+                    <b></b>
+                </div>
+
+                <div class="text"></div>
+                
+
+                <div style="margin-top:10px;text-align:center;">
+                <div class="layui-table-cell"><a href="javascript:;" class="edit" onclick=""><button type="button" class="btn btn-info btn-rounded waves-effect waves-light m-b-5 layui-btn layui-btn-xs">编辑</button></a>&nbsp;&nbsp;<a href="#" class="oper_delete"><button type="button" class="btn btn-info btn-rounded waves-effect waves-light m-b-5 layui-btn layui-btn-danger layui-btn-xs"><span class="am-icon-trash-o"></span>删除</button></a>&nbsp;&nbsp;</div>
+                </div>
+              </div>
+            </a>
+        </div>
+    </li>
+  </ul>
+</div>
+
+<script id="url">var url = ""</script>
+<script>
+  $( function() {
+    var sort = $( "#sortable" ).sortable({
+        opacity: 0.7,
+        stop:function(){
+          var arr = $( "#sortable" ).sortable('toArray');
+          arr = arr.join(',');
+          $.post(url, {data:arr}, function()
+          {
+
+          })
+        }
+    });
+    $( "#sortable" ).disableSelection();
+  } );
+  </script>

+ 175 - 0
stat/database/journal.php

@@ -0,0 +1,175 @@
+<?php
+$journal = function()
+{
+    $array = array();
+    $info = Dever::db('journal/info')->state();
+    if($info)
+    {
+        $array += $info;
+    }
+    return $array;
+};
+
+return array
+(
+    # 表名
+    'name' => 'journal',
+    # 显示给用户看的名称
+    'lang' => '小刊订单',
+    'order' => '10',
+    # 数据结构
+    'struct' => array
+    (
+    
+        'id'        => array
+        (
+            'type'      => 'int-11',
+            'name'      => 'ID',
+            'default'   => '',
+            'desc'      => '',
+            'match'     => 'is_numeric',
+            //'list'        => true,
+        ),
+
+        'journal_id'      => array
+        (
+            'type'      => 'int-11',
+            'name'      => '小刊',
+            'default'   => '',
+            'desc'      => '小刊',
+            'match'     => 'is_numeric',
+            'update'    => 'select',
+            'option'    => $journal,
+            'list'      => true,
+        ),
+
+        'day_string'       => array
+        (
+            'type'      => 'varchar-60',
+            'name'      => '统计日期',
+            'default'   => '',
+            'desc'      => '统计日期',
+            'match'     => 'is_string',
+            'update'    => 'text',
+            //'search'    => 'fulltext',
+            'list'      => true,
+        ),
+
+        'day_int'        => array
+        (
+            'type'      => 'int-11',
+            'name'      => '统计日期',
+            'default'   => '',
+            'desc'      => '统计日期',
+            'match'     => 'is_numeric',
+            'update'    => 'text',
+            'search'  => 'time',
+            //'list'        => true,
+        ),
+
+        'order_num'       => array
+        (
+            'type'      => 'int-11',
+            'name'      => '总订单数',
+            'default'   => '0',
+            'match'     => '总订单数',
+            'match'     => 'is_numeric',
+            'update'    => 'text',
+            'list'      => true,
+        ),
+
+        'order_yes_num'       => array
+        (
+            'type'      => 'int-11',
+            'name'      => '支付订单数',
+            'default'   => '0',
+            'match'     => '支付订单数',
+            'match'     => 'is_numeric',
+            'update'    => 'text',
+            'list'      => true,
+        ),
+
+        'order_no_num'       => array
+        (
+            'type'      => 'int-11',
+            'name'      => '未支付订单数',
+            'default'   => '0',
+            'match'     => '未支付订单数',
+            'match'     => 'is_numeric',
+            'update'    => 'text',
+            'list'      => true,
+        ),
+
+        'buy_num'       => array
+        (
+            'type'      => 'int-11',
+            'name'      => '售出本数',
+            'default'   => '0',
+            'match'     => '售出本数',
+            'match'     => 'is_numeric',
+            'update'    => 'text',
+            'list'      => true,
+        ),
+
+        'buy_cash'       => array
+        (
+            'type'      => 'int-11',
+            'name'      => '售出金额',
+            'default'   => '0',
+            'match'     => '售出金额',
+            'match'     => 'is_numeric',
+            'update'    => 'text',
+            'list'      => true,
+        ),
+
+        'state'     => array
+        (
+            'type'      => 'tinyint-1',
+            'name'      => '状态',
+            'default'   => '1',
+            'desc'      => '请选择状态',
+            'match'     => 'is_numeric',
+        ),
+        
+        'cdate'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '创建时间',
+            'match'     => array('is_numeric', time()),
+            'desc'      => '',
+            # 只有insert时才生效
+            'insert'    => true,
+            //'search'    => 'date',
+            //'list'      => 'date("Y-m-d H:i:s", {cdate})',
+        ),
+    ),
+
+    'manage' => array
+    (
+        'insert' => false,
+        'edit' => false,
+        'delete' => false,
+        'num' => false,
+        'excel' => true,
+
+        //'page_list' => 'journal',
+    ),
+
+    'request' => array
+    (
+        'getData' => array
+        (
+            # 匹配的正则或函数 选填项
+            'option' => array
+            (
+                'start' => array('yes-day_int', '>='),
+                'end' => array('yes-day_int', '<='),
+                'state' => 1,
+            ),
+            'type' => 'all',
+            'order' => array('day_int' => 'asc'),
+            //'group' => 'day_int',
+            'col' => '*',
+        ),
+    ),
+);

+ 8 - 0
stat/index.php

@@ -0,0 +1,8 @@
+<?php
+
+define('DEVER_APP_NAME', 'stat');
+define('DEVER_APP_LANG', '统计系统');
+define('DEVER_APP_PATH', dirname(__FILE__) . DIRECTORY_SEPARATOR);
+define('DEVER_MANAGE_ORDER', 100);
+define('DEVER_MANAGE_ICON', 'glyphicon glyphicon-tower layui-icon-chart-screen');
+include(DEVER_APP_PATH . '../boot.php');

+ 114 - 0
stat/lib/Journal.php

@@ -0,0 +1,114 @@
+<?php
+
+namespace Stat\Lib;
+
+use Dever;
+
+class Journal
+{
+    const NUM = 1;
+
+    /**
+     * 获取数据-可以放到cron里
+     *
+     * @return mixed
+     */
+    public function data()
+    {
+        # 获取最近self::NUM天的数据
+        $num = Dever::input('num', self::NUM);
+
+        $day = Dever::input('day');
+        if ($day) {
+            $day = Dever::maketime($day);
+        } else {
+            $day = time();
+        }
+        $start = date('Y-m-d 00:00:00', $day);
+        $option = array
+        (
+            'state' => 1,
+            'start' => array('yes-cdate', '>'),
+            'end' => array('yes-cdate', '<'),
+        );
+        $where['option'] = $option;
+
+        $journal = Dever::db('journal/info')->state(array('buy' => 1));
+        print_r($journal);
+
+        if ($journal) {
+            foreach ($journal as $k => $v) {
+                for ($i = 0; $i < $num; $i++) {
+                    $where['start'] = strtotime("$start -$i day");
+                    $where['end'] = $where['start'] + 86399;
+                    $this->total($v, $where, $day);
+                }
+            }
+        }
+        return true;
+    }
+
+    private function total($info, $where, $day)
+    {
+        # 这里就是为了做下sql的实现方式,其实用dever自带的功能完全可以实现。
+        $day = date('Y-m-d', $where['start']);
+        $sql = 'select * from applet_passport_wechat where type = 1 and product_id = '.$info['id'].' and state = 1 and cdate >= '.$where['start'].' and cdate <= '.$where['end'];
+        echo $sql;
+        $order = Dever::db('journal/order')->fetchAll($sql);
+        print_r($order);
+
+        if ($order) {
+            $order_num = $order_yes_num = $order_no_num = $buy_num = $buy_cash = 0;
+            foreach ($order as $k => $v) {
+                $order_num++;
+                if ($v['status'] == 1) {
+                    # 待支付
+                    $order_no_num++;
+                } elseif ($v['status'] == 2) {
+                    # 已支付
+                    $order_yes_num++;
+                }
+                if ($v['buy_id']) {
+                    $buy = Dever::db('journal/buy_num')->one($v['buy_id']);
+                    if ($buy['num']) {
+                        $buy_num += $buy['num'];
+                    }
+                }
+
+                if ($v['cash']) {
+                    $buy_cash += $v['cash'];
+                }
+            }
+
+            $this->update($info['id'], $day, $order_num, $order_yes_num, $order_no_num, $buy_num, $buy_cash);
+        }
+    }
+
+    public function update($info_id, $day, $order_num, $order_yes_num, $order_no_num, $buy_num, $buy_cash)
+    {
+        $update = array();
+        $update['day_string'] = $day;
+        $update['day_int'] = Dever::maketime($day);
+        $update['order_num'] = $order_num;
+        $update['order_yes_num'] = $order_yes_num;
+        $update['order_no_num'] = $order_no_num;
+        $update['buy_num'] = $buy_num;
+        $update['buy_cash'] = $buy_cash;
+        $update['journal_id'] = $info_id;
+
+        print_r($update);die;
+
+        $where = array();
+        $where['day_int'] = $update['day_int'];
+        $where['journal_id'] = $update['journal_id'];
+
+        $info = Dever::db('stat/journal')->one($where);
+        if (!$info) {
+            $id = Dever::db('stat/journal')->insert($update);
+        } else {
+            $id = $info['id'];
+            $update['where_id'] = $id;
+            Dever::db('stat/journal')->update($update);
+        }
+    }
+}

+ 71 - 0
stat/template/manage/journal.php

@@ -0,0 +1,71 @@
+<?php
+
+/*
+|--------------------------------------------------------------------------
+| home
+|--------------------------------------------------------------------------
+ */
+$view
+
+->fetch('.layui-fluid@test', '公告')
+
+->fetch('#url', 'var url="<{Dever::url("journal/lib/manage.updateJournalContent")}>"')
+
+->loop
+(
+    '.layui-col-md2',
+    'journal/lib/manage.journalContent',
+    array
+    (
+        'self' => array
+        (
+            'id' => 'data-<{$v.id}>',
+        ),
+        'b' => array
+        (
+            'html' => '<{date("Y/m/d", $v.cdate)}>',
+            'html' => '',
+        ),
+
+        '.img' => array
+        (
+            'style' => '<{$v.height}>',
+        ),
+
+        'img' => array
+        (
+            'src' => '<{$v.pic}>',
+            'width' => '150',
+        ),
+
+        '.info' => array
+        (
+            'html' => '<{Dever::cut($v.name, 20)}>',
+            'style' => '<{$v.info_height}>',
+        ),
+
+        '.edit' => array
+        (
+            //'onclick' => '<{$v.edit}>',
+            'href' => '<{$v.editurl}>',
+        ),
+
+        '.oper_delete' => array
+        (
+            'href' => '<{$v.delete}>',
+        ),
+
+        '.text' => array
+        (
+            'html' => '<{$v.text}>',
+        ),
+
+        'b' => array
+        (
+            'html' => '<{$v.typename}>',
+        ),
+    )
+)
+
+# display
+->display();