-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start work on documents manipulation
TODO: DOCUMENT MANIPULATION DOCUMENT FILE MANIPULATION TASK MANIPULATION SHOW CONTEOLLED TASK FOR USER SHOW USERS TASK STOREHAUSE MANIPULATION GOOD PRODUCTION AND SERVICE
- Loading branch information
1 parent
ee6bf42
commit 1ca0101
Showing
7 changed files
with
237 additions
and
9 deletions.
There are no files selected for viewing
156 changes: 156 additions & 0 deletions
156
src/main/java/ua/pp/fairwind/favorid/internalDB/controllers/StorehouseController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
package ua.pp.fairwind.favorid.internalDB.controllers; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.data.domain.Page; | ||
import org.springframework.data.domain.PageRequest; | ||
import org.springframework.data.domain.Sort; | ||
import org.springframework.security.access.annotation.Secured; | ||
import org.springframework.stereotype.Controller; | ||
import org.springframework.transaction.annotation.Transactional; | ||
import org.springframework.ui.Model; | ||
import org.springframework.validation.BindingResult; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RequestMethod; | ||
import org.springframework.web.bind.annotation.RequestParam; | ||
import org.springframework.web.bind.annotation.ResponseBody; | ||
import ua.pp.fairwind.favorid.internalDB.jgrid.JGridRowsResponse; | ||
import ua.pp.fairwind.favorid.internalDB.jgrid.JSComboExpenseResp; | ||
import ua.pp.fairwind.favorid.internalDB.model.storehouses.Nomenclature; | ||
import ua.pp.fairwind.favorid.internalDB.model.storehouses.Storehouse; | ||
import ua.pp.fairwind.favorid.internalDB.repository.StoreHouseRepository; | ||
|
||
import javax.servlet.http.HttpServletRequest; | ||
import javax.servlet.http.HttpServletResponse; | ||
import java.io.IOException; | ||
import java.util.List; | ||
|
||
/** | ||
* Created by Ñåðãåé on 19.10.2015. | ||
*/ | ||
@Controller | ||
@RequestMapping("/storehouses") | ||
public class StorehouseController { | ||
@Autowired | ||
StoreHouseRepository storehouseRepository; | ||
|
||
@Secured("ROLE_USER") | ||
@RequestMapping(value = "/list", method = RequestMethod.GET) | ||
public String list(Model model) { | ||
return "storehouse_list"; | ||
} | ||
|
||
@Transactional(readOnly = true) | ||
@RequestMapping(value = "/listing", method = RequestMethod.POST) | ||
@ResponseBody | ||
public JGridRowsResponse<Storehouse> getTable(HttpServletRequest request){ | ||
PageRequest pageRequest=null; | ||
if(request.getParameter("page")!=null){ | ||
int rows=10; | ||
int page; | ||
try { | ||
page = Integer.parseInt(request.getParameter("page")) - 1; | ||
rows = request.getParameter("rows") == null ? 10 : Integer.parseInt(request.getParameter("rows")); | ||
if(request.getParameter("sidx")!=null && !request.getParameter("sidx").isEmpty()){ | ||
String direction=request.getParameter("sord"); | ||
pageRequest=new PageRequest(page,rows,"asc".equals(direction)? Sort.Direction.ASC: Sort.Direction.DESC,request.getParameter("sidx")); | ||
} else { | ||
pageRequest=new PageRequest(page,rows); | ||
} | ||
}catch (NumberFormatException ex){ | ||
//do nothing | ||
} | ||
|
||
}/**/ | ||
String filterName=request.getParameter("name"); | ||
if(pageRequest!=null){ | ||
if(filterName!=null && !filterName.isEmpty()){ | ||
return new JGridRowsResponse<>(storehouseRepository.find(filterName, pageRequest)); | ||
} else | ||
return new JGridRowsResponse<>(storehouseRepository.findAll(pageRequest)); | ||
} else { | ||
if(filterName!=null && !filterName.isEmpty()){ | ||
return new JGridRowsResponse<>(storehouseRepository.find(filterName)); | ||
} else | ||
return new JGridRowsResponse<>(storehouseRepository.findAll()); | ||
} | ||
} | ||
|
||
@Transactional(readOnly = false) | ||
@RequestMapping(value = "/edit", method = {RequestMethod.POST,RequestMethod.GET}) | ||
public void editor(@RequestParam String oper,Storehouse storehouse,BindingResult result,HttpServletResponse response)throws IOException { | ||
if(result.hasErrors()){ | ||
response.sendError(400,result.toString()); | ||
return; | ||
} | ||
switch (oper){ | ||
case "add": | ||
storehouseRepository.save(storehouse); | ||
response.setStatus(200); | ||
break; | ||
case "edit": | ||
Storehouse fromDB= storehouseRepository.getOne(storehouse.getId()); | ||
if(fromDB!=null) { | ||
storehouseRepository.save(storehouse); | ||
if(storehouse.getVersion()>=fromDB.getVersion()) { | ||
fromDB.setName(storehouse.getName()); | ||
fromDB.setLocation(storehouse.getLocation()); | ||
fromDB.setComments(storehouse.getComments()); | ||
storehouseRepository.save(fromDB); | ||
response.setStatus(200); | ||
} else { | ||
response.sendError(406,"ANOTHER TRANSACTION MODIFICATION"); | ||
} | ||
} else { | ||
response.sendError(406,"NO CONTACT TYPE FOUND"); | ||
} | ||
|
||
break; | ||
case "del": | ||
storehouseRepository.delete(storehouse.getId()); | ||
response.setStatus(200); | ||
break; | ||
default: | ||
response.sendError(406,"UNKNOWN OPERATION"); | ||
} | ||
} | ||
|
||
|
||
@Transactional(readOnly = true) | ||
@RequestMapping(value = "/showList", method = RequestMethod.GET) | ||
@ResponseBody | ||
public Object simpleClientList(@RequestParam(required = false) Integer page_num, @RequestParam(required = false) Integer per_page,@RequestParam(value = "pkey_val[]",required = false) String pkey,@RequestParam(value = "q_word[]",required = false) String[] qword,@RequestParam long firmID) { | ||
// Retrieve all persons by delegating the call to PersonService | ||
//Sort sort= FormSort.formSortFromSortDescription(orderby); | ||
Sort sort=new Sort(Sort.Direction.ASC,"name"); | ||
PageRequest pager=null; | ||
if(page_num!=null && per_page!=null) { | ||
pager = new PageRequest(page_num - 1, per_page, sort); | ||
} | ||
if(pager!=null) { | ||
Page<Storehouse> page; | ||
if (qword != null && qword.length > 0) { | ||
page = storehouseRepository.find(qword[0], pager); | ||
} else { | ||
page = storehouseRepository.findAll(pager); | ||
} | ||
return new JSComboExpenseResp<>(page); | ||
} else { | ||
if(pkey!=null && !pkey.isEmpty()){ | ||
Long key=Long.valueOf(pkey); | ||
Storehouse ft=null; | ||
if(key!=null) { | ||
ft = storehouseRepository.findOne(key); | ||
} | ||
return ft; | ||
} else { | ||
List<Storehouse> page; | ||
if (qword != null && qword.length > 0) { | ||
page = storehouseRepository.find(qword[0],sort); | ||
} else { | ||
page = storehouseRepository.findAll(sort); | ||
} | ||
return new JSComboExpenseResp<>(page); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,6 @@ public enum MOVEMENT_TYPES { | |
SHIPMENT, | ||
MOVE, | ||
DEFECTIVE, | ||
UTILIZATION | ||
UTILIZATION, | ||
COMBINED | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/main/java/ua/pp/fairwind/favorid/internalDB/model/storehouses/Units.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package ua.pp.fairwind.favorid.internalDB.model.storehouses; | ||
|
||
/** | ||
* Created by Ñåðãåé on 19.10.2015. | ||
*/ | ||
public enum Units { | ||
KILOGRAMS, | ||
GRAMS, | ||
TONS, | ||
COUNT, | ||
LITRES, | ||
MILILITRES | ||
} |
25 changes: 25 additions & 0 deletions
25
src/main/java/ua/pp/fairwind/favorid/internalDB/repository/StoreHouseRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package ua.pp.fairwind.favorid.internalDB.repository; | ||
|
||
import org.springframework.data.domain.Page; | ||
import org.springframework.data.domain.Pageable; | ||
import org.springframework.data.domain.Sort; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.data.jpa.repository.Query; | ||
import org.springframework.data.repository.query.Param; | ||
import ua.pp.fairwind.favorid.internalDB.model.storehouses.Nomenclature; | ||
import ua.pp.fairwind.favorid.internalDB.model.storehouses.Storehouse; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* Created by Ñåðãåé on 07.10.2015. | ||
*/ | ||
|
||
public interface StoreHouseRepository extends JpaRepository<Storehouse,Long>{ | ||
@Query("select n from Storehouse n where n.location like %:search% or n.name like %:search% or n.number like %:search%") | ||
Page<Storehouse> find(@Param(value = "search") String name, Pageable pager); | ||
@Query("select n from Storehouse n where n.location like %:search% or n.name like %:search% or n.number like %:search%") | ||
List<Storehouse> find(@Param(value = "search") String name); | ||
@Query("select n from Storehouse n where n.location like %:search% or n.name like %:search% or n.number like %:search%") | ||
List<Storehouse> find(@Param(value = "search") String name, Sort sort); | ||
} |