Dodaj metodę get_min_roas w klasie Products oraz zaktualizuj szablon product_history.php, aby wyświetlał linię limitu ROAS na wykresie.

This commit is contained in:
2025-08-20 16:24:53 +02:00
parent a14512dd19
commit 9e31461073
4 changed files with 106 additions and 53 deletions

View File

@@ -2,6 +2,12 @@
namespace factory;
class Products
{
static public function get_min_roas( $product_id )
{
global $mdb;
return $mdb -> get( 'products', 'min_roas', [ 'id' => $product_id ] );
}
static public function get_client_bestseller_min_roas( $client_id )
{
global $mdb;