Ultimate POS - Best Advanced Stock Management, Point of Sale & Invoicing application

Ultimate POS - Best Advanced Stock Management, Point of Sale & Invoicing application v6.6 – Untouched

No permission to download

vyn

Member
May 7, 2022
48
24
8
Haven't tried the update yet, still monitoring, too risky to apply to real business. Because as before, there is always a new patch to fix the latest version at this time. But, i hope, this version is stable.
Today, i've try in localhost..

I think this version 4.8 not ready to publish yet

1668954411299.png

so far, all form with TINYMCE button, will look like this "not found" icon.
ah, in invoice-layouts, its look like there is some error as well..
just wait another patch from developer..
 
  • Like
Reactions: barrydevelopers

jocani19

Active member
Jun 4, 2022
117
63
28
Today, i've try in localhost..

I think this version 4.8 not ready to publish yet

1668954411299.png

so far, all form with TINYMCE button, will look like this "not found" icon.
ah, in invoice-layouts, its look like there is some error as well..
just wait another patch from developer..
Hi, the problem with TINYMCE is over the file public/js/vendor.js!

I copy the versión from 4.7.8 and it works.
But the problem or the big problem is to understand why they used a new version of vendor.js in 4.8

baseURL+"/icons/"+t+"/icons.js doenst appear in vendor.js (version 4.8 of UltimatePOS)

4.7.8 public/js/vendor.js (7.738 KB)
vs
4.8 public/js/vendor.js (8.430 KB)


1668958058424.png
 

vyn

Member
May 7, 2022
48
24
8
Today, i've try in localhost..

I think this version 4.8 not ready to publish yet

1668954411299.png

so far, all form with TINYMCE button, will look like this "not found" icon.
ah, in invoice-layouts, its look like there is some error as well..
just wait another patch from developer..
Fixed: upload this folder to public/js/ with this attachment
 

Attachments

  • icons.zip
    31.6 KB · Views: 71
May 16, 2022
99
52
18
Hi, the problem with TINYMCE is over the file public/js/vendor.js!

I copy the versión from 4.7.8 and it works.
But the problem or the big problem is to understand why they used a new version of vendor.js in 4.8

baseURL+"/icons/"+t+"/icons.js doenst appear in vendor.js (version 4.8 of UltimatePOS)

4.7.8 public/js/vendor.js (7.738 KB)
vs
4.8 public/js/vendor.js (8.430 KB)


1668958058424.png

The developer is an asshole... many bugs...
 
  • Like
Reactions: jamson

vyn

Member
May 7, 2022
48
24
8
jaja, I think, something changed in that group of developers. At this moment is really obvious this is only for billing. In every single release there are a lot of bugs. Thats why I use an older release of the app
Which version do you think is more stable?
 

tang_mag

Active member
Sep 9, 2019
112
74
28
For me, the decline started in version 4. But I adjust y modify parts of the code to adjust bugs or add functions. I think if you are not a developer this code isn't the best to work. Better apps could be perfex, a lot of functionalities and hard work behind(already tested)
 
May 16, 2022
99
52
18
The first version was fantastic, it loaded fine on Localhost, then since they saw that the code was good, they raised the price, adding more features, I don't know if this was allowed on ENVATO, I'm a developer and a lot of that code was good . The version that I liked was 2.8 if I remember correctly.

But then they changed programmers or maybe many resigned or I don't know, who knows why. But even the support that used to be in less than 24 hours, the comments with "Please answer the ticket" were endless and weeks went by and the support tickets were not answered.

Now there's someone called the ULTIMATE FOSTERS, and he has absolutely no manners in responding to people.

I asked a question where I asked him when they would update to PHP 8 and Laravel 9... he told me that in the next version they would do it... Today I'm still waiting.

If you notice the code, they have tried to update it, now they use quotes, they fixed some accounting or billing errors.

They are only interested in selling, not supporting.

9211.jpg

9212.jpg
 
  • Like
Reactions: amayi and TechBrain
May 16, 2022
99
52
18
----

And for those who asked how to modify the decimal numbers... The zeros that appear and for some reason do not like to see them there

Decimal significant figures can be set for currency and quantity.

The default precision is 2 for currency and amount if you want to change it follow the steps below:

Go to config/constants.php
Change the value of currency_precision to change the precision of the currency. The maximum is 4.
Change the value of amount_precision to change the precision of the amount. The maximum is 4.

I have reviewed the script and I see it too messy... In the style of WIndows BUGS with its failed updates all the time...

Ok, this I found:

Different file path details

Login page : /resources/views/auth/login.blade.php

Registration page: /resources/views/auth/register.blade.php

Landing page: /resources/views/welcome.blade.php

Pricing page for the SaaS module: /Modules/Superadmin/Resources/views/pricing/index.blade.php

Design / design of invoices or receipts: / resources / views / sale_pos / receipts /

