Stock Management Assignment
Order ID 53563633773 Type Essay Writer Level Masters Style APA Sources/References 4 Perfect Number of Pages to Order 5-10 Pages Description/Paper Instructions
Stock Management Assignment
Assignment 1
Stock Management
The goal here is to write some software that would assist a retail store manage their stock levels. The assignment will get progressively more complex as it proceeds – the early stages will be reasonable straight forward and will be sufficient for a passing grade, and the more advanced stages are for those who wish to go further and target a higher overall result.
General Requirements
All assignments should be written in Python 3 and should run in IDLE. They can be written on any type of computer, but they should be able to be executed in the computer pool.
The highest marks will be for working code. However, in cases where there are problems, you will be assigned marks for how you approached the task. It is also expected that you will provide comments in the programs to explain how it works, and these comments will account for up to 10% of the overall grade.
In each case example output is given. You should try and make your output and process match the example as closely as possible.
Stage 1: Data Entry
Write a program which requests that requests a product name and a stock number. Store that data in a List or a Dictionary. After the user has entered data, request that the user enters Y or N to continue. If they enter N, print the list of products and stock numbers to the screen. If they enter Y, repeat the first step.
Your program should produce the following result:
************************* Stock Manager ************************* Product Name: Widgets Stock Level: 14 Widgets has been entered with a stock of 14 products. Do you wish to enter another record? (Y/N) Y Product Name: Fidgets Stock Level: 22 Fidgets has been entered with a stock of 22 products. Do you wish to enter another record? (Y/N) N ————————- Product Stock ————————- Widgets 14 Fidgets 22 ————————-
Stage 2: Validation and Totals
Building on stage 1, you now need to ensure that the program checks for valid entries in each case, and converts the text to the appropriate format.
You need to:
- Ensure that a stock number and product name were entered, If any of these were not entered, do not record that item and go straight to asking if they wish to continue.
- Ensure that the user enters either “Y”, “y”, “N” or “n” when asked if they wish to continue. Continue to ask until they enter a valid result.
- Ensure that the stock number is a number
- Output the total number of products held in stock
Sample output:
************************* Stock Manager ************************* Product Name: Widgets Stock Level: 12 Widgets has been entered with a stock of 12 products. Do you wish to enter another record? (Y/N) Do you wish to enter another record? (Y/N) d Do you wish to enter another record? (Y/N) y Product Name: Do you wish to enter another record? (Y/N) Y Product Name: Fidgets Stock Level: Twenty Do you wish to enter another record? (Y/N) Y Product Name: Fidgets Stock Level: 20 Fidgets has been entered with a stock of 20 products. Do you wish to enter another record? (Y/N) n ————————- Product Stock ————————- Widgets 12 Fidgets 20 ————————- Total 32 ————————-
Stage 3: Product List and Menu
This involves three separate jobs:
- Create a menu with multiple options
- Add products separately and allow the user to select the product.
- Allow multiple stock numbers to be entered for each product and record the total
Sample Output
************************* Stock Manager ************************* ————————- Menu ————————- (A)dd a product (I)ncrease stock level (L)ist products and stock (Q)uit ————————- Your choice: A ————————- Product name: Widgets Widgets was added to the list of products. ————————- Menu ————————- (A)dd a product (I)ncrease stock level (L)ist products and stock (Q)uit ————————- Your choice: ————————- Menu ————————- (A)dd a product (I)ncrease stock level (L)ist products and stock (Q)uit ————————- Your choice: a ————————- Product name: Fidgets Fidgets was added to the list of products. ————————- Menu ————————- (A)dd a product (I)ncrease stock level (L)ist products and stock (Q)uit ————————- Your choice: i ————————- Enter a product from the following list: Widgets Fidgets Product name: Trees *** Error: Product not listed ————————- Menu ————————- (A)dd a product (I)ncrease stock level (L)ist products and stock (Q)uit ————————- Your choice: i ————————- Enter a product from the following list: Widgets Fidgets Product name: Widgets Stock Level: 12 Widgets has has been updated to a stock of 12 products. ————————- Menu ————————- (A)dd a product (I)ncrease stock level (L)ist products and stock (Q)uit ————————- Your choice: i ————————- Enter a product from the following list: Widgets Fidgets Product name: Widgets Stock Level: 4 Widgets has has been updated to a stock of 16 products. ————————- Menu ————————- (A)dd a product (I)ncrease stock level (L)ist products and stock (Q)uit ————————- Your choice: i ————————- Enter a product from the following list: Widgets Fidgets Product name: Fidgets Stock Level: *** Error: Incorrect value entered ————————- Menu ————————- (A)dd a product (I)ncrease stock level (L)ist products and stock (Q)uit ————————- Your choice: i ————————- Enter a product from the following list: Widgets Fidgets Product name: Fidgets Stock Level: 2 Fidgets has has been updated to a stock of 2 products. ————————- Menu ————————- (A)dd a product (I)ncrease stock level (L)ist products and stock (Q)uit ————————- Your choice: l ————————- Product Stock ————————- Widgets 16 Fidgets 2 ————————- Total 18 ————————- ————————- Menu ————————- (A)dd a product (I)ncrease stock level (L)ist products and stock (Q)uit ————————- Your choice: q Goodbye
Stage 4: Importing, Exporting and Reporting
In the final stage we introduce the ability to load product lists, export stock levels, and compare stock levels with expected stock levels to generate a report. You will be provided with a sample file for stock and a sample file to compare against.
This will require additional research into Python
Now that things are getting more complex, you are expected to use functions to manage these tasks in your program.
Sample output:
************************* Stock Manager ************************* ————————- Menu ————————- (A)dd a product (L)oad product list (I)ncrease stock level (R)eport products and stock (X)port products and stock (C)ompare stock levels (Q)uit ————————- Your choice: A ————————- Product name: Widgets Widgets was added to the list of products. ————————- Menu ————————- (A)dd a product (L)oad product list (I)ncrease stock level (R)eport products and stock (X)port products and stock (C)ompare stock levels (Q)uit ————————- Your choice: L ————————- File to load: products.txt 3 records loaded ————————- Menu ————————- (A)dd a product (L)oad product list (I)ncrease stock level (R)eport products and stock (X)port products and stock (C)ompare stock levels (Q)uit ————————- Your choice: i ————————- Enter a product from the following list: Didgets Lidgets Hidgets Widgets Fidgets Product name: Didgets Stock Level: 5 Didgets has been updated to a stock of 5 products ————————- Menu ————————- (A)dd a product (L)oad product list (I)ncrease stock level (R)eport products and stock (X)port products and stock (C)ompare stock levels (Q)uit ————————- Your choice: i ————————- Enter a product from the following list: Didgets Lidgets Hidgets Widgets Fidgets Product name: Widgets Stock Level: 12 Widgets has has been updated to a stock of 12 products. ————————- Menu ————————- (A)dd a product (L)oad product list (I)ncrease stock level (R)eport products and stock (X)port products and stock (C)ompare stock levels (Q)uit ————————- Your choice: i ————————- Enter a product from the following list: Didgets Lidgets Hidgets Widgets Fidgets Product name: Fidgets Stock Level: 2 Fidgets has has been updated to a stock of 2 products. ————————- Menu ————————- (A)dd a product (L)oad product list (I)ncrease stock level (R)eport products and stock (X)port products and stock (C)ompare stock levels (Q)uit ————————- Your choice: R ————————- Product Stock ————————- Didgets 5 Lidgets 0 Hidgets 0 Widgets 16 Fidgets 2 ————————- Total 23 ————————- ————————- Menu ————————- (A)dd a product (L)oad product list (I)ncrease stock level (R)eport products and stock (X)port products and stock (C)ompare stock levels (Q)uit ————————- Your choice: X Filename: records.csv Data exported as records.csv ————————- Menu ————————- (A)dd a product (L)oad product list (I)ncrease stock level (R)eport products and stock (X)port products and stock (C)ompare stock levels (Q)uit ————————- Your choice: C Filename: Oldrecords.csv —————————————- Product Stock Old Change —————————————- Didgets 5 5 0 Lidgets 0 2 -2 Hidgets 0 0 0 Widgets 16 12 4 Fidgets 2 3 -1 —————————————- Total 23 22 1 —————————————- ————————- Menu ————————- (A)dd a product (L)oad product list (I)ncrease stock level (R)eport products and stock (X)port products and stock (C)ompare stock levels (Q)uit ————————- Your choice: q Goodbye
RUBRIC
QUALITY OF RESPONSE NO RESPONSE POOR / UNSATISFACTORY SATISFACTORY GOOD EXCELLENT Content (worth a maximum of 50% of the total points) Zero points: Student failed to submit the final paper. 20 points out of 50: The essay illustrates poor understanding of the relevant material by failing to address or incorrectly addressing the relevant content; failing to identify or inaccurately explaining/defining key concepts/ideas; ignoring or incorrectly explaining key points/claims and the reasoning behind them; and/or incorrectly or inappropriately using terminology; and elements of the response are lacking. 30 points out of 50: The essay illustrates a rudimentary understanding of the relevant material by mentioning but not full explaining the relevant content; identifying some of the key concepts/ideas though failing to fully or accurately explain many of them; using terminology, though sometimes inaccurately or inappropriately; and/or incorporating some key claims/points but failing to explain the reasoning behind them or doing so inaccurately. Elements of the required response may also be lacking. 40 points out of 50: The essay illustrates solid understanding of the relevant material by correctly addressing most of the relevant content; identifying and explaining most of the key concepts/ideas; using correct terminology; explaining the reasoning behind most of the key points/claims; and/or where necessary or useful, substantiating some points with accurate examples. The answer is complete. 50 points: The essay illustrates exemplary understanding of the relevant material by thoroughly and correctly addressing the relevant content; identifying and explaining all of the key concepts/ideas; using correct terminology explaining the reasoning behind key points/claims and substantiating, as necessary/useful, points with several accurate and illuminating examples. No aspects of the required answer are missing. Use of Sources (worth a maximum of 20% of the total points). Zero points: Student failed to include citations and/or references. Or the student failed to submit a final paper. 5 out 20 points: Sources are seldom cited to support statements and/or format of citations are not recognizable as APA 6th Edition format. There are major errors in the formation of the references and citations. And/or there is a major reliance on highly questionable. The Student fails to provide an adequate synthesis of research collected for the paper. 10 out 20 points: References to scholarly sources are occasionally given; many statements seem unsubstantiated. Frequent errors in APA 6th Edition format, leaving the reader confused about the source of the information. There are significant errors of the formation in the references and citations. And/or there is a significant use of highly questionable sources. 15 out 20 points: Credible Scholarly sources are used effectively support claims and are, for the most part, clear and fairly represented. APA 6th Edition is used with only a few minor errors. There are minor errors in reference and/or citations. And/or there is some use of questionable sources. 20 points: Credible scholarly sources are used to give compelling evidence to support claims and are clearly and fairly represented. APA 6th Edition format is used accurately and consistently. The student uses above the maximum required references in the development of the assignment. Grammar (worth maximum of 20% of total points) Zero points: Student failed to submit the final paper. 5 points out of 20: The paper does not communicate ideas/points clearly due to inappropriate use of terminology and vague language; thoughts and sentences are disjointed or incomprehensible; organization lacking; and/or numerous grammatical, spelling/punctuation errors 10 points out 20: The paper is often unclear and difficult to follow due to some inappropriate terminology and/or vague language; ideas may be fragmented, wandering and/or repetitive; poor organization; and/or some grammatical, spelling, punctuation errors 15 points out of 20: The paper is mostly clear as a result of appropriate use of terminology and minimal vagueness; no tangents and no repetition; fairly good organization; almost perfect grammar, spelling, punctuation, and word usage. 20 points: The paper is clear, concise, and a pleasure to read as a result of appropriate and precise use of terminology; total coherence of thoughts and presentation and logical organization; and the essay is error free. Structure of the Paper (worth 10% of total points) Zero points: Student failed to submit the final paper. 3 points out of 10: Student needs to develop better formatting skills. The paper omits significant structural elements required for and APA 6th edition paper. Formatting of the paper has major flaws. The paper does not conform to APA 6th edition requirements whatsoever. 5 points out of 10: Appearance of final paper demonstrates the student’s limited ability to format the paper. There are significant errors in formatting and/or the total omission of major components of an APA 6th edition paper. They can include the omission of the cover page, abstract, and page numbers. Additionally the page has major formatting issues with spacing or paragraph formation. Font size might not conform to size requirements. The student also significantly writes too large or too short of and paper 7 points out of 10: Research paper presents an above-average use of formatting skills. The paper has slight errors within the paper. This can include small errors or omissions with the cover page, abstract, page number, and headers. There could be also slight formatting issues with the document spacing or the font Additionally the paper might slightly exceed or undershoot the specific number of required written pages for the assignment. 10 points: Student provides a high-caliber, formatted paper. This includes an APA 6th edition cover page, abstract, page number, headers and is double spaced in 12’ Times Roman Font. Additionally, the paper conforms to the specific number of required written pages and neither goes over or under the specified length of the paper.
GET THIS PROJECT NOW BY CLICKING ON THIS LINK TO PLACE THE ORDER
CLICK ON THE LINK HERE: https://essaybasket.com/orders/ordernow
Also, you can place the order at www.collegepaper.us/orders/ordernow / www.phdwriters.com/orders/ordernow
Do You Have Any Other Essay/Assignment/Class Project/Homework Related to this? Click Here Now [CLICK ME] and Have It Done by Our PhD Qualified Writers!!
Tired of getting an average grade in all your school assignments, projects, essays, and homework? Try us today for all your academic schoolwork needs. We are among the most trusted and recognized professional writing services in the market.
We provide unique, original and plagiarism-free high quality academic, homework, assignments and essay submissions for all our clients. At our company, we capitalize on producing A+ Grades for all our clients and also ensure that you have smooth academic progress in all your school term and semesters.
High-quality academic submissions, A 100% plagiarism-free submission, Meet even the most urgent deadlines, Provide our services to you at the most competitive rates in the market, Give you free revisions until you meet your desired grades and Provide you with 24/7 customer support service via calls or live chats.