UPDATE INSTRUCTION:
The following files has been changed in version 1.3
Mobile app files
- config.xml
- www/index.html
- www/js/template.js
- www/js/map-wrapper.js
- www/js/app.js
- www/css/app.css
- www/lib/jquery-v3.4.1.js - new file
- www/lib/jquery-v3.3.1.js - old library file please delete
- www/res/icons/ios/icon-83.5@2x.png - new file
Modules files
- assets/js/app.js
- components/itemWrapper.php
- components/mobileWrapper.php
- components/LocationWrapper.php - new file
- controllers/AjaxController.php
- controllers/ApiController.php
- controllers/CronController.php
- controllers/IndexController.php
- controllers/UpdateController.php
- translation-file/mobile2.php
- views/index/settings_application.php
- views/index/banner_add.php - new file
- views/index/banner_list.php - new file
- views/index/error.php - new file
- views/layouts/left_menu.php
- Mobileappv2Module.php
DATABASE
- new table - mobile2_homebanner
- new fields in table mobile2_cart
- new fields in table address_book_location
UPDATE TO KMRS FILE
-
issue with sms empty
fixed update the file componemts/PrintWrapper.php with http://bastisapp.com/helpfiles/PrintWrapper.phps
-
issue with non taxable item
in components/functions.php function displayOrderHTML in line 4132
change the condition
if($temp_subtotal>=0.0001){
$taxable_subtotal=($temp_subtotal+$temp_delivery_charges+$merchant_packaging_charge)*$tax;
}
to
if($temp_subtotal>=0.0001){
$taxable_subtotal=($temp_subtotal+$temp_delivery_charges+$merchant_packaging_charge)*$tax;
} else {
$taxable_subtotal=($temp_delivery_charges+$merchant_packaging_charge)*$tax;
}