Packaging slip design: /resources/views/sale_pos/receipts/packing_slip.blade.php

Label or barcode label layout: resources/views/labels/partials/preview_2.blade.php

CSS path: pos/public/css/app.css

Sidebar Menu: Application/Http/Middleware/AdminSidebarMenu.php

Purchase invoice: pos/resources/views/purchase/partials/show_details.blade.php



To make it work for me in PHP8, what I did was modify line #46 of this file:
.\ultimate\public\install\index.php

And change this line:
$checks['php'] = (PHP_MAJOR_VERSION >= 7 && PHP_MINOR_VERSION >=2) ? true: false;

For this:
$checks['php'] = (PHP_MAJOR_VERSION >= 8 && PHP_MINOR_VERSION >=0) ? true: false;

I know, it's a very bad patch, but this is how I ended up optimizing the code for a client.
 
Last edited:

TechBrain

Active member
Nov 18, 2019
146
55
28
Pakistan
You must modify the code from that invoice design. There isnt a configuration to do that

----

And for those who asked how to modify the decimal numbers... The zeros that appear and for some reason do not like to see them there

Decimal significant figures can be set for currency and quantity.

The default precision is 2 for currency and amount if you want to change it follow the steps below:

Go to config/constants.php
Change the value of currency_precision to change the precision of the currency. The maximum is 4.
Change the value of amount_precision to change the precision of the amount. The maximum is 4.

I have reviewed the script and I see it too messy... In the style of WIndows BUGS with its failed updates all the time...

Ok, this I found:

Different file path details

Login page : /resources/views/auth/login.blade.php

Registration page: /resources/views/auth/register.blade.php

Landing page: /resources/views/welcome.blade.php

Pricing page for the SaaS module: /Modules/Superadmin/Resources/views/pricing/index.blade.php

Design / design of invoices or receipts: / resources / views / sale_pos / receipts /

Packaging slip design: /resources/views/sale_pos/receipts/packing_slip.blade.php

Label or barcode label layout: resources/views/labels/partials/preview_2.blade.php

CSS path: pos/public/css/app.css

Sidebar Menu: Application/Http/Middleware/AdminSidebarMenu.php

Purchase invoice: pos/resources/views/purchase/partials/show_details.blade.php



To make it work for me in PHP8, what I did was modify line #46 of this file:
.\ultimate\public\install\index.php

And change this line:
$checks['php'] = (PHP_MAJOR_VERSION >= 7 && PHP_MINOR_VERSION >=2) ? true: false;

For this:
$checks['php'] = (PHP_MAJOR_VERSION >= 8 && PHP_MINOR_VERSION >=0) ? true: false;

I know, it's a very bad patch, but this is how I ended up optimizing the code for a client.

Ok thanks for writing . But my question about the ending zeros on the invoice was using it by code not from constants or currency precision .. just editing the receipt php file .. there must be some function . like
str_replace .. something that just eliminates the ending zeros like before the Total on invoice is 20.00 and after apply the function it should just display the price as 20
 

magisalex

New member
Dec 27, 2020
11
20
3
----

And for those who asked how to modify the decimal numbers... The zeros that appear and for some reason do not like to see them there

Decimal significant figures can be set for currency and quantity.

The default precision is 2 for currency and amount if you want to change it follow the steps below:

Go to config/constants.php
Change the value of currency_precision to change the precision of the currency. The maximum is 4.
Change the value of amount_precision to change the precision of the amount. The maximum is 4.

I have reviewed the script and I see it too messy... In the style of WIndows BUGS with its failed updates all the time...

Ok, this I found:

Different file path details

Login page : /resources/views/auth/login.blade.php

Registration page: /resources/views/auth/register.blade.php

Landing page: /resources/views/welcome.blade.php

Pricing page for the SaaS module: /Modules/Superadmin/Resources/views/pricing/index.blade.php

Design / design of invoices or receipts: / resources / views / sale_pos / receipts /

Packaging slip design: /resources/views/sale_pos/receipts/packing_slip.blade.php

Label or barcode label layout: resources/views/labels/partials/preview_2.blade.php

CSS path: pos/public/css/app.css

Sidebar Menu: Application/Http/Middleware/AdminSidebarMenu.php

Purchase invoice: pos/resources/views/purchase/partials/show_details.blade.php



To make it work for me in PHP8, what I did was modify line #46 of this file:
.\ultimate\public\install\index.php

And change this line:
$checks['php'] = (PHP_MAJOR_VERSION >= 7 && PHP_MINOR_VERSION >=2) ? true: false;

For this:
$checks['php'] = (PHP_MAJOR_VERSION >= 8 && PHP_MINOR_VERSION >=0) ? true: false;

I know, it's a very bad patch, but this is how I ended up optimizing the code for a client.
good day sir, i think not just you allow installation php8 because maybe some of the dependencies that were using doesnt support php8. maybe you will encounter errors by doing that. just saying.
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu