0% found this document useful (0 votes)
26 views11 pages

Aniket

The document describes a garment store management system project. It includes an introduction describing the goals of the project, which are to automate an existing manual system and make data storage and access easier. It then discusses literature reviewed for the project and provides an action plan and timeline. The actual methodology used, including algorithms, coding, and resources are also outlined. Sample output from the system is provided.

Uploaded by

GAMING PLUS TECH
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views11 pages

Aniket

The document describes a garment store management system project. It includes an introduction describing the goals of the project, which are to automate an existing manual system and make data storage and access easier. It then discusses literature reviewed for the project and provides an action plan and timeline. The actual methodology used, including algorithms, coding, and resources are also outlined. Sample output from the system is provided.

Uploaded by

GAMING PLUS TECH
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

DR.D.Y.PATIL.POLYTECHNIC.

KOLHAPUR

1. Aim: Garment Store Management System

2. INTRODUCTION
The purpose of the Garmentes store management system is to use the existing manual
systems with the help of computer equipment and complete computer software to meet
their expectations that their valuable data/information is archived for a longer period of
time with easy access and manipulation. The necessary software and hardware are readily
available and easy to use.

The Garmenting store management system described above can result in an error free,
safe, reliable and fast management system. This can help the user focus on other activities
rather than record keeping. Therefore, the system will help the organization to make
better use of their resources. The organization can maintain IT records without redundant
entries.

This means that you don’t have to be distracted by irrelevant information and still reach
the top. The goal is to automate their existing manual system with computer equipment
and full computer software to meet their needs, allowing them to store valuable
data/information for a longer period of time with easy access and manipulation. The
project describes how to manage to achieve good performance and better customer
service.

The “Garment store Management System” was developed to overcome the problems that
prevail in the practical manual system. This software is supported to eliminate and, in
some cases, reduce the difficulties encountered by this legacy system. Furthermore, this
system is designed for the specific business needs to be implemented.

Smooth and efficient operation. The application is minimized to avoid data entry errors. It
also provides an error message if invalid data is entered. No formal knowledge is required
for the use of this system by the user. So all of this proves that it is easy to use. The
Garmenting store management system described above can result in an error free, safe,
reliable and fast management system. It can help you focus on other tasks instead of
focusing on keeping records. Big or small, every business faces challenges and manages
information on products, apparel, businesses, payments, and inventory.

Each Garmenting store management system has different Garmenting requirements;


that’s how we design unique employee management systems, tailored to your
management needs. This is intended to support strategic planning and help ensure your
organization is equipped with the right information and details for your future goals. Plus,
for busy executives who are always on the go, our systems are equipped with remote
access capabilities so you can manage your workforce anytime, anywhere. This proposed
system ultimately allows you to better manage the resources and time of an organization.

1
DR.D.Y.PATIL.POLYTECHNIC.KOLHAPUR

3. LITERATURE REVIEW :

1. Garmentes Store Management System

It can help you to collect perfect management in detail. The collection will be clear, meaningful,
and simple in no time. It will help a person to fully and clearly see the direction of the passing
year. It also helps with all the ongoing work related to the Garmenting store management system.
In addition, collection costs will be reduced, and administration and the collection process will run
smoothly.

2. GARMENTING MANAGEMENT SYSTEM.pptx

Garmenting management system is a project that allows the user to view all Garmenting items,
add items, remove items, find items and update their details. The whole concept is designed via
java language. We can add new items that are bought by the customers, we can delete any particular item
and we can search for any item. We can view all the databases that we have stored in the file.

3. Garment Shop Management Documentation) | PDF

Apparel design software helps fashion designers and Garmenting manufacturers design
Garmenting or Garmenting patterns. These solutions provide designers with tools to create
initial design drawings, product specifications, and even individual pattern pieces. Designs
created by the design team can be shared with team members or other departments and go
through multiple rounds of approval until a final design is reached and ready for
manufacturing. Apparel design software may contain similar features to drawing software,
vector graphics software, and general-purpose CAD software to create 2D designs and 3D

2
DR.D.Y.PATIL.POLYTECHNIC.KOLHAPUR

4.ACTION PLAN:

Sr.N0 Details of Activity Plan start date Plan end date

1. Searching topic for Micro-Project 15-01-2024 25-01-2024

2. Collect information from internet 30-01-2024 10-02-2024

Arrange all information in MS


3. word
20-02-2024 25-02-2024

4. Prepare algorithm and flowchart 27-02-2024 01-03-2024

5. Write Source code 05-03-2024 08-03-2024

6. Prepare Report 12-03-2024 15-03-2024

7. Print Report 20-03-2024 23-03-2024

3
DR.D.Y.PATIL.POLYTECHNIC.KOLHAPUR

