-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from sugarcrm/issue-65
Fixes #65: Submit online application to Prof M School
- Loading branch information
Showing
54 changed files
with
1,257 additions
and
15 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
## Acceptance Test Plan ## | ||
|
||
This test plan represents high-level acceptance tests for features implemented in the Professor M's School for Gifted | ||
Coders package. These tests are not automated and should be executed manually. | ||
|
||
Before executing these tests, ensure you have done the following: | ||
1. Installed Sugar. | ||
1. Created an Admin user. | ||
1. Installed the Professor M Module Loadable Package. | ||
1. [Installed the Professor M sample data using the Professor M Postman Collection](https://github.com/sugarcrm/school#use-the-sugar-rest-api-to-create-the-professor-m-sample-data). | ||
|
||
| Use case | Test steps | Expected Results | | ||
| --- | --- | ---| | ||
| [Online Applications](OnlineApplications.md) | <ol><li>Navigate to http://{site_url}/<br>custom/online_application_form/ApplyOnline.html.</li><li>Input the following information:<br>**First Name:** Joe<br>**Last Name:** Morwasky<br>**Email Address:** joetheweatherman@example.com<br>**Street Address:** 222 Lightning Lane<br>**City:** Monroe<br>**State:** CT<br>**Zip:** 06468<br>**Country:** USA<br>**High School:** Monroe High<br>**Grade Point Average (GPA):** 3.85<br>**Programming Languages:** PHP, Java<br>**Transcript:** Meteorology A+<br>Math: A-<br>English: B+<br>Agility: A+<br></li><li>Click **Submit**.</li>|<ol><li>A "Thank you!" page is displayed.</li><li>A new Applicant (Lead) record has been created with the following data:<br>**Name:** Joe Morwasky<br>**High School:** Monroe High<br>**Grade Point Average (GPA):** 3.85000000<br>**Programming Languages:** PHP, Java<br>**Transcript:** <br>Meteorology A+<br>Math: A-<br>English: B+<br>Agility: A+<br>**Email Address:** joetheweatherman@example.com<br>**Primary Address:** <br>222 Lightning Lane<br>Monroe, CT 06468<br>USA<br></li><li>The new Applicant (Lead) has a link to the **Online Applications** campaign in the Campaign Log.</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
## Online Applications ## | ||
|
||
Professor M wants to ensure he has a quality pipeline of students for his school. He has decided to allow prospective | ||
students to apply online. | ||
|
||
### Implementation Technique ### | ||
|
||
A [Web to Lead Form](http://support.sugarcrm.com/Knowledge_Base/Campaigns_Target_Lists/Creating_a_Web-to-Lead_Form/) was | ||
created in Sugar and then customized to become the online application for the school. | ||
|
||
### Implementation Details ### | ||
|
||
[ApplyOnline.html](../package/src/custom/online_application_form/ApplyOnline.html) is a | ||
customized Web to Lead Form. This form is the online application that students can complete. When students submit | ||
the form, they are redirected to | ||
[ApplyOnlineSuccess.html](../package/src/custom/online_application_form/ApplyOnlineSuccess.html), a static html file. | ||
|
||
Note that these two files are stored in the | ||
[custom/online_application_form](../package/src/custom/online_application_form) directory for simplicity of deploying | ||
this example. You could host these two files on any server. | ||
|
||
When the form is submitted, a new Applicant (Lead) record is automatically created in the system. | ||
|
||
### Extensions ### | ||
|
||
| Module | Extension | Name | Description | | ||
| --- | --- | ---| ---| | ||
| Leads | Vardefs | `highschool_c` | Varchar that displays the applicant's high school. | | ||
| Leads | Vardefs | `transcript_c` | Text field that displays the applicant's transcript. | | ||
| Leads | Vardefs | `gpa_c` | Decimal field that displays the applicant's grade point average (GPA). | | ||
| Leads | Vardefs | `programminglanguages_c` | Multienum field that displays the applicant's programming languages based on the options stored in the `languages` drop down list.| | ||
|
||
|
||
### View Customizations ### | ||
| Module | View | Description | | ||
| --- | --- | ---| | ||
| Leads | Record | A new panel (Application) has been added to the record view below the Business Card. The panel displays the new custom fields for the application. | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/ar_SA.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/bg_BG.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/ca_ES.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/cs_CZ.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/da_DK.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/de_DE.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/el_EL.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/en_UK.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/en_us.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/es_ES.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/es_LA.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/et_EE.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/fi_FI.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/fr_FR.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/he_IL.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/hr_HR.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
11 changes: 11 additions & 0 deletions
11
...e/src/custom/Extension/application/Ext/Language/hu_HU.sugar_languages.leadscustomized.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
$app_list_strings['languages'] = array ( | ||
'php' => 'PHP', | ||
'javascript' => 'JavaScript', | ||
'net' => '.NET', | ||
'java' => 'Java', | ||
'c' => 'C/C++', | ||
'go' => 'Go', | ||
'python' => 'Python', | ||
'ruby' => 'Ruby', | ||
); |
Oops, something went wrong.