Version 1.3.2

In This version we improved the product even more. here is complete changelog and update guide.

v1.3.2 (24-Oct-2024)

  • Add/Update Payment Method, with Icon. image
    image
  • Save Payment Type in POS & Orders Page. image
  • View Payment Types Chart in Reports image
  • Bug Fixes and General Code Enhancements: Various bug fixes and improvements for a more stable and efficient experience.

Update guide

Step 1: Update DB

Add a new column icon in the payment_types table.

ALTER TABLE payment_types
ADD COLUMN icon varchar(255) DEFAULT NULL;

Add a new column payment_type_id in the invoices table.

ALTER TABLE invoices
ADD COLUMN payment_type_id INT DEFAULT NULL;

Step 2: Update Backend Code

  • Replace the existing backend files with the latest version.
  • Follow the same steps as the initial setup of RestroPRO to configure the new features.

Step 3: Update Frontend Code

  • Similarly, replace and configure the frontend code, following the standard setup process for RestroPRO.