Merge pull request #1411 from laravel-vesuvius/customer

Customers_model: api_encode: add timezone field
This commit is contained in:
Alex Tselegidis 2023-10-09 15:48:15 +02:00 committed by GitHub
commit f49f65af69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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;