diff --git a/app/Export/CSV/QuoteItemExport.php b/app/Export/CSV/QuoteItemExport.php index fb00ab918877..ad1ded90ca73 100644 --- a/app/Export/CSV/QuoteItemExport.php +++ b/app/Export/CSV/QuoteItemExport.php @@ -78,7 +78,7 @@ class QuoteItemExport extends BaseExport 'tax_name2' => 'item.tax_name2', 'tax_name3' => 'item.tax_name3', 'line_total' => 'item.line_total', - 'gross_line_total' => 'item.gross_line_total', + // 'gross_line_total' => 'item.gross_line_total', 'custom_value1' => 'item.custom_value1', 'custom_value2' => 'item.custom_value2', 'custom_value3' => 'item.custom_value3', diff --git a/app/Models/Client.php b/app/Models/Client.php index 2a00e87ff2b7..7a4e00c1753b 100644 --- a/app/Models/Client.php +++ b/app/Models/Client.php @@ -666,8 +666,6 @@ class Client extends BaseModel implements HasLocalePreference $offset -= $timezone->utc_offset; $offset += ($entity_send_time * 3600); - - nlog("offset = {$offset}"); return $offset; }