Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 18
Next »
Before you start
- Make sure you have JDK8(use 1.8.0_66) installed
- Fork https://github.com/qcadoo/mes/
clone tag: recruitment, e.g.
git clone <repo-url> --branch recruitment
git checkout -b recruitment - Build MES (How to build MES from sources - step by step)
- Change hotDeploy=false in file: mes/mes-application/conf/tomcat/app.properties
- Read the comments below
Assignment
- Add new model purchase to plugin basic with fields:
- product - product from basic plugin,
- quantity - quantity of product,
- price - price of product,
- date - date with time.
- Add validator which would check if product price is > 0.
- Add validator which would check if product quantity is > 0.
- Add validator which would check if there is no purchase with the same product and price.
- Add views for that model with list and add/edit details.
- (OPTIONAL) Add hooks which would set product unit
- add disabled input field next to quantity field in purchase details view
- when product changes, this field also should be updated.
- Add button to ribbon in purchases list or details which will count average price of all purchases or average price of product. The result can be presented in any way (for example as a simple popup or field on the view).
(OPTIONAL) Prepare additional functionality with simple dictionary and two fields: input and output. While the user enters input text, the application rewrites it, and mark words found in the dictionary.
Requirements:
* prepare a separate subpage (you can use component: staticPage)
* allowed words can be stored in an external file or served by the controller in any format
* use pure java script or jQuery
Useful links
- Plugin developement
- Our coding conventions
- Javadoc
- Github repository