国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

COMP 636代做、代寫SQL編程設計

時間:2024-02-11  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



COMP 636: Web App Assessment
Milestone submission due: 5pm Wednesday 24 January 2024
Final submission due: 5pm Wednesday 14 February 2024
Worth: 50% of COMP636 grade
Submit via Akoraka | Learn, with files set up and available on GitHub and pythonanywhere.
Introduction
Selwyn Panel Beaters have decided that they want to upgrade their internal system from the textbased system to a web-based system. Your task is to develop a small Web Application to help them
manage customers, jobs, services, parts and billing. You will also write a report.
In the existing system, Selwyn Panel Beaters record multiple items (services, parts) by entering them
multiple times. In the web system they want to be able to enter a single job for a vehicle and then
record the quantities of services and parts within that job.
There are two different types of users who will use the system. The first is a technician who can
select a customer job and add services and parts to that job.
The second is an office administrator who can book (create) jobs, add customers, services and parts,
bill customers and enter payments.
Download the Web Application Project Files from the Assessment block on the Learn page. These will
get you started, including for the Milestone. You will add more routes and templates as you develop
your app.
Important
This is an individual assessment. You may not collaborate or confer with others. You
may help others by verbally explaining concepts and making suggestions in general
terms, but without directly showing or sharing your own code. You must develop the
logical structure and the detail of your code on your own, even if you are working
alongside others. Code that is copied or shares a similar logic to others will receive zero
marks for both parties. The University policy on Academic Integrity can be found here.
Functional Requirements
There will be two interfaces:
• An interface for the technicians as the main users of the system. This allows technicians to
update customer jobs with parts and services.
• An Administrator interface for admin staff to use to update, edit and add data. This interface
requires administrators to access the system via a link from the menu system (do not add
password functionality – security would be added to a full system to restrict access, but will lose
marks if added for this assessment). The Admin link will provide a gateway to the Admin
features. The Admin features must not be visible in any of the technician interface (apart from
the Admin link in the menu).
2
Technician Interface on the default / route
• Current Jobs: Change the currentjobs page to display the customer’s name, rather than the ID
only. Modify or tidy the template as appropriate. This page only shows jobs that are not
completed.
• Job: A job is selected (via a link) from the currentjobs page. On this page services and parts can
be added to a job. The technician can select a part or service from existing lists (which are
maintained by the Admins). The technician enters the number of units of each part or service
used (e.g., 2 headlights or 1 respray). This page should also show the services and parts that
have already been used in the job. A job can also be marked as completed.
After a job is marked complete, the job total cost is calculated. Once a job is marked complete it
cannot be modified.
Administrator Interface
• Customer list: Display a list of customers, ordered by surname, then by first name.
• Customer search: Search for customers by first name or surname, allowing for partial text
matches. Order the results appropriately.
• Add customer: Add a new customer to the system (surname, phone number and email address
are required fields)
• Add Service: Add a new service to the system (name and cost are required)
• Add Part: Add a new part to the system (name and cost are required)
• Schedule Job: Select a customer and a date for the job to be booked for. The date must be
today or in the future. Only the date is required – a time on that day is not required.
• Unpaid bills & Pay Bills: Shows all unpaid bills in date then customer order, which can be
filtered by customer. A bill can then be selected so that it can be marked as paid by the Admin.
Bills that are paid should not show on the list.
• Billing History & Overdue Bills: A report showing all bills that, with bills that are unpaid more
than 14 days after the date of the job highlighted in red. The display should include the
customer details, the date of the job, the total cost of the job. Bills should be grouped by
customer, so that the customer details are only shown once above the list of bills for that
customer. Customers should be shown in last name, first name order. Bills should be shown
with the oldest bill first.
3
Report
Your report must be created using GitHub Markdown format and saved in the README.md file of
your GitHub repository. It does not need to be a formal report – a tidy document using the following
headings will be sufficient. Write a brief project report that includes:
• Web application structure:
o Outline the structure of your solution (routes & functions, and templates). This should be
brief and can be text-based or a diagram (as an image).
o It must indicate how your routes, functions and templates relate to each other, as well as
what data is being passed between them.
o Do not just give a list of your routes. Do not include all of your code. This relates to the
code, not the user experience – so do not describe the interface, user experience or HTML
layout.
• Design decisions:
o Discuss the design decisions you made when designing and developing your app: what
design options you weighed up, why you designed your app the way that you did, your
decisions about the routes, templates, navigation, broad layout, etc., that you made.
o For example, when the edit button is clicked on a page, does that open a different template
for editing or does it use the same template with IF statements to enable the editing? Did
you use GET or POST to request and send data, and how and why? You will have considered
many design possibilities. These are only two examples.
o Note your decisions as you work, so you do not forget them!
• Database questions: Refer to the supplied spb_local.sql file to answer the following questions:
1. What SQL statement creates the job table and defines its fields/columns? (Copy and
paste the relevant lines of SQL.)
2. Which line of SQL code sets up the relationship between the customer and job
tables?
3. Which lines of SQL code insert details into the parts table?
4. Suppose that as part of an audit trail, the time and date a service or part was added
to a job needed to be recorded, what fields/columns would you need to add to
which tables? Provide the table name, new column name and the data type. (Do not
implement this change in your app.)
5. Suppose logins were implemented. Why is it important for technicians and the office
administrator to access different routes? As part of your answer, give two specific
examples of problems that could occur if all of the web app facilities were available
to everyone.
• Image sources: It is not necessary to use any external images in your web app, but if you do,
ensure you reference the image source in your report.
4
Data Model
Model Notes:
Child table.field * (refers to) Parent table.field
job.customer customer.customer_id
job_part.job_id job.job_id
job_part.part_id part.part_id
job_service.job_id job.job_id
job_service.service_id service.service_id
 * the ‘Foreign Key’
