|
@@ -134,11 +134,15 @@ if q2_result_count > 0: # 有執行項目(無預定完成日期)
|
|
|
company = r3['company']
|
|
|
if r3['company'] is None:
|
|
|
company = ''
|
|
|
-
|
|
|
+
|
|
|
+ print ('company = ' + company) # test
|
|
|
+
|
|
|
sales_man = r3['sales_man']
|
|
|
if r3['sales_man'] is None:
|
|
|
sales_man = ''
|
|
|
|
|
|
+ print ('sales_man = ' + sales_man) # test
|
|
|
+
|
|
|
if idx < 1:
|
|
|
html += "<tr><td rowspan='" + q3_result_count + "'>" + str(count) + "</td><td rowspan='" + q3_result_count + "'><a href='" + url + "' target='_blank'>" + r3['num'] + "</a></td><td rowspan='" + q3_result_count + "'>" + company + "</td><td rowspan='" + q3_result_count + "'>" + str(contract_time) + "</td><td rowspan='" + q3_result_count + "'>" + sales_man + "</td><td>" + r3['lv1'] + "_" + r3['lv2'] + "</td><tr>"
|
|
|
|