0% found this document useful (0 votes)
55 views

Assignment Question

The document describes a project to develop a purchase order management system for a wholesale company. It outlines requirements like user registration, item and supplier entry, sales tracking, purchase requisitions, purchase orders, and report generation. Object-oriented design and documentation of the implementation are required.

Uploaded by

hema rooban
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
55 views

Assignment Question

The document describes a project to develop a purchase order management system for a wholesale company. It outlines requirements like user registration, item and supplier entry, sales tracking, purchase requisitions, purchase orders, and report generation. Object-oriented design and documentation of the implementation are required.

Uploaded by

hema rooban
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

CT038-3-2-OODJ – Object Oriented Development with Java Page 1 of 5

1.0 COURSEWORK TITLE

PURCHASE ORDER MANAGEMENT SYSTEM (POM)

2.0 THE COURSEWORK OVERVIEW

SIGMA SDN BHD (SSB) is one of Johor Bahru’s emerging wholesalers engaged in selling
of everyday groceries, fresh produce and fresh foods to various retailers of Malaysia. As the
business grows, they need to automate the process of Purchase Orders to maintain the
purchases more effectively. The actual flow starts from Purchase Requisition (PR) by Sales
Managers (SM). A PR typically contains the item-code, quantity needed and date by when it
is required to TSB. After reviving the PR the Purchase Manager (PM) generates a Purchase
Order (PO). A PO is an authorised document used by organisations for placing orders with
their suppliers for procurement of goods. Develop an application in Java applying the OOP
techniques you learned to achieve the following functionalities:

• Login access
• User Registration
• Item Entry
• Supplier Entry
• Daily Item-wise Sales Entry
• Create a Purchase Requisition (PR)
• Display Requisition
• Generate Purchase Order (PO)
• List of Purchaser Orders

In addition a supporting document is needed to reflect the design of the implementation


codes and the implementation details that utilises the Object-oriented programming
concepts.

3.0 OBJECTIVES OF THIS COURSEWORK

Develop the practical ability to describe, justify, and implement an Object-oriented system.

4.0 TYPE
Group Assignment

Level 2 Asia Pacific University of Technology and Innovation 2023


CT038-3-2-OODJ – Object Oriented Development with Java Page 2 of 5

5.0 COURSEWORK DESCRIPTION


The developed system should be menu driven with options for the functionalities listed in
section 2.0. Menu should be repeated until the user opts to exit the system. You as an
Object-oriented programming student need to identify the relationship among the entities
and also develop the necessary methods needed to fulfil the requirements of the expected
systems.

Login access:

You program should have three types of access rights such as Sales Manager, Purchase
Manager and Administrator.
Sales Manager should have access to the following functionalities:
• Item Entry (Add/Save/Delete/Edit)
• Supplier Entry (Add/Save/Delete/Edit)
• Daily Item-wise Sales Entry (Add/Save/Delete/Edit)
• Create a Purchase Requisition (Add/Save/Delete/Edit)
• Display Requisition (View)
• List of Purchaser Orders(View)

Purchase Manager (PM) and should be allowed to view and access the following
functionalities only:

• List of Items (View)


• List of Suppliers (View)
• Display Requisition (View)
• Generate Purchase Order (Add/Save/Delete/Edit)
• List of Purchaser Orders (View)

Administrator should have the rights to access and update all the application functionalities
and data. They are the authorized personnel to create the above mentioned three types of
users involved in the POM system.

User Registration:

Your program should allow the Administrators to create and register the details of users
involved in the system. Validations are necessary and the system should maintain the
uniqueness by having individual identification number for every user. Users should be of
type SM or PM or Admin. User details need to be captured in a text file.

Level 2 Asia Pacific University of Technology and Innovation 2023


CT038-3-2-OODJ – Object Oriented Development with Java Page 3 of 5

Item Entry:

Your program should allow the authorized users to enter the item details like item code,
item name and the supplier id who supplies the item to TSB. Identify the various attributes
needed for describing the item entity. No duplication of items allowed. Added items should
be saved in a text file. All the items should be supplied by the registered suppliers of your
POM system.