Project Requirements
You must:
• Use only the COMP636 technologies (Python & Flask, Bootstrap CSS, MySQL). Do not use
SQLAlchemy or ReactJS (or other similar technologies) in your solution.
Do not use any scripts, including JavaScript, except for the <script> at the bottom of base.html. Do
not write your own CSS (use Bootstrap).
• Use the provided SQL files to create the database within your MySQL database &
PythonAnywhere. This also creates initial data in the database.
o You can re-run this SQL script at any time to reset your data back to the original version and
remove any changes you made to it.
• Use the provided files to develop a Flask Webapp that:
o Must be in a folder called ‘spb’ (locally and on pythonanywhere)
o Meets the functional requirements.
o Is appropriately commented.
o Connects to your database.
5
o Uses %s to insert values into SQL statements.
o Provides appropriate routes for the different functions.
o Provides templates and incorporates HTML forms to take input data.
o Uses Bootstrap CSS to provide styling and formatting.
• Include your report as outlined above.
o This report must be created using GitHub Markdown and saved in the README.md file of
your GitHub repository.
• Create a private GitHub repository that contains:
o All Python, HTML, images and any other required files for the web app.
o A requirements.txt file showing the required pip packages.
o Your project report as the README.md document.
o Your repository must have a .gitignore file and therefore not have a copy of your virtual
environment.
o Add lincolnmac (computing@lincoln.ac.nz) as a collaborator to your GitHub repository.
o Your repository must show a minimum of two commits per week after the milestone
submission.
• Host your system (including database) using pythonanywhere.
o Add lincolnmac as your “teacher” via Account > Education.
o The webapp must be in a folder called ‘spb’
Project Hints
Create your GitHub repository first, and create all your required code and files in your local folder.
You are required to commit and push changes from your local computer to your GitHub repository at
least twice a week.
pythonanywhere is case sensitive so test your app early – we will mark the pythonanywhere version
of your app.
Spend some time sketching the structure of your application before you start developing. Think
about which features could share the same (or nearly the same) templates. Remember that you can
nest templates (templates within templates).
Take note of your design decisions, compromises, workarounds, etc. for your report as you develop
your web app. Otherwise you may struggle to remember all of the issues you worked through
afterwards.
6
Milestone Submission (10 marks, due 24 January)
This milestone is to ensure that your app is correctly configured, and any set-up issues are resolved
early. The milestone does not require any changes to the code and templates provided. By this date
you only need to sync and share the provided files on GitHub, provide us teacher access to your
PythonAnywhere and host the provided code on PythonAnywhere so that the web app and provided
routes run correctly.
Submit the following via the link on the Learn COMP636 page:
• Your PythonAnywhere URL (e.g., joebloggs.PythonAnywhere.com/ )
• Your GitHub repository name (e.g., joebloggs99)

For this submission you must have:
• Your GitHub repository set up correctly.
• The provided files loaded in GitHub and in PythonAnywhere.
• Your database set up on PythonAnywhere.
• Your app hosted on PythonAnywhere.
• The /currentjobs route working (as provided in the files).
• Granted access to your PythonAnywhere account (set lincolnmac as teacher).
• Granted access to your GitHub repository (lincolnmac or computing@lincoln.ac.nz as
collaborator) .
IMPORTANT: Do not change your PythonAnywhere files until after you have received your
Milestone marks. You may continue to work in the local copy on your computer in the meantime
and you should also commit and push to your GitHub repository.
At this submission we will check your GitHub, PythonAnywhere and database setup.
Set-up Requirement Marks Available
GitHub Repository set up and shared 3 marks
PythonAnywhere web app hosting correctly configured, including
home URL and database setup, and teacher access granted
5 marks
/currentjobs route and page (as provided) running on
PythonAnywhere
2 marks
TOTAL 10 marks
7
Final Submission (** marks, due 14 February)
Submit your URLs again via the link on the Learn COMP636 page:
• Your pythonanywhere URL (e.g., joebloggs.pythonanywhere.com/ )
• Your GitHub repository name (eg, joebloggs99 )

