Customers_model: api_encode: add timezone field

This commit is contained in:
Vadim Serdunich 2023-09-15 16:40:02 +03:00
parent c3eb4d1632
commit 249e67ef91
1 changed files with 2 additions and 1 deletions

View File

@ -495,7 +495,8 @@ class Customers_model extends EA_Model {
'address' => $customer['address'], 'address' => $customer['address'],
'city' => $customer['city'], 'city' => $customer['city'],
'zip' => $customer['zip_code'], 'zip' => $customer['zip_code'],
'notes' => $customer['notes'] 'notes' => $customer['notes'],
'timezone' => $customer['timezone'],
]; ];
$customer = $encoded_resource; $customer = $encoded_resource;