diff --git a/app/DataMapper/Tax/US/Rule.php b/app/DataMapper/Tax/US/Rule.php index 4a4527057b9f..6749ad162a0c 100644 --- a/app/DataMapper/Tax/US/Rule.php +++ b/app/DataMapper/Tax/US/Rule.php @@ -145,8 +145,6 @@ class Rule extends BaseRule implements RuleInterface */ public function taxPhysical($item): self { - nlog("tax physical"); - nlog($item); $this->default($item); return $this; diff --git a/app/Services/PdfMaker/Design.php b/app/Services/PdfMaker/Design.php index 9bb0e91f9bbb..0ca327ce1572 100644 --- a/app/Services/PdfMaker/Design.php +++ b/app/Services/PdfMaker/Design.php @@ -841,7 +841,6 @@ class Design extends BaseDesign $table_type = "product_quote_columns"; } - foreach ($items as $row) { $element = ['element' => 'tr', 'elements' => []]; @@ -874,8 +873,6 @@ class Design extends BaseDesign // $task.cost => $task.rate // $task.quantity => $task.hours - nlog("{$key} => {$cell}"); - if ($cell == '$task.rate') { $element['elements'][] = ['element' => 'td', 'content' => $row['$task.cost'], 'properties' => ['data-ref' => 'task_table-task.cost-td']]; } elseif ($cell == '$product.discount' && !$this->company->enable_product_discount) {