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

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;