educode_sales 0.9.48 → 0.9.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/images/educode_sales/indexlogo.png +0 -0
- data/app/controllers/educode_sales/idea_recycles_controller.rb +100 -0
- data/app/controllers/educode_sales/ideas_controller.rb +130 -0
- data/app/controllers/educode_sales/logs_controller.rb +21 -0
- data/app/controllers/educode_sales/teacher_follows_controller.rb +82 -2
- data/app/controllers/educode_sales/teachers_controller.rb +18 -3
- data/app/models/educode_sales/common.rb +2 -0
- data/app/models/educode_sales/idea.rb +87 -0
- data/app/models/educode_sales/idea_history.rb +8 -0
- data/app/views/educode_sales/idea_recycles/activities.json.jbuilder +9 -0
- data/app/views/educode_sales/idea_recycles/add_courses.html.erb +133 -0
- data/app/views/educode_sales/idea_recycles/add_event.html.erb +49 -0
- data/app/views/educode_sales/idea_recycles/add_keys.html.erb +334 -0
- data/app/views/educode_sales/idea_recycles/course_list.json.jbuilder +23 -0
- data/app/views/educode_sales/idea_recycles/course_subject.json.jbuilder +10 -0
- data/app/views/educode_sales/idea_recycles/daily_paper.html.erb +68 -0
- data/app/views/educode_sales/idea_recycles/detail.html.erb +144 -0
- data/app/views/educode_sales/idea_recycles/edit.html.erb +193 -0
- data/app/views/educode_sales/idea_recycles/edit_follow_record.html.erb +87 -0
- data/app/views/educode_sales/idea_recycles/history.html.erb +41 -0
- data/app/views/educode_sales/idea_recycles/import.html.erb +41 -0
- data/app/views/educode_sales/idea_recycles/index.html.erb +321 -0
- data/app/views/educode_sales/idea_recycles/index.json.jbuilder +16 -0
- data/app/views/educode_sales/idea_recycles/new.html.erb +204 -0
- data/app/views/educode_sales/idea_recycles/new_follow_record.html.erb +93 -0
- data/app/views/educode_sales/idea_recycles/search_new.html.erb +138 -0
- data/app/views/educode_sales/idea_recycles/show_class.html.erb +107 -0
- data/app/views/educode_sales/idea_recycles/show_follow.html.erb +504 -0
- data/app/views/educode_sales/idea_recycles/show_follow.json.jbuilder +23 -0
- data/app/views/educode_sales/idea_recycles/show_follow_record.html.erb +36 -0
- data/app/views/educode_sales/idea_recycles/unfinish_plans.json.jbuilder +14 -0
- data/app/views/educode_sales/ideas/activities.json.jbuilder +9 -0
- data/app/views/educode_sales/ideas/add_courses.html.erb +133 -0
- data/app/views/educode_sales/ideas/add_event.html.erb +49 -0
- data/app/views/educode_sales/ideas/add_keys.html.erb +334 -0
- data/app/views/educode_sales/ideas/course_list.json.jbuilder +23 -0
- data/app/views/educode_sales/ideas/course_subject.json.jbuilder +10 -0
- data/app/views/educode_sales/ideas/daily_paper.html.erb +68 -0
- data/app/views/educode_sales/ideas/detail.html.erb +144 -0
- data/app/views/educode_sales/ideas/edit.html.erb +182 -0
- data/app/views/educode_sales/ideas/edit_follow_record.html.erb +87 -0
- data/app/views/educode_sales/ideas/history.html.erb +41 -0
- data/app/views/educode_sales/ideas/import.html.erb +41 -0
- data/app/views/educode_sales/ideas/index.html.erb +335 -0
- data/app/views/educode_sales/ideas/index.json.jbuilder +16 -0
- data/app/views/educode_sales/ideas/new.html.erb +182 -0
- data/app/views/educode_sales/ideas/new_follow_record.html.erb +93 -0
- data/app/views/educode_sales/ideas/search_new.html.erb +138 -0
- data/app/views/educode_sales/ideas/show_class.html.erb +107 -0
- data/app/views/educode_sales/ideas/show_follow.html.erb +504 -0
- data/app/views/educode_sales/ideas/show_follow.json.jbuilder +23 -0
- data/app/views/educode_sales/ideas/show_follow_record.html.erb +36 -0
- data/app/views/educode_sales/ideas/unfinish_plans.json.jbuilder +14 -0
- data/app/views/educode_sales/logs/index.html.erb +48 -0
- data/app/views/educode_sales/logs/index.json.jbuilder +16 -0
- data/app/views/educode_sales/staffs/edit.html.erb +0 -1
- data/app/views/educode_sales/teacher_follows/index.json.jbuilder +20 -0
- data/app/views/educode_sales/teachers/_follows.html.erb +256 -0
- data/app/views/educode_sales/teachers/_index.html.erb +677 -0
- data/app/views/educode_sales/teachers/daily_paper.html.erb +22 -22
- data/app/views/educode_sales/teachers/index.html.erb +11 -651
- data/app/views/educode_sales/teachers/index.json.jbuilder +10 -0
- data/app/views/educode_sales/teachers/new.html.erb +9 -3
- data/app/views/educode_sales/teachers/new_follow_record.html.erb +6 -0
- data/app/views/layouts/educode_sales/application.html.erb +40 -8
- data/config/routes.rb +19 -0
- data/db/migrate/20230227061043_create_educode_sales_ideas.rb +28 -0
- data/db/migrate/20230227070206_change_to_educode_sales_ideas.rb +5 -0
- data/db/migrate/20230227125936_add_follow_at_to_teachers.rb +6 -0
- data/db/migrate/20230228063555_create_educode_sales_idea_histories.rb +10 -0
- data/db/migrate/20230302074324_change_manager_for_ideas.rb +6 -0
- data/lib/educode_sales/version.rb +1 -1
- metadata +66 -6
@@ -6,46 +6,46 @@
|
|
6
6
|
<p>一、数据指标</p>
|
7
7
|
<p>1、【教师合作-老客户运营】</p>
|
8
8
|
<p>本月目标<%= @num_1 %>人;</p>
|
9
|
-
<p
|
9
|
+
<p>累计完成**人; </p>
|
10
10
|
<p>今日已完成沟通xx人;</p>
|
11
|
-
<p style="margin-bottom: 30px;"
|
11
|
+
<p style="margin-bottom: 30px;">今日已完成新建课堂**个;</p>
|
12
12
|
<p>2、【市场活动-新客户注册】</p>
|
13
|
-
<p
|
14
|
-
<p
|
15
|
-
<p style="margin-bottom: 30px;"
|
13
|
+
<p>本月目标**人;</p>
|
14
|
+
<p>累计完成**人;</p>
|
15
|
+
<p style="margin-bottom: 30px;">今日已完成转化注册**人;</p>
|
16
16
|
<p>3、课程建设-新型态教材合作】</p>
|
17
|
-
<p
|
18
|
-
<p
|
19
|
-
<p style="margin-bottom: 30px;"
|
17
|
+
<p>本月目标**门课程(教材);</p>
|
18
|
+
<p>累计完成**门课程(教材);</p>
|
19
|
+
<p style="margin-bottom: 30px;">今日已完成挖掘**门课程(教材);</p>
|
20
20
|
<p>二、客户跟进情况</p>
|
21
21
|
<p style="margin-bottom: 30px;">(填写每日重点客户沟通内容,可涵盖总部安排的重要工作事项) </p>
|
22
22
|
<p>三、商机与项目线索</p>
|
23
23
|
<p style="margin-bottom: 30px;">(在运营过程中发现的商机以及小toB非招标项目商机:saas课程、在线考试等)</p>
|
24
|
-
<p
|
25
|
-
<p style="margin-bottom: 30px;"
|
24
|
+
<p>四、需要协助支持事宜</p>
|
25
|
+
<p style="margin-bottom: 30px;">1、需支持运营目标院校**学校,教师注册量**人,活跃用户**人,待运营**人;</p>
|
26
26
|
</div>
|
27
27
|
|
28
28
|
<% text = "\n" %>
|
29
29
|
<% text += "一、数据指标\n" %>
|
30
30
|
<% text += "1、【教师合作-老客户运营】\n" %>
|
31
|
-
<% text += "
|
32
|
-
<% text += "
|
33
|
-
<% text += "
|
34
|
-
<% text += "
|
31
|
+
<% text += "本月目标**人;\n" %>
|
32
|
+
<% text += "累计完成**人;\n" %>
|
33
|
+
<% text += "今日已完成沟通**人;\n" %>
|
34
|
+
<% text += "今日已完成新建课堂**个;\n\n" %>
|
35
35
|
<% text += "2、【市场活动-新客户注册】\n" %>
|
36
|
-
<% text += "
|
37
|
-
<% text += "
|
38
|
-
<% text += "
|
36
|
+
<% text += "本月目标**人\n" %>
|
37
|
+
<% text += "累计完成**人\n" %>
|
38
|
+
<% text += "今日已完成挖掘**门课程(教材)\n\n" %>
|
39
39
|
<% text += "3、课程建设-新型态教材合作】\n" %>
|
40
|
-
<% text += "
|
41
|
-
<% text += "
|
42
|
-
<% text += "
|
40
|
+
<% text += "本月目标**门课程(教材);\n" %>
|
41
|
+
<% text += "累计完成**门课程(教材);\n" %>
|
42
|
+
<% text += "今日已完成挖掘**门课程(教材);\n\n" %>
|
43
43
|
<% text += "二、客户跟进情况\n" %>
|
44
44
|
<% text += "(填写每日重点客户沟通内容,可涵盖总部安排的重要工作事项\n\n" %>
|
45
45
|
<% text += "三、商机与项目线索\n" %>
|
46
46
|
<% text += "(在运营过程中发现的商机以及小toB非招标项目商机:saas课程、在线考试等)\n\n" %>
|
47
|
-
<% text += "
|
48
|
-
<% text += "
|
47
|
+
<% text += "四、需要协助支持事宜\n" %>
|
48
|
+
<% text += "1、需支持运营目标院校**学校,教师注册量**人,活跃用户**人,待运营**人;\n\n" %>
|
49
49
|
<% text += "头歌营销系统 \n"%>
|
50
50
|
<% text += "#{Time.now.to_s}"%>
|
51
51
|
<div id="content" style="display: none;" data-content="生态经理日报-转正后<%=text %>"></div>
|