diff --git a/admin/order_details.php b/admin/order_details.php index 3cc3fdd..fac5bc9 100644 --- a/admin/order_details.php +++ b/admin/order_details.php @@ -34,9 +34,64 @@ if (!$order_id) { if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['status'])) { $new_status = $_POST['status']; + + $stmt = $pdo->prepare("SELECT status FROM orders WHERE id = ?"); + $stmt->execute([$order_id]); + $old_status = $stmt->fetchColumn(); + $update_stmt = $pdo->prepare("UPDATE orders SET status = ? WHERE id = ?"); $update_stmt->execute([$new_status, $order_id]); + // If status changed to 'paid', send notifications + if ($new_status === 'paid' && $old_status !== 'paid') { + require_once __DIR__ . '/../mail/MailService.php'; + + // Fetch order and client details for email + $stmt = $pdo->prepare(" + SELECT o.*, c.name as client_company_name, u.email as client_email + FROM orders o + JOIN clients c ON o.client_id = c.id + JOIN users u ON c.id = u.client_id + WHERE o.id = ? AND u.id = (SELECT MIN(id) FROM users WHERE client_id = o.client_id) + "); + $stmt->execute([$order_id]); + $order_details_for_email = $stmt->fetch(PDO::FETCH_ASSOC); + + if ($order_details_for_email && !empty($order_details_for_email['client_email'])) { + $client_email = $order_details_for_email['client_email']; + $order_details_link = get_site_url() . '/order_details.php?id=' . $order_id; + $admin_email = getenv('MAIL_TO') ?: 'admin@example.com'; + + // 4. Client - Payment Confirmation + $subject_client = "Payment Confirmation for Order #{$order_id}"; + $body_html_client = "

Your payment for order #{$order_id} has been confirmed.

" + . "

Order Number: {$order_id}

" + . "

Paid Amount: " . format_currency($order_details_for_email['total_amount']) . "

" + . "

Thank you for your purchase!

" + . "

You can view your order details here: {$order_details_link}

"; + $body_text_client = "Your payment for order #{$order_id} has been confirmed.\n" + . "Order Number: {$order_id}\n" + . "Paid Amount: " . format_currency($order_details_for_email['total_amount']) . "\n" + . "Thank you for your purchase!\n" + . "View your order details here: {$order_details_link}"; + MailService::sendMail($client_email, $subject_client, $body_html_client, $body_text_client); + + // 5. Admin - Payment Confirmation + $subject_admin = "Payment Received for Order #{$order_id}"; + $body_html_admin = "

Payment has been confirmed for order #{$order_id}.

" + . "

Order Number: {$order_id}

" + . "

Client: {$order_details_for_email['client_company_name']}

" + . "

Paid Amount: " . format_currency($order_details_for_email['total_amount']) . "

" + . "

Payment Reference ID: (Online Payment)

"; // Placeholder + $body_text_admin = "Payment has been confirmed for order #{$order_id}.\n" + . "Order Number: {$order_id}\n" + . "Client: {$order_details_for_email['client_company_name']}\n" + . "Paid Amount: " . format_currency($order_details_for_email['total_amount']) . "\n" + . "Payment Reference ID: (Online Payment)"; // Placeholder + MailService::sendMail($admin_email, $subject_admin, $body_html_admin, $body_text_admin); + } + } + header("Location: order_details.php?id=$order_id"); exit; } diff --git a/db/migrations/028_create_suppliers_table.sql b/db/migrations/028_create_suppliers_table.sql new file mode 100644 index 0000000..8415e77 --- /dev/null +++ b/db/migrations/028_create_suppliers_table.sql @@ -0,0 +1,7 @@ +CREATE TABLE IF NOT EXISTS suppliers ( + id INT AUTO_INCREMENT PRIMARY KEY, + name VARCHAR(255) NOT NULL, + email VARCHAR(255) NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP +); diff --git a/debug_price.log b/debug_price.log index 64fff2a..498d591 100644 --- a/debug_price.log +++ b/debug_price.log @@ -48,6 +48,12 @@ Found product price. Net: 233.2, Gross: 286.84 FINAL: Returning Net: 233.2, Gross: 286.84 --- --- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- START getEffectivePrice for product 1, client 1 Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} Found client price. Net: 894.31, Gross: 1100 @@ -98,6 +104,48 @@ Found product price. Net: 233.2, Gross: 286.84 FINAL: Returning Net: 233.2, Gross: 286.84 --- --- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- START getEffectivePrice for product 1, client Client price not found or not set, falling back to product price. Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} @@ -147,6 +195,12 @@ Found product price. Net: 233.2, Gross: 286.84 FINAL: Returning Net: 233.2, Gross: 286.84 --- --- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- START getEffectivePrice for product 1, client 1 Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} Found client price. Net: 894.31, Gross: 1100 @@ -197,6 +251,24 @@ Found product price. Net: 233.2, Gross: 286.84 FINAL: Returning Net: 233.2, Gross: 286.84 --- --- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- START getEffectivePrice for product 1, client Client price not found or not set, falling back to product price. Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} @@ -246,6 +318,12 @@ Found product price. Net: 233.2, Gross: 286.84 FINAL: Returning Net: 233.2, Gross: 286.84 --- --- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- START getEffectivePrice for product 1, client 1 Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} Found client price. Net: 894.31, Gross: 1100 @@ -296,105 +374,12 @@ Found product price. Net: 233.2, Gross: 286.84 FINAL: Returning Net: 233.2, Gross: 286.84 --- --- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- START getEffectivePrice for product 2, client 1 Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} Found client price. Net: 1056.91, Gross: 1300 FINAL: Returning Net: 1056.91, Gross: 1300 --- --- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- START getEffectivePrice for product 2, client 1 Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} Found client price. Net: 1056.91, Gross: 1300 @@ -506,1231 +491,6 @@ Found product price. Net: 233.2, Gross: 286.84 FINAL: Returning Net: 233.2, Gross: 286.84 --- --- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- START getEffectivePrice for product 2, client 1 Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} Found client price. Net: 1056.91, Gross: 1300 @@ -2001,1252 +761,6 @@ Found client price. Net: 1056.91, Gross: 1300 FINAL: Returning Net: 1056.91, Gross: 1300 --- --- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- START getEffectivePrice for product 1, client Client price not found or not set, falling back to product price. Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} @@ -3352,48 +866,10 @@ Found client price. Net: 1056.91, Gross: 1300 FINAL: Returning Net: 1056.91, Gross: 1300 --- --- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 --- --- START getEffectivePrice for product 2, client 1 @@ -3402,60 +878,18 @@ Found client price. Net: 1056.91, Gross: 1300 FINAL: Returning Net: 1056.91, Gross: 1300 --- --- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- START getEffectivePrice for product 2, client 1 Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} Found client price. Net: 1056.91, Gross: 1300 FINAL: Returning Net: 1056.91, Gross: 1300 --- --- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- START getEffectivePrice for product 2, client 1 Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} Found client price. Net: 1056.91, Gross: 1300 FINAL: Returning Net: 1056.91, Gross: 1300 --- --- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- START getEffectivePrice for product 2, client 1 Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} Found client price. Net: 1056.91, Gross: 1300 @@ -3511,750 +945,6 @@ Found product price. Net: 233.2, Gross: 286.84 FINAL: Returning Net: 233.2, Gross: 286.84 --- --- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- START getEffectivePrice for product 2, client 1 Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} Found client price. Net: 1056.91, Gross: 1300 @@ -4311,106 +1001,12 @@ Found product price. Net: 233.2, Gross: 286.84 FINAL: Returning Net: 233.2, Gross: 286.84 --- --- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- START getEffectivePrice for product 2, client 1 Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} Found client price. Net: 1056.91, Gross: 1300 FINAL: Returning Net: 1056.91, Gross: 1300 --- --- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- START getEffectivePrice for product 2, client 1 Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} Found client price. Net: 1056.91, Gross: 1300 @@ -4528,181 +1124,12 @@ Found client price. Net: 1056.91, Gross: 1300 FINAL: Returning Net: 1056.91, Gross: 1300 --- --- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- START getEffectivePrice for product 2, client 1 Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} Found client price. Net: 1056.91, Gross: 1300 FINAL: Returning Net: 1056.91, Gross: 1300 --- --- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- START getEffectivePrice for product 2, client 1 Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} Found client price. Net: 1056.91, Gross: 1300 @@ -4808,6 +1235,375 @@ Found product price. Net: 233.2, Gross: 286.84 FINAL: Returning Net: 233.2, Gross: 286.84 --- --- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 1, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} +Found product price. Net: 1111, Gross: 1366.53 +FINAL: Returning Net: 1111, Gross: 1366.53 +--- +--- +START getEffectivePrice for product 2, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} +Found product price. Net: 1318.05, Gross: 1621.2 +FINAL: Returning Net: 1318.05, Gross: 1621.2 +--- +--- +START getEffectivePrice for product 3, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} +Found product price. Net: 9.95, Gross: 12.24 +FINAL: Returning Net: 9.95, Gross: 12.24 +--- +--- +START getEffectivePrice for product 4, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} +Found product price. Net: 9.95, Gross: 12.24 +FINAL: Returning Net: 9.95, Gross: 12.24 +--- +--- +START getEffectivePrice for product 5, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} +Found product price. Net: 68, Gross: 83.64 +FINAL: Returning Net: 68, Gross: 83.64 +--- +--- +START getEffectivePrice for product 6, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} +Found product price. Net: 171.6, Gross: 211.07 +FINAL: Returning Net: 171.6, Gross: 211.07 +--- +--- +START getEffectivePrice for product 7, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} +Found product price. Net: 233.2, Gross: 286.84 +FINAL: Returning Net: 233.2, Gross: 286.84 +--- +--- +START getEffectivePrice for product 1, client 1 +Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} +Found client price. Net: 894.31, Gross: 1100 +FINAL: Returning Net: 894.31, Gross: 1100 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 3, client 1 +Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} +Found client price. Net: 32.52, Gross: 40 +FINAL: Returning Net: 32.52, Gross: 40 +--- +--- +START getEffectivePrice for product 4, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} +Found product price. Net: 9.95, Gross: 12.24 +FINAL: Returning Net: 9.95, Gross: 12.24 +--- +--- +START getEffectivePrice for product 5, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} +Found product price. Net: 68, Gross: 83.64 +FINAL: Returning Net: 68, Gross: 83.64 +--- +--- +START getEffectivePrice for product 6, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} +Found product price. Net: 171.6, Gross: 211.07 +FINAL: Returning Net: 171.6, Gross: 211.07 +--- +--- +START getEffectivePrice for product 7, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} +Found product price. Net: 233.2, Gross: 286.84 +FINAL: Returning Net: 233.2, Gross: 286.84 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 1, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} +Found product price. Net: 1111, Gross: 1366.53 +FINAL: Returning Net: 1111, Gross: 1366.53 +--- +--- +START getEffectivePrice for product 2, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} +Found product price. Net: 1318.05, Gross: 1621.2 +FINAL: Returning Net: 1318.05, Gross: 1621.2 +--- +--- +START getEffectivePrice for product 3, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} +Found product price. Net: 9.95, Gross: 12.24 +FINAL: Returning Net: 9.95, Gross: 12.24 +--- +--- +START getEffectivePrice for product 4, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} +Found product price. Net: 9.95, Gross: 12.24 +FINAL: Returning Net: 9.95, Gross: 12.24 +--- +--- +START getEffectivePrice for product 5, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} +Found product price. Net: 68, Gross: 83.64 +FINAL: Returning Net: 68, Gross: 83.64 +--- +--- +START getEffectivePrice for product 6, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} +Found product price. Net: 171.6, Gross: 211.07 +FINAL: Returning Net: 171.6, Gross: 211.07 +--- +--- +START getEffectivePrice for product 7, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} +Found product price. Net: 233.2, Gross: 286.84 +FINAL: Returning Net: 233.2, Gross: 286.84 +--- +--- +START getEffectivePrice for product 1, client 1 +Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} +Found client price. Net: 894.31, Gross: 1100 +FINAL: Returning Net: 894.31, Gross: 1100 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 3, client 1 +Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} +Found client price. Net: 32.52, Gross: 40 +FINAL: Returning Net: 32.52, Gross: 40 +--- +--- +START getEffectivePrice for product 4, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} +Found product price. Net: 9.95, Gross: 12.24 +FINAL: Returning Net: 9.95, Gross: 12.24 +--- +--- +START getEffectivePrice for product 5, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} +Found product price. Net: 68, Gross: 83.64 +FINAL: Returning Net: 68, Gross: 83.64 +--- +--- +START getEffectivePrice for product 6, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} +Found product price. Net: 171.6, Gross: 211.07 +FINAL: Returning Net: 171.6, Gross: 211.07 +--- +--- +START getEffectivePrice for product 7, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} +Found product price. Net: 233.2, Gross: 286.84 +FINAL: Returning Net: 233.2, Gross: 286.84 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 1, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} +Found product price. Net: 1111, Gross: 1366.53 +FINAL: Returning Net: 1111, Gross: 1366.53 +--- +--- +START getEffectivePrice for product 2, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} +Found product price. Net: 1318.05, Gross: 1621.2 +FINAL: Returning Net: 1318.05, Gross: 1621.2 +--- +--- +START getEffectivePrice for product 3, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} +Found product price. Net: 9.95, Gross: 12.24 +FINAL: Returning Net: 9.95, Gross: 12.24 +--- +--- +START getEffectivePrice for product 4, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} +Found product price. Net: 9.95, Gross: 12.24 +FINAL: Returning Net: 9.95, Gross: 12.24 +--- +--- +START getEffectivePrice for product 5, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} +Found product price. Net: 68, Gross: 83.64 +FINAL: Returning Net: 68, Gross: 83.64 +--- +--- +START getEffectivePrice for product 6, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} +Found product price. Net: 171.6, Gross: 211.07 +FINAL: Returning Net: 171.6, Gross: 211.07 +--- +--- +START getEffectivePrice for product 7, client +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} +Found product price. Net: 233.2, Gross: 286.84 +FINAL: Returning Net: 233.2, Gross: 286.84 +--- +--- +START getEffectivePrice for product 1, client 1 +Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} +Found client price. Net: 894.31, Gross: 1100 +FINAL: Returning Net: 894.31, Gross: 1100 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 3, client 1 +Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} +Found client price. Net: 32.52, Gross: 40 +FINAL: Returning Net: 32.52, Gross: 40 +--- +--- +START getEffectivePrice for product 4, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} +Found product price. Net: 9.95, Gross: 12.24 +FINAL: Returning Net: 9.95, Gross: 12.24 +--- +--- +START getEffectivePrice for product 5, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} +Found product price. Net: 68, Gross: 83.64 +FINAL: Returning Net: 68, Gross: 83.64 +--- +--- +START getEffectivePrice for product 6, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} +Found product price. Net: 171.6, Gross: 211.07 +FINAL: Returning Net: 171.6, Gross: 211.07 +--- +--- +START getEffectivePrice for product 7, client 1 +Client price query executed. Found: No +Client price not found or not set, falling back to product price. +Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} +Found product price. Net: 233.2, Gross: 286.84 +FINAL: Returning Net: 233.2, Gross: 286.84 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- +START getEffectivePrice for product 2, client 1 +Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} +Found client price. Net: 1056.91, Gross: 1300 +FINAL: Returning Net: 1056.91, Gross: 1300 +--- +--- START getEffectivePrice for product 1, client Client price not found or not set, falling back to product price. Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} @@ -4974,990 +1770,3 @@ Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84 Found product price. Net: 233.2, Gross: 286.84 FINAL: Returning Net: 233.2, Gross: 286.84 --- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1111.00","price_gross":"1366.53"} -Found product price. Net: 1111, Gross: 1366.53 -FINAL: Returning Net: 1111, Gross: 1366.53 ---- ---- -START getEffectivePrice for product 2, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"1318.05","price_gross":"1621.20"} -Found product price. Net: 1318.05, Gross: 1621.2 -FINAL: Returning Net: 1318.05, Gross: 1621.2 ---- ---- -START getEffectivePrice for product 3, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 4, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 1, client 1 -Client price query executed. Found: {"price_net":"894.31","price_gross":"1100.00"} -Found client price. Net: 894.31, Gross: 1100 -FINAL: Returning Net: 894.31, Gross: 1100 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 3, client 1 -Client price query executed. Found: {"price_net":"32.52","price_gross":"40.00"} -Found client price. Net: 32.52, Gross: 40 -FINAL: Returning Net: 32.52, Gross: 40 ---- ---- -START getEffectivePrice for product 4, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"9.95","price_gross":"12.24"} -Found product price. Net: 9.95, Gross: 12.24 -FINAL: Returning Net: 9.95, Gross: 12.24 ---- ---- -START getEffectivePrice for product 5, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"68.00","price_gross":"83.64"} -Found product price. Net: 68, Gross: 83.64 -FINAL: Returning Net: 68, Gross: 83.64 ---- ---- -START getEffectivePrice for product 6, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"171.60","price_gross":"211.07"} -Found product price. Net: 171.6, Gross: 211.07 -FINAL: Returning Net: 171.6, Gross: 211.07 ---- ---- -START getEffectivePrice for product 7, client 1 -Client price query executed. Found: No -Client price not found or not set, falling back to product price. -Product price query executed. Found: {"price_net":"233.20","price_gross":"286.84"} -Found product price. Net: 233.2, Gross: 286.84 -FINAL: Returning Net: 233.2, Gross: 286.84 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- ---- -START getEffectivePrice for product 2, client 1 -Client price query executed. Found: {"price_net":"1056.91","price_gross":"1300.00"} -Found client price. Net: 1056.91, Gross: 1300 -FINAL: Returning Net: 1056.91, Gross: 1300 ---- diff --git a/includes/header.php b/includes/header.php index a3dcc5d..5a30f4b 100644 --- a/includes/header.php +++ b/includes/header.php @@ -1,6 +1,6 @@ $net, 'gross' => $gross]; +} + +function get_site_url() { + $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://"; + $host = $_SERVER['HTTP_HOST']; + return $protocol . $host; } \ No newline at end of file diff --git a/index.php b/index.php index 311c29d..537c225 100644 --- a/index.php +++ b/index.php @@ -1,4 +1,8 @@

-