Student Scholarship Online System Procedural Design2

Embed Size (px)

Citation preview

  • 8/3/2019 Student Scholarship Online System Procedural Design2

    1/6

    Piya Morprasit 45320744

    Wuttjipan Discharoern 453201015

    Student Scholarship Online System Procedural Design

    Procedural Abstraction (USER)

    1. Login

    1. Fill the username at username textbox.

    2. Fill the password at password textbox.

    3. Click at login button.2. Student scholarship form page

    1. Fill an application form.

    2. Click at Submit button.

    3. Student scholarship registered form page

    1. Click at Save this form as Microsoft Words Document button.

    2. Click at Print button.

    3. Click at Close button.

    Procedural Abstraction (ADMIN)

    1. Login

    1. Click at webmaster in user login page.

    2. Fill the username at username textbox.

    3. Fill the password at password textbox.

    4. Click at login button.

    2. Admin main page

    1. Click at Student profile button

    2. Click at Student ranking button

    3. Click at logout button

    3. Student profile

    1. Click at the name of student.

    2. Click at Delete button.

    3. Click at Back button.4. Student ranking

    1. Click at the name of student.

    2. Click at Delete button.

    3. Click at Back button.

    5. Student Scholarship registered form page

    4. Click at Save this form as Microsoft Words Document button.

    5. Click at Print button.

    6. Click at Close button.

    USER ADMIN

    1.login

    2.student scholarship form page

    3.student scholarship registered form page

    1.login

    2.admin main page

    3.student profile4.student ranking

    5.student Scholarship registered form

    page

  • 8/3/2019 Student Scholarship Online System Procedural Design2

    2/6

    Stepwise Refinement (USER)

    Login

    Fill the username at username textbox.

    Fill the password at password textbox.

    Click at login button.

    Student scholarship form page

    Fill an application form.

    Click at Submit button.

    First, the application will look for the number of student that

    registered and search for username and password from Student

    Scholarship database. Below, this code limit at 60 registered

    students.

    if number of student that registered in the database

  • 8/3/2019 Student Scholarship Online System Procedural Design2

    3/6

    Student Scholarship registered form page

    Click at Save as Microsoft Words Document button.

    Click at Print button.

    Click at Close button.

    //This form show the form that students wrote them

    information in the form. They can save as document

    file and print the page.

    At 1.2

    This will show a sample how the application is calculate the

    scores.

    int sum=0; // sum is summary of scores.

    if grade = 3.0 to 4.0, then

    sum = sum +10;

    else if grade = 2.0 to 2.99, then

    sum = sum + 8;

    else if grade < 2.0, then

    sum = sum + 5;

    else if father = dead, then

    sum = sum + 10;

    else if mother = dead, thensum = sum + 10;

    else if income 4000, then

    sum = sum + 5;

    end if;

    send sum to Student Scholarship database;

    If there is registered student have father died, grade 2.5 andincome are 3300 bath/month, this student will get 36 scores and

    the application will send the scores to database.

    Below, these are important field that the application will take to

    calculate the scores.

    -Grade, Father and mother status, Income, Amount of brother

    and sister, Fathers and mothers age.

    Print the form.

    Save the form to the computer.

    Close the Student Scholarship registerd

    form page.

    Login

    Click at webmaster button.

    Fill the username at username textbox.

  • 8/3/2019 Student Scholarship Online System Procedural Design2

    4/6

    Stepwise Refinement (ADMIN)

    .

    Admin main page

    Click at Student profile button.

    Click at Student ranking button.

    Click at Logout button.

    Student profile

    Click at the name of student.

    Click at Delete button.

    Click at Back button.

    //In this page, the list of student will

    rank by date. Each line show the

    student name (if you click, it will link

    to Student Scholarship registered page.),

    IDnumber, registered date, scores and delete

    checkbox.

    goto webmaster login page.

    The same as 1.1but, it use admin database to find

    username and password and if the application

    found the correct username and password, it will

    goto admin main page;

    goto Student profile page.

    Open Student ranking page.

    Logout and goto Login page.

    goto Student Scholarship registered form page.

    Delete the student out of user database and the

    application will automatically rank a new list of

    student.

    Back to admin main page.

    Student ranking

    Click at the name of student.Click at Delete.

    Click at Back.

  • 8/3/2019 Student Scholarship Online System Procedural Design2

    5/6

    rank by scores. Each line show the

    student name (if you click, it will link

    to Student Scholarship registered page.),

    IDnumber, registered date, scores and delete

    checkbox.

    Student Scholarship registered form page

    Click at Save as Microsoft Words Document button.

    Click at Print button.Click at Close button.

    //This form show the form that students wrote them

    information in the form. They can save as document

    file and print the page.

    goto Student Scholarship registered form page.

    Delete the student out of user database and the

    application will automatically rank a new list ofstudent.

    Back to admin main page.

    Save the form to the computer.

    Print the form.

    Close the Student Scholarship registerd

    form page.

  • 8/3/2019 Student Scholarship Online System Procedural Design2

    6/6