wupengfei 2 years ago
parent
commit
bb6780c8f7

+ 6 - 4
.idea/workspace.xml

@@ -3,7 +3,8 @@
   <component name="ChangeListManager">
   <component name="ChangeListManager">
     <list default="true" id="a760c6e5-d38f-48d9-be27-0f7a4f48e29f" name="Default Changelist" comment="">
     <list default="true" id="a760c6e5-d38f-48d9-be27-0f7a4f48e29f" name="Default Changelist" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/store/controller/Config.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/store/controller/Config.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/user/controller/Invite.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/user/controller/Invite.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/user/view/invite/index_search.html" beforeDir="false" afterPath="$PROJECT_DIR$/application/user/view/invite/index_search.html" afterDir="false" />
     </list>
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -151,7 +152,8 @@
       <workItem from="1661993135050" duration="4377000" />
       <workItem from="1661993135050" duration="4377000" />
       <workItem from="1662078426211" duration="8432000" />
       <workItem from="1662078426211" duration="8432000" />
       <workItem from="1662190020639" duration="1313000" />
       <workItem from="1662190020639" duration="1313000" />
-      <workItem from="1662338106399" duration="2490000" />
+      <workItem from="1662338106399" duration="3972000" />
+      <workItem from="1662424055875" duration="1223000" />
     </task>
     </task>
     <servers />
     <servers />
   </component>
   </component>
@@ -163,10 +165,10 @@
       <screen x="0" y="0" width="2560" height="1400" />
       <screen x="0" y="0" width="2560" height="1400" />
     </state>
     </state>
     <state x="1074" y="450" key="#com.intellij.fileTypes.FileTypeChooser/0.0.2560.1400@0.0.2560.1400" timestamp="1661756113381" />
     <state x="1074" y="450" key="#com.intellij.fileTypes.FileTypeChooser/0.0.2560.1400@0.0.2560.1400" timestamp="1661756113381" />
-    <state x="384" y="199" width="1672" height="1026" key="DiffContextDialog" timestamp="1662098158202">
+    <state x="384" y="199" width="1672" height="1026" key="DiffContextDialog" timestamp="1662366105598">
       <screen x="0" y="0" width="2560" height="1400" />
       <screen x="0" y="0" width="2560" height="1400" />
     </state>
     </state>
-    <state x="384" y="199" width="1672" height="1026" key="DiffContextDialog/0.0.2560.1400@0.0.2560.1400" timestamp="1662098158202" />
+    <state x="384" y="199" width="1672" height="1026" key="DiffContextDialog/0.0.2560.1400@0.0.2560.1400" timestamp="1662366105598" />
     <state x="1387" y="523" key="FileChooserDialogImpl" timestamp="1661422023967">
     <state x="1387" y="523" key="FileChooserDialogImpl" timestamp="1661422023967">
       <screen x="0" y="0" width="2560" height="1400" />
       <screen x="0" y="0" width="2560" height="1400" />
     </state>
     </state>

+ 8 - 4
application/user/controller/Invite.php

@@ -64,12 +64,13 @@ class Invite extends Controller
         $create_at = $this->request->get('create_at');
         $create_at = $this->request->get('create_at');
         if(isset($create_at) && $create_at) {
         if(isset($create_at) && $create_at) {
             $time = explode(' - ',$_GET['create_at']);
             $time = explode(' - ',$_GET['create_at']);
-            $start_date_time = $time[0].' 00:00:00';
-            $end_date_time =  $time[1].' 23:59:59';
+            $start_date_time = $time[0];
+            $end_date_time =  $time[1];
             $this->_query($this->table)
             $this->_query($this->table)
                 ->field('pid,count(*) count')
                 ->field('pid,count(*) count')
                 ->where('pid','>',0)
                 ->where('pid','>',0)
                 ->where('is_auth',1)
                 ->where('is_auth',1)
+                ->where('bank_num is not null')
                 ->where($where)
                 ->where($where)
                 ->whereBetweenTime('create_at',$start_date_time,$end_date_time)
                 ->whereBetweenTime('create_at',$start_date_time,$end_date_time)
                 ->group('pid')
                 ->group('pid')
@@ -80,6 +81,7 @@ class Invite extends Controller
                 ->field('pid,count(*) count')
                 ->field('pid,count(*) count')
                 ->where('pid','>',0)
                 ->where('pid','>',0)
                 ->where('is_auth',1)
                 ->where('is_auth',1)
+                ->where('bank_num is not null')
                 ->where($where)
                 ->where($where)
                 ->group('pid')
                 ->group('pid')
                 ->order('count desc')
                 ->order('count desc')
@@ -126,11 +128,12 @@ class Invite extends Controller
         $create_at = $this->request->get('create_at');
         $create_at = $this->request->get('create_at');
         if(isset($create_at) && $create_at) {
         if(isset($create_at) && $create_at) {
             $time = explode(' - ',$_GET['create_at']);
             $time = explode(' - ',$_GET['create_at']);
-            $start_date_time = $time[0].' 00:00:00';
-            $end_date_time =  $time[1].' 23:59:59';
+            $start_date_time = $time[0];
+            $end_date_time =  $time[1];
             $list =  Db::name('store_member')
             $list =  Db::name('store_member')
                 ->field('pid,count(*) count')
                 ->field('pid,count(*) count')
                 ->where('pid','>',0)
                 ->where('pid','>',0)
+                ->where('bank_num is not null')
                 ->where('is_auth',1)
                 ->where('is_auth',1)
                 ->where($where)
                 ->where($where)
                 ->whereBetweenTime('create_at',$start_date_time,$end_date_time)
                 ->whereBetweenTime('create_at',$start_date_time,$end_date_time)
@@ -142,6 +145,7 @@ class Invite extends Controller
                 ->field('pid,count(*) count')
                 ->field('pid,count(*) count')
                 ->where('pid','>',0)
                 ->where('pid','>',0)
                 ->where('is_auth',1)
                 ->where('is_auth',1)
+                ->where('bank_num is not null')
                 ->where($where)
                 ->where($where)
                 ->group('pid')
                 ->group('pid')
                 ->order('count desc')
                 ->order('count desc')

+ 1 - 1
application/user/view/invite/index_search.html

@@ -33,7 +33,7 @@
     </form>
     </form>
     <script>
     <script>
         form.render();
         form.render();
-        laydate.render({range: true, elem: '[name="create_at"]'})
+        laydate.render({range: true, elem: '[name="create_at"]',type: 'datetime'})
         $('#exportButton').click(function () {
         $('#exportButton').click(function () {
             $("#exportForm").attr('action', '/user/invite/get_excl?' + $('#form').serialize())
             $("#exportForm").attr('action', '/user/invite/get_excl?' + $('#form').serialize())
         })
         })