xxxrrrdddd 2 rokov pred
rodič
commit
c30b788ccd
3 zmenil súbory, kde vykonal 22 pridanie a 14 odobranie
  1. 9 5
      .idea/workspace.xml
  2. 12 8
      application/admin/command/CreateGoodsHash.php
  3. 1 1
      think

+ 9 - 5
.idea/workspace.xml

@@ -3,9 +3,6 @@
   <component name="ChangeListManager">
     <list default="true" id="68506922-65cb-4d8c-b093-4269d39a72f7" name="Default Changelist" comment="Default Changelist">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/admin/command/CreateGoodsHash.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/admin/command/CreateGoodsHash.php" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/admin/common.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/admin/common.php" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/common.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/common.php" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -120,7 +117,7 @@
       <workItem from="1652698217206" duration="300000" />
       <workItem from="1652751251478" duration="1525000" />
       <workItem from="1652779568231" duration="2269000" />
-      <workItem from="1652836268470" duration="20008000" />
+      <workItem from="1652836268470" duration="23006000" />
     </task>
     <task id="LOCAL-00001" summary="Default Changelist">
       <created>1652844607269</created>
@@ -227,7 +224,14 @@
       <option name="project" value="LOCAL" />
       <updated>1652865064607</updated>
     </task>
-    <option name="localTasksCounter" value="16" />
+    <task id="LOCAL-00016" summary="Default Changelist">
+      <created>1652866012264</created>
+      <option name="number" value="00016" />
+      <option name="presentableId" value="LOCAL-00016" />
+      <option name="project" value="LOCAL" />
+      <updated>1652866012264</updated>
+    </task>
+    <option name="localTasksCounter" value="17" />
     <servers />
   </component>
   <component name="TypeScriptGeneratedFilesManager">

+ 12 - 8
application/admin/command/CreateGoodsHash.php

@@ -17,14 +17,18 @@ class CreateGoodsHash extends Command
 
     protected function execute(Input $input, Output $output)
     {
-        if(!lock(__CLASS__,1)){
-            $output->error('已在运行');
-            return;
+        try {
+            if (!lock(__CLASS__, 1)) {
+                $output->error('已在运行');
+                return;
+            }
+            $goods = Goods::whereRaw('stock>hash_num')->limit(10)->select();
+            collection($goods)->each(function (Goods $goods) {
+                ChainLogic::instance()->saveGoodsHash($goods);
+            });
+        }catch (\Exception $e){
+            lock(__CLASS__,1,true);
+            throw $e;
         }
-        $goods=Goods::whereRaw('stock>hash_num')->limit(10)->select();
-        collection($goods)->each(function (Goods $goods){
-            ChainLogic::instance()->saveGoodsHash($goods);
-        });
-        lock(__CLASS__,1,true);
     }
 }

+ 1 - 1
think

@@ -14,4 +14,4 @@
 define('APP_PATH', __DIR__ . '/application/');
 
 // 加载框架引导文件
-require './thinkphp/console.php';
+require __DIR__.'/thinkphp/console.php';