From 249e67ef91bdb91cf2744f5f287c50b8b7ba4977 Mon Sep 17 00:00:00 2001 From: Vadim Serdunich Date: Fri, 15 Sep 2023 16:40:02 +0300 Subject: [PATCH] Customers_model: api_encode: add timezone field --- application/models/Customers_model.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/models/Customers_model.php b/application/models/Customers_model.php index b68efffc..79911a41 100644 --- a/application/models/Customers_model.php +++ b/application/models/Customers_model.php @@ -495,7 +495,8 @@ class Customers_model extends EA_Model { 'address' => $customer['address'], 'city' => $customer['city'], 'zip' => $customer['zip_code'], - 'notes' => $customer['notes'] + 'notes' => $customer['notes'], + 'timezone' => $customer['timezone'], ]; $customer = $encoded_resource;