Supplier Entry:

Your program should allow the authorized users to enter the supplier details like supplier
code, supplier name and the item id supplied by the supplier. Identify the various attributes
needed for describing the supplier entity. No duplication of supplier allowed. Added
suppliers should be saved in a text file.

Daily Item-wise Sales Entry

This option allows the users with access to enter the total sales of every item daily. This sale
need be updated to the stock of the item accordingly.

Create a PR:

Your program should allow the users with access to place a purchase requisition (PR). PR
should be generated for the items to be purchased to the TSB from the respective suppliers.
PR typically contains the item code, quantity and the date by when it is required. It also
should fetch the respective supplier code of the item. A unique identifier is required to track
the PR and also the SM, who raised the PR need to be captured and saved in text file.

Display a PR:

Your program should allow the authorized users to view all the PRs raised by all sales
managers.

Generate PO

Purchase Orders (PO) need to be generated only by Purchase Managers (PM). They are the
only authorized users who can raise the PO. POs are basically approved Purchase
Requisition raised by the Sales Managers (SM). A unique identifier is required to track the
PO and also the PM, who raised the PO need to be captured and saved in text files

Level 2 Asia Pacific University of Technology and Innovation 2023


CT038-3-2-OODJ – Object Oriented Development with Java Page 4 of 5

List of Purchase Orders:

Your program should allow the users with access to view the report of purchase orders
raised by the Purchase Mangers (PM).

6.0 GENERAL REQUIREMENTS


The program submitted should compile and be executed without errors
Validation should be done for each entry from the users in order to avoid logical errors. The
implementation code must highlight the use of Object-oriented programming concepts as
required by the solution.

7.0 DELIVERABLES:

▪ Documents delivered softcopy form.


▪ Submission deadline: 3rd September 2023 before 11:59pm

7.1 DOCUMENTS: COURSEWORK REPORT


✓ As part of the assessment, you must submit the project report in printed and
softcopy form, which should have the following format:
A) Cover Page:
All reports must be prepared with a front cover. A protective transparent
plastic sheet can be placed in front of the report to protect the front cover.
The front cover should be presented with the following details:
 Module
 Coursework Title
 Intake
 Student name and id
 Date Assigned (the date the report was handed out).
 Date Completed (the date the report is due to be handed in).

B) Contents:
 Description and justification of Object-oriented programming
concepts incorporated into the solution
 Design solution
 Screenshots of output of the program with appropriate explanations

Level 2 Asia Pacific University of Technology and Innovation 2023


CT038-3-2-OODJ – Object Oriented Development with Java Page 5 of 5

C) Limitation and Conclusion

D) References

8.0 ASSIGNMENT ASSESSMENT CRITERIA


The assignment assessment consists of three components: Program Solution & Design
(60%), Documentation (20%) and Presentation (20%). Details of the division for each
component are as follows:

Program Solution and Design Documentation (20%)


(60%)
Criteria Marks Criteria Marks
Allocated Allocated
Program Solution : 40% Structure of the report and
Performance result of all references
operations and design as per Content:
requirements • Description and justification of
Program Design: 20% the object-oriented concepts 20%
Appropriate design and the incorporate
implementation of codes • Program out screenshots
illustrating the object Project description, limitation and
oriented programming conclusion
concepts incorporated
Presentation (20%)
Criteria Marks
Allocated
• Ability to answer questions addressed by the lecturer pertaining to the 20%
work done and presented

9.0 DEVELOPMENT TOOLS


The program must be written in Java language and you can use any Java development IDE
as a tool but the back-end data store must be .txt files.

10.0 ACADEMIC INTEGRITY


▪ You are expected to maintain the utmost level of academic integrity during the duration
of the course.
▪ Plagiarism is a serious offence and will be dealt with according to APU and
Staffordshire University regulations on plagiarism.

Level 2 Asia Pacific University of Technology and Innovation 2023

You might also like