Projects

There are projects I worked on and wanted to write something about. From newest to oldest.

External Web Interface for Suppliers

1C:Enterprise React.js Flask

Our customer was the owner of a trading company. Part of its activity is pricing: employees of the company contacted suppliers, determining which of them was more profitable to place customer orders considering prices, delivery times and other conditions.

We were required to make it so that they could simply send suppliers links to a web interface where they could enter prices and answer additional questions.

The platform's web interface could not be used due to license savings. Therefore, I wrote a React.js web application that works with the 1C:Enterprise database through a REST interface specially designed for this.

Have a look at project's demo on my GitHub.

UAC Currency Rates Crawler

1C:Enterprise Flask MongoDB

We wanted to give FirstBit ERP users the ability to automatically receive dirham exchange rates published by the UAE Central Bank website.

The site parsing code could be added to the configuration itself, but this idea seemed to be problematic from several points of view: there is no convenient mechanism for obtaining rates on the Central Bank website, the site itself is unstable, and it is difficult to change the parsing logic in many databases in case we need to.

Therefore, I wrote a Python console application that regularly parses published exchange rates to a special database and sends them through a REST service. We deployed this application on our server, and I added only regular requests to the service on FirstBit ERP side.

Have a look at project's backend code on my GitHub.

Native Data History for FirstBit ERP

1C:Enterprise

I replaced the BSP versioning subsystem In the FirstBit ERP configuration with a platform's built-in mechanism that solves the same problem. The project included:

  1. An algorithm for migrating the accumulated data history from information registers to the native storage.
  2. A data processor to turn on and off the history for objects and their attributes. An early version can be viewed on GitHub.
  3. A data processor capable of displaying changes in different objects for a specified period in one list.
  4. Analysis of configuration objects (it was needed to turn off the data history for objects that do not make sense to version – non-shared 1cFresh objects, service catalogs, and so on).
  5. Improvements for the algorithm of unloading the infobase into XML files and loading from them to make it work with native data history.