5. COURSE OUTCOME :

 Develop program using Object oriented in java


 Apply concept of inheritance foe code reusability
 Develop a program using multithreading

6. ACUTUAL METHODOLOGY USED :

a. Working

Garmenting store management system is specially designed for the purpose of adding The system
elaborates the basic concept for storing and generating item’s detail. In this system, staff can sign
up as a system admin, He/she can have full access to the system for maintaining daily records. The
whole project is language and different variables and strings have been used for the development
of this project. It’s easy to operate and understand by users. There is no any error and warning
contents in the project. The design is so simple that user should not find it difficult to use and
navigate.

b.ALGORITHM:

4
DR.D.Y.PATIL.POLYTECHNIC.KOLHAPUR

5
DR.D.Y.PATIL.POLYTECHNIC.KOLHAPUR

d. CODING :
import java.util.Scanner ; class a

String name;

String mob;

String date;

Scanner myObj=new Scanner(System.in); void get()

System.out.print ("Enter a name: ");

Name=myObj.nextLine();

System.out.print ("Enter a number: "); mob=myObj.nextLine();

System.out.print("Enter a today's date: "); date=myObj.nextLine();

} void out()

System.out.print("date is: "+date);

System.out.print(" name: "+name);

System.out.print("number: "+mob);

} } class b extends a

int i;

void get1()

System.out.print("Enter how many T-shirts is bought: "); i=myObj.nextInt();

} } class c extends b

6
DR.D.Y.PATIL.POLYTECHNIC.KOLHAPUR

int j;

void get3()

System.out.print("\nEnter how many pants you bought: "); j=myObj.nextInt();

} } class d extends c

{ void out2()

{ int tol=i*200+j*200;

System.out.print("\t\t| "+i+" | "+j+" |\t"+tol+" |\n");

System.out.print("\t\t-------------------------------");

System.out.print("\n\n\t\tDATE= "+date+" Owner's Name = CHIMPANJI\n"+"\n\t\tBILL TO= "+name+"


MOBILE NUMBER = 1738636384 ");

System.out.print("\n\n\t\t\t ----THANK YOU----");

class Shop

{ public static void main(String args[])

{ d d1=new d();

int ch;

Scanner m =new Scanner(System.in); while(true)

System.out.print("\n1.Enter Details\n2.Enter T-Shirt\n3.Enter Pants\n4.Display \n5.exit\n");

System.out.print("\nEnter a no: "); ch=m.nextInt(); switch(ch)

{ case 1: { d1.get();

break; } case 2: {

7
DR.D.Y.PATIL.POLYTECHNIC.KOLHAPUR

d1.get1(); break; }

case 3: d1.get3();

break;

case 4:

System.out.print("\n\n\t\t\t#SELL SELL SELL#\n");

System.out.print("\n\t\t Any 1 T-SHIRT And 1 PANTS Rs.200\n");

System.out.print("\n\t\t\tJERRY FASHION\n\n");

System.out.print("\t\t ---Paris City Store----\n");

System.out.print("\n\t\t-------------------------------");

System.out.print("\n\t\t| T-SHIRTS | PANTS |\tTOTAL | \n");

System.out.print("\t\t-------------------------------\n"); d1.out2(); break; }

case 5: { return; } default:

System.out.println("invalid choice:............."); break;

8
DR.D.Y.PATIL.POLYTECHNIC.KOLHAPUR

7. ACTUAL RESOURCES USED :

Sr.No Name of Resource Specification

1. Computer System with broad Intel Pentium 2.00 GB


Specification 64-bit 0.5

2. Software Windows 7 ultimate

3. Any other resource used Notepad

9
DR.D.Y.PATIL.POLYTECHNIC.KOLHAPUR

8. RESULT OUTPUT:

10
DR.D.Y.PATIL.POLYTECHNIC.KOLHAPUR

9.CONCLUSION :

Each Garmenting store management system has different Garmenting requirements; that’s
how we design unique employee management systems, tailored to your management needs.
This is intended to support strategic planning and help ensure your organization is equipped
with the right information and details for your future goals. Plus, for busy executives who are
always on the go, our systems are equipped with remote access capabilities so you can
manage your workforce anytime, anywhere. This proposed system ultimately allows you to
better manage the resources and time of an organization.

10.FUTURE SCOPE :
The purpose of the Garmentes store management system is to use the existing manual
systems with the help of computer equipment and complete computer software to meet their
expectations that their valuable data/information is archived for a longer period of time with
easy access and manipulation.

11.REFRENCES :
 Garmentes Store Management System

 GARMENTING MANAGEMENT SYSTEM.pptx

 Garmenting Store and Management System

11

You might also like