Your Name 3 years ago
parent
commit
20fba6d59b

+ 2 - 1
step_question/apis/static/index2.html

@@ -124,12 +124,13 @@
         
     <div class="text-center">
 
-      <img class="img-fluid mb-3" src="images/banner-bottom.jpg" alt="幸福空間 - 裝修市場問卷調查">
 
 
     </div>
 
     <!-- <footer>
+      <img class="img-fluid mb-3" src="images/banner-bottom.jpg" alt="幸福空間 - 裝修市場問卷調查">
+
       <div class="footer">
         <div class="text-center">
           <img class="img-fluid" src="images/banner-bottom.jpg" alt="幸福空間 - 裝修市場問卷調查">

+ 1 - 1
step_question/apis/static/index_complete_msg.html

@@ -28,7 +28,7 @@
             <h3>再次感謝您的協助填寫</h3>
             <img src="images/checked.png" alt="" class="mb-2">
             <p>當你點選【離開】後,我們會將5萬元裝修折抵卷寄到信箱!還請您留意收信喔。</p>
-            <button class="btn-exit" href="">離開</button>
+            <a href="http://www.hhh.com.tw"><button class="btn-exit" >離開</button></a>
         </div>
         </div>
     </main>

+ 51 - 0
step_question/tests/dftest.py

@@ -0,0 +1,51 @@
+#!/usr/bin/python3
+import sys
+import codecs
+import traceback
+import requests
+import re
+import pandas as pd
+import random
+import urllib
+import dataset
+import json
+import gspread
+import datetime
+from gspread_pandas import Spread, Client
+from oauth2client.service_account import ServiceAccountCredentials
+import os
+import thread
+
+def save_sheet(df,filename,tabname,startpos='A1'):
+
+    scope = ['https://spreadsheets.google.com/feeds',
+            'https://www.googleapis.com/auth/drive']
+
+    credentials = ServiceAccountCredentials.from_json_keyfile_name('c:\\keys\\spread2.json', scope)
+    gc = gspread.authorize(credentials)
+    spread = Spread(filename,creds=credentials)
+
+    spread.df_to_sheet(df, index=False, sheet=tabname, start=startpos, replace=False)
+
+
+
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/hhh?charset=utf8mb4')
+
+#db = dataset.connect('mysql://jared:Sstc_5202@home.a4.monster:7036/finance2?charset=utf8mb4')
+
+#db=get_db()
+cursor=db.query('SELECT sex,phone,email,building_case_name,building_case_type,decoration_style,decoration_budget,decoration_size FROM hhh.step_questions;')
+df = pd.DataFrame(columns=('sex','phone','email','building_case_name','building_case_type','decoration_style','decoration_budget','decoration_size'))
+
+idx=0
+
+for c in cursor:
+    df.loc[idx]=[c['sex'],c['phone'],c['email'],c['building_case_name'],c['building_case_type'],c['decoration_style'],c['decoration_budget'],c['decoration_size']]
+#    df.loc[idx]=['okok',333]
+    idx+=1
+
+
+
+save_sheet(df,'SurveyResult','result')
+