Requirement for receipts Guatemala

Issue #162 duplicate
Cesar Lopez TAS GT created an issue

Hello Lotgroup.

In Guatemala, every time the cashier charges, the system must emitt a receipt with some information that the government requieres and that system or software needs to be endorsed (approved) by the government. We have already developed a software that deals with this, and the only thing it requires is to get every transaction the system makes. This is developed in sql so every time a new transaction is done (payment), a trigger sends that info to our own data base, within the same instance, and gets the info for the receipt. This same software prints the receipt. I see that the data base you use is Firebird... is there a way that you could send the information to a simple table in sql, within the same server? a simple sql express would do. This is very important for us to install this with a real client.

Thank you very much.

The structure of the table in SQL should be:

  1. transaction id (string, or the type you use in your own data base, it should be the primary key)
  2. card id (string, or the type you use in your own data base)
  3. time and date in (date time)
  4. entry column number (integer or string, the type you use in your own data base, it registers the entry station´s id were the user entered the parking lot).
  5. time out (date time)
  6. payment PC number (integer or string, the type you use in your own data base, it registers the payment station´s id were the user payed the card).
  7. rate (integer or string, the rate that the user gets)
  8. amount (floating, or the type you use in your own data base, it stores the amount payed by the user)
  9. discount (floating, or the type you use in your own data base, stores the discount applyed to a client.

Comments (6)

  1. Ihor Bielykh

    Здравствуйте Лот Груп В Гватемале, каждый раз, когда заряжается касса, система должна выдавать квитанцию с некоторой информацией о том, что требует власть и что система или программное обеспечение должно быть одобрено (утверждено) властями. Мы уже разработали программное обеспечение, которое с этим справляется, и единственное, что она требует, - получать каждую транзакцию, которую производит система. Это происходит в SQL и каждый раз, когда производится новая транзакция (платеж), триггер отправляет эту информацию в нашу собственную базу данных, в пределах того же требования и получает информацию для квитанции. Это же программное обеспечение печатает квитанцию. Я вижу, что база данных, которую вы используете- Firebird ... вы могли бы прислать информацию в виде простой таблицы в SQL, в том же сервере? простой SQL Express пойдёт. Это очень важно для нас, так как мы хотим применить это на работе с реальным клиентом.

    Спасибо большое.

    Структура таблицы в SQL должна выглядеть следующим образом:

    1. id транзакции (строка или тот тип, который вы используете в своей базе данных, он должен быть основным)

    2. id карты (строка или тот тип, который вы используете в своей базе данных)

    3. время и дата въезда (дата/время)

    4. введите номер колонки (целое число или символ, тот тип, который вы используете в вашей базе данных, она регистрирует id станции оплаты, где пользователь оплатил карту)

    5. время выезда (дата и время)

    6. Номер оплаты РС целое число или символ, тот тип, который вы используете в вашей базе данных, она регистрирует id станции оплаты, где пользователь оплатил карту)

    7. Тариф (целое число или символ, тариф, который получил пользователь)

    8. Сумма (переменная, или тот тип, который вы используете в вашей базе данных, он сохраняет сумму, оплаченную пользователем)

    9. Скидка (переменная, или тот тип, который вы используете вашей базе данных, сохраняет скидку, предоставленную клиент )

  2. Cesar Lopez TAS GT reporter

    I really think it would be a lot easier if we work the way we suggested. We are already working this way with another parking brand, since they told us the integration was going to take time, the cost would be big, and finally the time it takes for our government to authorize this is very long. The way we suggest I think is a lot easier and will help us very much with time. Either way I´m sending the requirement. Please review this and try to help us in the way we are suggesting.

  3. Log in to comment