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

blingyplus

New member
Dec 28, 2022
1
0
1
if you want to Crack it just go to app/http/controllers/install . Open installController.php file and go to function postDetails in that function look for the line pos boot & remove 3 lines after it. then try again.
thank you
 

L VYK

New member
May 12, 2022
7
0
1
Hello guys, please help, i want to show product's SKU in the invoice's First culumn istead of line # (please check the attached image)
Many thanks
 

Attachments

  • inv-SKUnumber.png
    inv-SKUnumber.png
    49.6 KB · Views: 27

PHPar

Member
Apr 27, 2021
27
25
13
Here's an example of how you could use Laravel's task scheduling feature to reset your system data on a daily basis:

  1. First, create a console command that performs the necessary data reset. You can do this by running the following Artisan command:

PHP:
php artisan make:command ResetDataCommand

This will create a new command class in your app/Console/Commands directory. You can then define the logic for resetting your data in the handle method of this class. Here's an example of what this might look like:


PHP:
<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;

class ResetDataCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'reset:data';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Reset system data';

/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
// Reset your data here
}
}

2. Next, open your App\Console\Kernel class and use the schedule method to schedule the reset:data command to run at a specific time each day. For example:

PHP:
protected function schedule(Schedule $schedule)
{
$schedule->command('reset:data')->daily();
}

This will run the reset:data command every day at midnight. You can adjust the schedule as needed by using a different frequency (e.g. weekly(), monthly(), etc.) or by specifying a specific time using the at method (e.g. ->dailyAt('17:00')).

3. Finally, be sure to register the scheduled task by adding the following entry to your crontab:

Code:
* * * * * php artisan schedule:run >> /dev/null 2>&1
 

andysam

Member
May 7, 2022
51
33
18
Is there any way to send payment reminder automatically?
Yes
Business settings >> Notification template>> Payment reminder

Edit the templates to ur requirements

Tick the check boxes bellow
Auto send SMS
Auto send whatsapp
Auto send email

NB: you must configure your SMS gateway and SMTP for this to work
 

aki11

Member
May 19, 2022
62
21
8
Yes
Business settings >> Notification template>> Payment reminder

Edit the templates to ur requirements

Tick the check boxes bellow
Auto send SMS
Auto send whatsapp
Auto send email

NB: you must configure your SMS gateway and SMTP for this to work
payment reminder When will it send? how to control the sending period
 

andysam

Member
May 7, 2022
51
33
18
payment reminder When will it send? how to control the sending period
payment reminder When will it send? how to control the sending period
Enable the Pay term in settings, input the pay term during sales thus 1 month or week, the system calculates the pay term from the sales date and when time is due then payment reminder notification will be sent to customer.
 

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