This confirms where your work is, and tells us that your final submission is ready for marking.
Final Submission Marking
Report and General Project Aspects (25 marks):
Project Element Marks Available
Project Report – Part 1:
• Outline the structure of your solution
(routes & functions).
• Detail any assumptions that you made,
discussing your design decisions.
• Report created using GitHub Markdown
and saved in the README.md file of your
GitHub repository
9 marks
• 4 marks assigned to appropriate and
accurate structure outline.
• 4 marks assigned to Assumptions and
Design Decisions.
• 1 mark for .md being in the right place and
a reasonable length. (Just a heading, or a
couple of sentences, is not a reasonable
length.)
Project Report – Part 2:
• Report Database Questions sufficiently
answered.
10 marks
Spelling, presentation, etc 2 marks
Spelling, punctuation, grammar, and
presentation, and appropriate
referencing of external images (if any).
Consistent ‘Look and Feel’ (interface, Bootstrap
styling & templates, ease of use, etc)
4 marks
TOTAL 25 marks
Functional Project Aspects (65 marks):
Within each of the functional areas (see table below with indicative marks) we are looking for:
• Functionality working as specified in the requirements.
• Well commented and formatted HTML, SQL, and Python code throughout.
• A user interface that looks and functions to a professional standard, including Bootstrap
colour and styling choices, sensible navigation and appropriate sorting of lists.
• ID numbers for table rows are mainly for internal system use only and should only be made
visible to system users when mentioned in the requirements.
• Data Validation on forms. Wise choice of form elements.
• Well-structured SQL queries.
• Appropriate naming, both of variables and labels
8
An indication of marks (may be adjusted when marking) :
Item Interface Functionality Approx.
Marks
Access Admin Admin home page exists with appropriate
links.
Admin functionality only linked via menu.
1
Navigation All Sensible, well laid-out navigation
throughout.
4
List currentjobs Technician Updated list to show customer name,
formatting improvements
2
Job Details Technician Job selectable (from currentjobs). Shows
part and services used, additional parts and
services can be added.
6
Job total cost updates after each change to a
job.
6
Customer List &
Search
Admin A list of customers is displayed. Customers
can be searched, partial text matches
6
Add Customers,
Parts, Services
Admin Appropriate interface, forms, validation for
entry of new customers, parts and services
14
Schedule Job Admin Appropriate interface to choose the current
or a future date and customer
6
Unpaid Bills and
Bill Payment
Admin Display of unpaid bills and ability to update
payment status
8
Overdue Bills Admin Showing all bills with red highlight on those
that are unpaid and overdue. Bills
appropriately ordered and grouped by
customer.
12
TOTAL 65
You may modify data in your database for testing purposes and may add new data, but you must not
modify the schema.
Markers will modify or add alternative data to your database as part of the marking process.
如有需要,請加QQ:99515681 或WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:CS170程序代做、Python編程設計代寫
  • 下一篇:代寫CS 211、Python/c++設計程序代做
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    黄色大片在线免费看| 99久re热视频精品98| 欧美激情视频网| 国产99午夜精品一区二区三区| 久久精品国产一区二区三区不卡 | 中文字幕一区二区中文字幕| 久久国产精品网站| 欧美激情一级欧美精品| 国产精品毛片a∨一区二区三区|国| 久久精品99久久| 色欲色香天天天综合网www| 性色av一区二区三区| 色综合久久久久无码专区| 欧洲成人在线观看| 国内精品久久久| 国产精选一区二区| 成人精品一区二区三区电影黑人| 国产在线精品一区免费香蕉| 国产精品一区二区电影| 91国自产精品中文字幕亚洲| 国产不卡一区二区在线观看| 国产精品毛片一区视频| 亚洲国产精品www| 欧美 日韩 亚洲 一区| 成人免费在线网址| 日韩色av导航| 一区二区三区我不卡| 欧美精品国产精品久久久| 白嫩少妇丰满一区二区| 久久精品视频99| 手机成人av在线| 国产精品主播视频| 国产成人精品电影久久久| 欧美成人一二三| 欧洲日本亚洲国产区| 91九色在线视频| 中文字幕日韩精品一区二区| 黄色大片在线免费看| 久久久久久久少妇| 亚洲欧洲一区二区福利| 国产一区二区在线视频播放| 国产成人午夜视频网址| 人妻久久久一区二区三区| 国产精品av一区| 欧美激情亚洲一区| 国产一区二区免费在线观看| 日韩在线欧美在线国产在线| 亚洲天堂av免费在线观看| 国产区精品在线观看| 国产精品视频在线观看| 欧美一性一乱一交一视频| 久久99热精品这里久久精品| 日韩中文av在线| 国产做受69高潮| 亚洲在线观看视频网站| 久久久精品国产网站| 成人精品久久一区二区三区| 国产日产久久高清欧美一区| 久久精品国产精品青草色艺 | 国产免费黄视频| 久久av.com| 明星裸体视频一区二区| 国产精品久久成人免费观看| 国产精品久久久久久久久久久新郎 | 阿v天堂2017| 亚洲一区二区高清视频| 成人黄动漫网站免费| 精品成在人线av无码免费看| 国产在线精品一区| 久久艹在线视频| 操人视频欧美| 色噜噜狠狠一区二区三区| 久久久久久久国产精品视频| 日韩精品一区二区免费| 国产精品视频自拍| 国产久一道中文一区| 色播亚洲婷婷| 国产精品女视频| av在线免费观看国产| 日韩欧美视频网站| 久久99热精品这里久久精品| 久久综合久久色| 青青草综合在线| 久久av在线播放| 久久精品美女| 国产精品一区二区av| 欧美性视频精品| 亚洲国产精品久久久久久女王 | 国产99在线免费| 久久久久一本一区二区青青蜜月| 欧美激情国产精品日韩| 亚洲欧洲一区二区福利| 国产精品日日做人人爱| 成人久久18免费网站图片| 日韩欧美99| 亚洲国产精品久久久久婷蜜芽| 久久久久五月天| 成人av男人的天堂| 精品亚洲第一| 欧美 日韩 国产 高清| 日本精品一区二区三区不卡无字幕 | 国产精品久久久久999| 国产精品一区在线免费观看| 国产中文字幕亚洲| 精品日产一区2区三区黄免费| 欧美亚洲丝袜| 精品日产一区2区三区黄免费 | 熟女视频一区二区三区| 国产精品人成电影在线观看| 欧美成人精品在线播放| 欧洲精品一区二区三区久久| 色天天综合狠狠色| 北条麻妃av高潮尖叫在线观看| 亚洲不卡中文字幕| 久久国产亚洲精品无码| 日本一区精品| 日韩视频免费大全中文字幕| 国产精品一区二区免费在线观看| 激情深爱综合网| 午夜精品久久久久久久99热浪潮| 国产精品久久久久久网站| 一区精品在线| 色天天综合狠狠色| www.av蜜桃| 黄色a级在线观看| 日本wwww视频| 三区精品视频| 日韩视频在线观看视频| 国产精品一区二区三区在线| 欧美老熟妇喷水| 日本一区二区在线视频| 亚洲综合中文字幕在线| 青青青在线播放| 欧美亚洲日本黄色| 欧美亚洲免费在线| 国产精品免费一区二区三区都可以 | 日韩综合视频在线观看| 日韩av一二三四区| 亚洲字幕在线观看| 亚洲女人毛片| 欧美精品在线第一页| 国产精品私拍pans大尺度在线 | 91九色国产在线| 国产精品.com| 国产精品免费区二区三区观看| 国产精品高清在线| 日韩中文字幕在线视频| 日韩一区二区欧美| 久久久久女教师免费一区| 久草青青在线观看| 国产精品视频二| 亚洲精品欧洲精品| www.av一区视频| 美女在线免费视频| 免费不卡av在线| 国产麻花豆剧传媒精品mv在线 | 欧美精品一区二区免费| 久久九九免费视频| 欧美激情视频一区二区三区不卡| 欧美乱妇高清无乱码| 亚洲一区美女视频在线观看免费| 日韩精品在在线一区二区中文| 国产人妻互换一区二区| 日韩亚洲在线观看| 在线观看福利一区| 日本欧洲国产一区二区| 国内精品小视频在线观看| 欧美xxxx黑人又粗又长密月| 国产精品88a∨| 在线观看日韩羞羞视频| 日韩av综合在线观看| 国产在线播放不卡| 国产不卡精品视男人的天堂| 精品国产_亚洲人成在线| 欧美亚洲激情在线| 久久色精品视频| 亚洲综合小说区| 日韩精品一区二区三区色偷偷 | 69国产精品成人在线播放| 欧美精品少妇videofree| 欧美在线中文字幕| 久久精品国产亚洲7777| 91麻豆精品秘密入口| www.亚洲免费视频| 日韩av不卡在线播放| 粉嫩av四季av绯色av第一区| 精品国产网站地址| 激情久久av| 色综合影院在线观看| caoporn国产精品免费公开| 久久精品国产亚洲精品2020| 欧美日韩ab片| 成人精品一区二区三区电影黑人| 欧美成人免费va影院高清| 精品国产aⅴ麻豆| 欧美日韩精品一区| 久久国产精品亚洲va麻豆| 亚洲综合色av| 国产精品27p| 青青草精品毛片|