use of eu.ggnet.dwoss.uniqueunit.ee.entity.Product in project dwoss by gg-net.
the class TreeTableController method getProducts.
private ObservableList<TreeItem<DataWrapper>> getProducts(CategoryProduct cp) {
ObservableList<TreeItem<DataWrapper>> result = FXCollections.observableArrayList();
for (Product product : loadProducts(cp)) {
TreeItem<DataWrapper> item = new TreeItem<>();
ProductWrapper productWrapper = new ProductWrapper(item, product);
item.setValue(productWrapper);
item.getChildren().add(loading);
item.expandedProperty().addListener(new ChangeListener<Boolean>() {
@Override
public void changed(ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) {
if (productWrapper.isLoading()) {
return;
}
productWrapper.setLoading(true);
new Thread(new Runnable() {
@Override
public void run() {
item.getChildren().addAll(getUnitCollections(product));
item.getChildren().remove(loading);
}
}).start();
}
});
result.add(item);
}
return result;
}
use of eu.ggnet.dwoss.uniqueunit.ee.entity.Product in project dwoss by gg-net.
the class RedTapeOperationAnnulationInvoiceIT method testCreditMemo.
@Test
public void testCreditMemo() throws UserInfoException {
// We need two stocks at least.
List<Stock> allStocks = stockGenerator.makeStocksAndLocations(2);
long customerId = customerGenerator.makeCustomer();
List<UniqueUnit> uus = receiptGenerator.makeUniqueUnits(4, true, true);
UniqueUnit uu1 = uus.get(0);
UniqueUnit uu2 = uus.get(1);
UniqueUnit uu3 = uus.get(2);
UniqueUnit uu4 = uus.get(3);
Product uuProduct1 = uu1.getProduct();
int stockIdOfUU1 = stockAgent.findStockUnitByUniqueUnitIdEager(uu1.getId()).getStock().getId();
int alternateStockId = allStocks.stream().map(Stock::getId).filter(id -> id != stockIdOfUU1).findFirst().orElseThrow(() -> new RuntimeException("No alternate StockId found, impossible"));
Dossier dos = redTapeWorker.create(customerId, true, "Me");
Document doc = dos.getActiveDocuments(DocumentType.ORDER).get(0);
assertThat(doc).overridingErrorMessage("Expected active document Order, got null. Dossier: " + dos.toMultiLine()).isNotNull();
Position batch = batch(uuProduct1);
Position shipping = shippingcost();
doc.append(unit(uu1));
doc.append(unit(uu2));
doc.append(unit(uu3));
doc.append(comment());
doc.append(service());
doc.append(batch);
doc.append(shipping);
// add units to LogicTransaction
unitOverseer.lockStockUnit(dos.getId(), uu1.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
unitOverseer.lockStockUnit(dos.getId(), uu2.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
unitOverseer.lockStockUnit(dos.getId(), uu3.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
unitOverseer.lockStockUnit(dos.getId(), uu4.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
doc = redTapeWorker.update(doc, null, "JUnit");
doc.add(Document.Condition.PAID);
doc.add(Document.Condition.PICKED_UP);
doc.setType(DocumentType.INVOICE);
doc = redTapeWorker.update(doc, null, "JUnit");
LogicTransaction lt = support.findByDossierId(doc.getDossier().getId());
assertNotNull("A LogicTrasaction must exists", lt);
assertEquals("The Size of the LogicTransaction", 3, lt.getUnits().size());
// A CreditMemo for Unit1, negate prices on Annulation Invoice.
for (Position pos : new ArrayList<>(doc.getPositions().values())) {
if (pos.getUniqueUnitId() == uu1.getId()) {
pos.setPrice(pos.getPrice() * -1);
} else {
doc.remove(pos);
}
}
assertEquals("Document should have exactly one possition", 1, doc.getPositions().size());
assertEquals("Position is exactly the same UniqueUnitId", uu1.getId(), doc.getPositions().get(1).getUniqueUnitId());
doc.setType(DocumentType.ANNULATION_INVOICE);
// Setting the Stock by force, cause we want to see if on update, the unit is moved to the original stock.
support.changeStock(uu1.getId(), alternateStockId);
doc = redTapeWorker.update(doc, stockIdOfUU1, "JUnit Test");
// Asserting Everything
assertEquals("The Identifier of CreditMemo", "SR" + YY + "_00001", doc.getIdentifier());
lt = support.findByDossierId(doc.getDossier().getId());
assertNotNull("A LogicTrasaction must still exists", lt);
assertEquals("The Size of the LogicTransaction", 2, lt.getUnits().size());
for (StockUnit stockUnit : lt.getUnits()) {
if (stockUnit.getUniqueUnitId() == uu1.getId()) {
fail("The StockUnit of the CreditMemo should not be on the LogicTransaction of the Dossier");
}
}
List<StockTransaction> sto = stockAgent.findStockTransactionEager(StockTransactionType.EXTERNAL_TRANSFER, StockTransactionStatusType.COMPLETED);
assertEquals("One External Transfer Transaction", 1, sto.size());
assertEquals("Only One Position on the Transaction should exist", 1, sto.get(0).getPositions().size());
assertEquals("The One Position should reference to the UniqueUnit of the CreditMemo", uu1.getId(), sto.get(0).getPositions().get(0).getUniqueUnitId().intValue());
assertEquals("The Transaction should contain exactlly one shadow of the UniqueUnit", 1, sto.size());
StockUnit stockUnit1 = stockAgent.findStockUnitByUniqueUnitIdEager(uu1.getId());
assertEquals("The Stock of the StockUnit", stockIdOfUU1, stockUnit1.getStock().getId());
assertNotNull("StockUnit should be on a LogicTransaction", stockUnit1.getLogicTransaction());
Dossier dossier = redTapeAgent.findByIdEager(Dossier.class, stockUnit1.getLogicTransaction().getDossierId());
assertNotNull("A Dossier on the SystemCustomer must exist", dossier);
assertFalse(dossier.getActiveDocuments().isEmpty());
assertFalse(dossier.getActiveDocuments().get(0).getPositions().isEmpty());
assertEquals(2, dossier.getActiveDocuments().get(0).getPositions().size());
boolean unit1Found = false;
boolean commentFound = false;
for (Position pos : dossier.getActiveDocuments().get(0).getPositions().values()) {
if (pos.getType() == PositionType.UNIT) {
assertEquals(uu1.getId(), pos.getUniqueUnitId());
unit1Found = true;
} else if (pos.getType() == PositionType.COMMENT) {
commentFound = true;
}
}
assertTrue(unit1Found);
assertTrue(commentFound);
Document invoice = doc.getDossier().getActiveDocuments(DocumentType.INVOICE).get(0);
// A CreditMemo for a Unit, which is Rolled Out before.
for (Position pos : new ArrayList<>(invoice.getPositions().values())) {
if (pos.getType() != PositionType.UNIT)
invoice.remove(pos);
else if (pos.getUniqueUnitId() != uu2.getId())
invoice.remove(pos);
else {
pos.setPrice(pos.getPrice() * -1);
}
}
assertEquals("Document should have exactly one possition", 1, invoice.getPositions().size());
assertEquals("Position is exactly the same UniqueUnitId", uu2.getId(), invoice.getPositions().get(1).getUniqueUnitId());
invoice.setType(DocumentType.ANNULATION_INVOICE);
// Lets roll Out the Unit
support.rollOut(uu2.getId());
// Verify it is not in stock
StockUnit stockUnit2 = stockAgent.findStockUnitByUniqueUnitIdEager(uu2.getId());
assertNull("StockUnit should not exist: " + stockUnit2, stockUnit2);
// Do the second credit Memo and check if the Unit is back in the stock.
doc = redTapeWorker.update(invoice, stockIdOfUU1, "JUnit");
// Assert Everything
// TODO: this is Mandatorspecific, pickup there.
assertEquals("The Identifier of CreditMemo", "SR" + YY + "_00002", doc.getIdentifier());
stockUnit2 = stockAgent.findStockUnitByUniqueUnitIdEager(uu2.getId());
assertNotNull("StockUnit exists", stockUnit2);
assertNotNull("StockUnit should have LogicTransaction", stockUnit2.getLogicTransaction());
assertEquals("StockUnit is not the correct one", uu2.getId(), stockUnit2.getUniqueUnitId().intValue());
dossier = redTapeAgent.findByIdEager(Dossier.class, stockUnit2.getLogicTransaction().getDossierId());
assertNotNull("A Dossier on the SystemCustomer must exist", dossier);
assertFalse(dossier.getActiveDocuments().isEmpty());
assertFalse(dossier.getActiveDocuments().get(0).getPositions().isEmpty());
assertEquals(2, dossier.getActiveDocuments().get(0).getPositions().size());
unit1Found = false;
commentFound = false;
for (Position pos : dossier.getActiveDocuments().get(0).getPositions().values()) {
if (pos.getType() == PositionType.UNIT) {
assertEquals(uu2.getId(), pos.getUniqueUnitId());
unit1Found = true;
} else if (pos.getType() == PositionType.COMMENT) {
commentFound = true;
}
}
assertTrue(unit1Found);
assertTrue(commentFound);
Date now = new Date();
Date start = DateUtils.addDays(now, -1);
Date end = DateUtils.addDays(now, 1);
FileJacket fj = sageExporter.toXml(start, end);
String result = Strings.fromByteArray(fj.getContent());
assertThat(result).as("SageXml spot Test").isNotBlank().contains(dos.getIdentifier()).contains(Double.toString(TwoDigits.round(batch.getPrice() * batch.getAmount())).replace(".", ",")).contains(Double.toString(TwoDigits.round(shipping.getPrice() * shipping.getAmount())).replace(".", ","));
System.out.println(result);
}
use of eu.ggnet.dwoss.uniqueunit.ee.entity.Product in project dwoss by gg-net.
the class RedTapeOperationCreditMemoIT method testCreditMemo.
@Test
public void testCreditMemo() throws UserInfoException {
// We need two stocks at least.
List<Stock> allStocks = stockGenerator.makeStocksAndLocations(2);
long customerId = customerGenerator.makeCustomer();
List<UniqueUnit> uus = receiptGenerator.makeUniqueUnits(4, true, true);
UniqueUnit uu1 = uus.get(0);
UniqueUnit uu2 = uus.get(1);
UniqueUnit uu3 = uus.get(2);
UniqueUnit uu4 = uus.get(3);
Product uuProduct1 = uu1.getProduct();
int stockIdOfUU1 = stockAgent.findStockUnitByUniqueUnitIdEager(uu1.getId()).getStock().getId();
int alternateStockId = allStocks.stream().map(Stock::getId).filter(id -> id != stockIdOfUU1).findFirst().orElseThrow(() -> new RuntimeException("No alternate StockId found, impossible"));
Dossier dos = redTapeWorker.create(customerId, true, "Me");
Document doc = dos.getActiveDocuments(DocumentType.ORDER).get(0);
assertThat(doc).overridingErrorMessage("Expected active document Order, got null. Dossier: " + dos.toMultiLine()).isNotNull();
// Create Positions
doc.append(unit(uu1));
doc.append(unit(uu2));
doc.append(unit(uu3));
doc.append(comment());
doc.append(service());
doc.append(batch(uuProduct1));
doc.append(shippingcost());
// add units to LogicTransaction
unitOverseer.lockStockUnit(dos.getId(), uu1.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
unitOverseer.lockStockUnit(dos.getId(), uu2.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
unitOverseer.lockStockUnit(dos.getId(), uu3.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
unitOverseer.lockStockUnit(dos.getId(), uu4.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
doc = redTapeWorker.update(doc, null, "JUnit");
doc.add(Document.Condition.PAID);
doc.add(Document.Condition.PICKED_UP);
doc.setType(DocumentType.INVOICE);
doc = redTapeWorker.update(doc, null, "JUnit");
LogicTransaction lt = supportBean.findByDossierId(doc.getDossier().getId());
assertNotNull("A LogicTrasaction must exists", lt);
assertEquals("The Size of the LogicTransaction", 3, lt.getUnits().size());
// A CreditMemo for a Unit, which is on the wrong Stock
for (Position pos : new ArrayList<>(doc.getPositions().values())) {
if (pos.getType() != PositionType.UNIT)
doc.remove(pos);
else if (pos.getUniqueUnitId() != uu1.getId())
doc.remove(pos);
}
assertEquals("Document should have exactly one possition", 1, doc.getPositions().size());
assertEquals("Position is exactly the same UniqueUnitId", uu1.getId(), doc.getPositions().get(1).getUniqueUnitId());
doc.setType(DocumentType.CREDIT_MEMO);
// Setting the Stock by force.
supportBean.changeStock(uu1.getId(), alternateStockId);
doc = redTapeWorker.update(doc, stockIdOfUU1, "JUnit Test");
// Asserting Everything
assertEquals("The Identifier of CreditMemo", "GS" + YY + "_00001", doc.getIdentifier());
lt = supportBean.findByDossierId(doc.getDossier().getId());
assertNotNull("A LogicTrasaction must still exists", lt);
assertEquals("The Size of the LogicTransaction", 2, lt.getUnits().size());
for (StockUnit stockUnit : lt.getUnits()) {
if (stockUnit.getUniqueUnitId() == uu1.getId()) {
fail("The StockUnit of the CreditMemo should not be on the LogicTransaction of the Dossier");
}
}
List<StockTransaction> sto = stockAgent.findStockTransactionEager(StockTransactionType.EXTERNAL_TRANSFER, StockTransactionStatusType.COMPLETED);
assertEquals("One External Transfer Transaction", 1, sto.size());
assertEquals("Only One Position on the Transaction should exist", 1, sto.get(0).getPositions().size());
assertThat(uu1.getId()).as("The One Position should reference to the UniqueUnit of the CreditMemo").isEqualTo(sto.get(0).getPositions().get(0).getUniqueUnitId());
assertEquals("The Transaction should contain exactlly one shadow of the UniqueUnit", 1, sto.size());
StockUnit stockUnit1 = stockAgent.findStockUnitByUniqueUnitIdEager(uu1.getId());
assertEquals("The Stock of the StockUnit", stockIdOfUU1, stockUnit1.getStock().getId());
assertNotNull("StockUnit should be on a LogicTransaction", stockUnit1.getLogicTransaction());
Dossier dossier = redTapeAgent.findByIdEager(Dossier.class, stockUnit1.getLogicTransaction().getDossierId());
assertNotNull("A Dossier on the SystemCustomer must exist", dossier);
assertFalse(dossier.getActiveDocuments().isEmpty());
assertFalse(dossier.getActiveDocuments().get(0).getPositions().isEmpty());
assertEquals(2, dossier.getActiveDocuments().get(0).getPositions().size());
boolean unit1Found = false;
boolean commentFound = false;
for (Position pos : dossier.getActiveDocuments().get(0).getPositions().values()) {
if (pos.getType() == PositionType.UNIT) {
assertEquals(uu1.getId(), pos.getUniqueUnitId());
unit1Found = true;
} else if (pos.getType() == PositionType.COMMENT) {
commentFound = true;
}
}
assertTrue(unit1Found);
assertTrue(commentFound);
Document invoice = doc.getDossier().getActiveDocuments(DocumentType.INVOICE).get(0);
// A CreditMemo for a Unit, which is Rolled Out before.
for (Position pos : new ArrayList<>(invoice.getPositions().values())) {
if (pos.getType() != PositionType.UNIT)
invoice.remove(pos);
else if (pos.getUniqueUnitId() != uu2.getId())
invoice.remove(pos);
}
assertEquals("Document should have exactly one possition", 1, invoice.getPositions().size());
assertEquals("Position is exactly the same UniqueUnitId", uu2.getId(), invoice.getPositions().get(1).getUniqueUnitId());
invoice.setType(DocumentType.CREDIT_MEMO);
// Lets roll Out the Unit
supportBean.rollOut(uu2.getId());
// Do the second credit Memo and check if the Unit is back in the stock.
StockUnit stockUnit2 = stockAgent.findStockUnitByUniqueUnitIdEager(uu2.getId());
assertNull("StockUnit should not exist: " + stockUnit2, stockUnit2);
doc = redTapeWorker.update(invoice, stockIdOfUU1, "JUnit");
// Assert Everything
assertEquals("The Identifier of CreditMemo", "GS" + YY + "_00002", doc.getIdentifier());
stockUnit2 = stockAgent.findStockUnitByUniqueUnitIdEager(uu2.getId());
assertNotNull("StockUnit exists", stockUnit2);
assertNotNull("StockUnit should have LogicTransaction", stockUnit2.getLogicTransaction());
assertThat(uu2.getId()).as("StockUnit is not the correct one").isEqualTo(stockUnit2.getUniqueUnitId());
dossier = redTapeAgent.findByIdEager(Dossier.class, stockUnit2.getLogicTransaction().getDossierId());
assertNotNull("A Dossier on the SystemCustomer must exist", dossier);
assertFalse(dossier.getActiveDocuments().isEmpty());
assertFalse(dossier.getActiveDocuments().get(0).getPositions().isEmpty());
assertEquals(2, dossier.getActiveDocuments().get(0).getPositions().size());
unit1Found = false;
commentFound = false;
for (Position pos : dossier.getActiveDocuments().get(0).getPositions().values()) {
if (pos.getType() == PositionType.UNIT) {
assertEquals(uu2.getId(), pos.getUniqueUnitId());
unit1Found = true;
} else if (pos.getType() == PositionType.COMMENT) {
commentFound = true;
}
}
assertTrue(unit1Found);
assertTrue(commentFound);
}
use of eu.ggnet.dwoss.uniqueunit.ee.entity.Product in project dwoss by gg-net.
the class RedTapeOperationOrderInvoiceIT method testInvoiceDocument.
@Test
public void testInvoiceDocument() throws UserInfoException {
long customerId = customerGenerator.makeCustomer();
List<UniqueUnit> uus = receiptGenerator.makeUniqueUnits(4, true, true);
UniqueUnit uu1 = uus.get(0);
UniqueUnit uu2 = uus.get(1);
UniqueUnit uu3 = uus.get(2);
UniqueUnit uu4 = uus.get(3);
Product uuProduct1 = uu1.getProduct();
// Generate Dossier
Dossier dos = redTapeWorker.create(customerId, true, "Me");
Document doc1 = dos.getActiveDocuments(DocumentType.ORDER).get(0);
assertThat(doc1).overridingErrorMessage("Expected active document Order, got null. Dossier: " + dos.toMultiLine()).isNotNull();
doc1.add(Document.Flag.CUSTOMER_BRIEFED);
doc1.add(Document.Flag.CUSTOMER_EXACTLY_BRIEFED);
// Create Positions
Position p1 = NaivBuilderUtil.unit(uu1);
Position p2 = NaivBuilderUtil.unit(uu2);
Position p4 = NaivBuilderUtil.comment();
Position p5 = NaivBuilderUtil.service();
Position p6 = NaivBuilderUtil.batch(uuProduct1);
Position p7 = NaivBuilderUtil.shippingcost();
doc1.append(p1);
doc1.append(p2);
doc1.append(p4);
doc1.append(p5);
doc1.append(p6);
doc1.append(p7);
Position p3 = NaivBuilderUtil.unit(uu3);
Position p8 = NaivBuilderUtil.unit(uu4);
Dossier dos2 = redTapeWorker.create(customerId, false, "Me2");
Document doc2 = dos2.getActiveDocuments(DocumentType.ORDER).get(0);
assertThat(doc2).overridingErrorMessage("Expected active document Order, got null. Dossier: " + dos2.toMultiLine()).isNotNull();
doc2.append(p3);
doc2.append(p8);
// add units to LogicTransaction
unitOverseer.lockStockUnit(dos.getId(), uu1.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
unitOverseer.lockStockUnit(dos.getId(), uu2.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
unitOverseer.lockStockUnit(dos.getId(), uu3.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
unitOverseer.lockStockUnit(dos.getId(), uu4.getIdentifier(UniqueUnit.Identifier.REFURBISHED_ID));
doc1 = redTapeWorker.update(doc1, null, "Junit Test");
doc1.add(Document.Condition.PAID);
doc1.add(Document.Condition.PICKED_UP);
doc1.setType(DocumentType.INVOICE);
doc1 = redTapeWorker.update(doc1, null, "tester");
String format = new SimpleDateFormat("YY").format(new Date());
assertEquals("The Identifier of Invoice", "RS" + format + "_00001", doc1.getIdentifier());
assertFalse("Document must not contain " + Document.Flag.CUSTOMER_BRIEFED, doc1.getFlags().contains(Document.Flag.CUSTOMER_BRIEFED));
assertFalse("Document must not contain " + Document.Flag.CUSTOMER_EXACTLY_BRIEFED, doc1.getFlags().contains(Document.Flag.CUSTOMER_EXACTLY_BRIEFED));
LogicTransaction lt = logicTransactionEao.findByDossierId(doc1.getDossier().getId());
assertNotNull("A LogicTrasaction must exists", lt);
assertEquals("The Size of the LogicTransaction", 2, lt.getUnits().size());
doc2.setType(DocumentType.INVOICE);
Document update2 = redTapeWorker.update(doc2, null, "Junit");
assertEquals("RS" + format + "_00002", update2.getIdentifier());
Date now = new Date();
Date start = DateUtils.addDays(now, -1);
Date end = DateUtils.addDays(now, 1);
FileJacket fj = sageExporter.toXml(start, end);
String result = Strings.fromByteArray(fj.getContent());
assertThat(result).as("SageXml spot Test").isNotBlank().contains(dos.getIdentifier(), dos2.getIdentifier()).contains(Double.toString(TwoDigits.round(p7.getPrice() * p7.getAmount())).replace(".", ",")).contains(Double.toString(TwoDigits.round(p6.getPrice() * p6.getAmount())).replace(".", ","));
}
use of eu.ggnet.dwoss.uniqueunit.ee.entity.Product in project dwoss by gg-net.
the class UnitViewTryout method main.
public static void main(String[] args) throws Exception {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
final SpecGenerator GEN = new SpecGenerator();
final List<ProductSpec> productSpecs = new ArrayList<>();
final Map<String, ProductModel> productModels = new HashMap<>();
final Map<String, ProductSeries> productSeries = new HashMap<>();
final Map<String, ProductFamily> productFamily = new HashMap<>();
final List<Product> products = new ArrayList<>();
for (int i = 0; i < 100; i++) {
ProductSpec spec = GEN.makeSpec();
productSpecs.add(spec);
products.add(new Product(spec.getModel().getFamily().getSeries().getGroup(), spec.getModel().getFamily().getSeries().getBrand(), spec.getPartNo(), spec.getModel().getName()));
productModels.putIfAbsent(spec.getModel().getName(), spec.getModel());
productFamily.putIfAbsent(spec.getModel().getFamily().getName(), spec.getModel().getFamily());
productSeries.putIfAbsent(spec.getModel().getFamily().getSeries().getName(), spec.getModel().getFamily().getSeries());
}
// final Product product = new Product(spec.getModel().getFamily().getSeries().getGroup(),
// spec.getModel().getFamily().getSeries().getBrand(), spec.getPartNo(), spec.getModel().getName());
Dl.remote().add(Mandators.class, new Mandators() {
@Override
public Mandator loadMandator() {
return Mandator.builder().defaultMailSignature(null).smtpConfiguration(null).mailTemplateLocation(null).company(CompanyGen.makeCompany()).dossierPrefix("DW").documentIntermix(null).documentIdentifierGeneratorConfigurations(new EnumMap<>(DocumentType.class)).build();
}
@Override
public DefaultCustomerSalesdata loadSalesdata() {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public ReceiptCustomers loadReceiptCustomers() {
return ReceiptCustomers.builder().build();
}
@Override
public SpecialSystemCustomers loadSystemCustomers() {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Contractors loadContractors() {
return new Contractors(EnumSet.allOf(TradeName.class), TradeName.getManufacturers());
}
@Override
public PostLedger loadPostLedger() {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public ShippingTerms loadShippingTerms() {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
});
Dl.remote().add(SpecAgent.class, new SpecAgent() {
@Override
public ProductSpec findProductSpecByPartNoEager(String partNo) {
return productSpecs.stream().filter(p -> Objects.equals(partNo, p.getPartNo())).findFirst().orElse(null);
}
// <editor-fold defaultstate="collapsed" desc="Unneeded Methods">
@Override
public <T> long count(Class<T> entityClass) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> List<T> findAll(Class<T> entityClass) {
if (entityClass.equals(ProductSpec.class))
return (List<T>) productSpecs;
else if (entityClass.equals(ProductSeries.class))
return (List<T>) new ArrayList<>(productSeries.values());
else if (entityClass.equals(ProductFamily.class))
return (List<T>) new ArrayList<>(productFamily.values());
else if (entityClass.equals(ProductModel.class))
return (List<T>) new ArrayList<>(productModels.values());
return Collections.emptyList();
}
@Override
public <T> List<T> findAll(Class<T> entityClass, int start, int amount) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> List<T> findAllEager(Class<T> entityClass) {
return findAll(entityClass);
}
@Override
public <T> List<T> findAllEager(Class<T> entityClass, int start, int amount) {
return findAll(entityClass, start, amount);
}
@Override
public <T> T findById(Class<T> entityClass, Object id) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> T findById(Class<T> entityClass, Object id, LockModeType lockModeType) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> T findByIdEager(Class<T> entityClass, Object id) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> T findByIdEager(Class<T> entityClass, Object id, LockModeType lockModeType) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
});
Dl.remote().add(UnitSupporter.class, new UnitSupporter() {
@Override
public boolean isRefurbishIdAvailable(String refurbishId) {
return Pattern.matches("([2-8][0-9]{4}|A1[0-9]{3})", refurbishId);
}
@Override
public boolean isSerialAvailable(String serial) {
if (serial == null)
return true;
return !serial.startsWith("AAAA");
}
@Override
public String findRefurbishIdBySerial(String serial) {
if (serial == null)
return null;
if (serial.startsWith("B"))
return "12345";
return null;
}
});
Dl.remote().add(UniqueUnitAgent.class, new UniqueUnitAgent() {
@Override
public Product findProductByPartNo(String partNo) {
return products.stream().filter(p -> Objects.equals(partNo, p.getPartNo())).findFirst().orElse(null);
}
// <editor-fold defaultstate="collapsed" desc="Unneeded Methods">
@Override
public UniqueUnit findUnitByIdentifierEager(UniqueUnit.Identifier type, String identifier) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> long count(Class<T> entityClass) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> List<T> findAll(Class<T> entityClass) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> List<T> findAll(Class<T> entityClass, int start, int amount) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> List<T> findAllEager(Class<T> entityClass) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> List<T> findAllEager(Class<T> entityClass, int start, int amount) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> T findById(Class<T> entityClass, Object id) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> T findById(Class<T> entityClass, Object id, LockModeType lockModeType) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> T findByIdEager(Class<T> entityClass, Object id) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T> T findByIdEager(Class<T> entityClass, Object id, LockModeType lockModeType) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Product findProductByPartNoEager(String partNo) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public CategoryProduct createOrUpdate(CategoryProductDto dto, String username) throws NullPointerException {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
// </editor-fold>
@Override
public Reply<Void> deleteCategoryProduct(long id) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Reply<Void> addToUnitCollection(PicoUnit unit, long unitCollectionId) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Reply<Void> unsetUnitCollection(PicoUnit unit) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Reply<UnitCollection> createOnProduct(long productId, UnitCollectionDto dto, String username) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Reply<UnitCollection> update(UnitCollectionDto dto, String username) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Reply<Void> delete(UnitCollection dto) {
// To change body of generated methods, choose Tools | Templates.
throw new UnsupportedOperationException("Not supported yet.");
}
});
Dl.remote().add(ProductProcessor.class, new ProductProcessorStub());
UnitController controller = new UnitController();
UnitModel model = new UnitModel();
model.setContractor(ONESELF);
model.setMode(ACER);
controller.setModel(model);
final UnitView view = new UnitView(null);
view.setModel(model);
controller.setView(view);
view.setController(controller);
controller.init();
// To Model
view.setVisible(true);
System.out.println("View canceled ? " + view.isCancel());
System.out.println(view.getUnit());
System.out.println(model.getProduct());
System.out.println(model.getOperation());
System.out.println(model.getOperationComment());
}
Aggregations