Product[] products = externalsales.getProductsCatalog();
Customer[] customers = externalsales.getCustomers();
if (products == null || customers == null){
throw new BasicException(AppLocal.getIntString("message.returnnull"));
}
if (products.length > 0){
dlintegration.syncProductsBefore();
Date now = new Date();
for (Product product : products) {
// Synchonization of taxcategories
TaxCategoryInfo tc = new TaxCategoryInfo(product.getTax().getId(), product.getTax().getName());
dlintegration.syncTaxCategory(tc);
// Synchonization of taxes
TaxInfo t = new TaxInfo(
product.getTax().getId(),
product.getTax().getName(),
tc.getID(),
null,
null,
product.getTax().getPercentage() / 100,
false,
0);
dlintegration.syncTax(t);
// Synchonization of categories
CategoryInfo c = new CategoryInfo(product.getCategory().getId(), product.getCategory().getName(), null);
dlintegration.syncCategory(c);
// Synchonization of products
ProductInfoExt p = new ProductInfoExt();
p.setID(product.getId());
p.setReference(product.getId());
p.setCode(product.getEan() == null || product.getEan().equals("") ? product.getId() : product.getEan());
p.setName(product.getName());
p.setCom(false);
p.setScale(false);
p.setPriceBuy(product.getPurchasePrice());
p.setPriceSell(product.getListPrice());
p.setCategoryID(c.getID());
p.setTaxCategoryID(tc.getID());
p.setImage(ImageUtils.readImage(product.getImageUrl()));
dlintegration.syncProduct(p);
// Synchronization of stock
if (product instanceof ProductPlus) {
ProductPlus productplus = (ProductPlus) product;
double diff = productplus.getQtyonhand() - dlsales.findProductStock(warehouse, p.getID(), null);
Object[] diary = new Object[7];
diary[0] = UUID.randomUUID().toString();
diary[1] = now;
diary[2] = diff > 0.0
? MovementReason.IN_MOVEMENT.getKey()
: MovementReason.OUT_MOVEMENT.getKey();
diary[3] = warehouse;
diary[4] = p.getID();
diary[5] = new Double(diff);
diary[6] = new Double(p.getPriceBuy());
dlsales.getStockDiaryInsert().exec(diary);
}
}
// datalogic.syncProductsAfter();
}
if (customers.length > 0 ) {
dlintegration. syncCustomersBefore();
for (Customer customer : customers) {
CustomerInfoExt cinfo = new CustomerInfoExt(customer.getId());
cinfo.setSearchkey(customer.getSearchKey());
cinfo.setName(customer.getName());
cinfo.setNotes(customer.getDescription());
// TODO: Finish the integration of all fields.
dlintegration.syncCustomer(cinfo);
}
}
if (products.length == 0 && customers.length == 0) {
return new MessageInf(MessageInf.SGN_NOTICE, AppLocal.getIntString("message.zeroproducts"));
} else {
return new MessageInf(MessageInf.SGN_SUCCESS, AppLocal.getIntString("message.syncproductsok"), AppLocal.getIntString("message.syncproductsinfo", products.length, customers.length));
}
} catch (ServiceException e) {
throw new BasicException(AppLocal.getIntString("message.serviceexception"), e);
} catch (RemoteException e){
throw new BasicException(AppLocal.getIntString("message.remoteexception"), e);
} catch (MalformedURLException e){
throw new BasicException(AppLocal.getIntString("message.malformedurlexception"), e);
}
}