| @@ -15,7 +15,6 @@ | ||
| 15 | 15 | * @property Byte $Main Indicates the main unit per division. Will be used when creating new item | 
| 16 | 16 | * @property String $TimeUnit If Type = 'T' (time) then this fields indicates the type of time frame. yy = Year, mm = Month, wk = Week, dd = Day, hh = Hour, mi = Minute, ss = Second | 
| 17 | 17 | * @property String $Type Type 'Time' is especially important for contracts. | 
| 18 | - | |
| 19 | 18 | */ | 
| 20 | 19 | class Units extends Model | 
| 21 | 20 |  {
 | 
| @@ -5,7 +5,7 @@ | ||
| 5 | 5 | |
| 6 | 6 | public function find($id) | 
| 7 | 7 |      { | 
| 8 | - $filter = $this->primaryKey . " eq guid'$id'"; | |
| 8 | + $filter = $this->primaryKey . " eq guid'$id'"; | |
| 9 | 9 | |
| 10 | 10 |          if ($this->primaryKey === 'Code') { | 
| 11 | 11 | $filter = $this->primaryKey . " eq $id"; | 
| @@ -46,8 +46,7 @@ | ||
| 46 | 46 | $format = ($this->url == 'crm/Accounts' && $key === 'Code') ? '%18s' : '%s'; | 
| 47 | 47 |              if (preg_match('/^[\w]{8}-([\w]{4}-){3}[\w]{12}$/', $code)) { | 
| 48 | 48 | $format = "guid'$format'"; | 
| 49 | - } | |
| 50 | -            elseif (is_string($code)) { | |
| 49 | +            } elseif (is_string($code)) { | |
| 51 | 50 | $format = "'$format'"; | 
| 52 | 51 | } | 
| 53 | 52 | |
| @@ -358,8 +358,7 @@ | ||
| 358 | 358 |              if (array_key_exists('d', $json)) { | 
| 359 | 359 |                  if (array_key_exists('__next', $json['d'])) { | 
| 360 | 360 | $this->nextUrl = $json['d']['__next']; | 
| 361 | - } | |
| 362 | -                else { | |
| 361 | +                } else { | |
| 363 | 362 | $this->nextUrl = null; | 
| 364 | 363 | } | 
| 365 | 364 | |
| @@ -94,8 +94,8 @@ | ||
| 94 | 94 | protected $middleWares = []; | 
| 95 | 95 | |
| 96 | 96 | /** | 
| 97 | - * @var | |
| 98 | - */ | |
| 97 | + * @var | |
| 98 | + */ | |
| 99 | 99 | public $nextUrl = null; | 
| 100 | 100 | |
| 101 | 101 | /** | 
| @@ -144,8 +144,7 @@ | ||
| 144 | 144 | |
| 145 | 145 | return true; | 
| 146 | 146 | } | 
| 147 | - } | |
| 148 | -        catch (\Exception $e) { | |
| 147 | +        } catch (\Exception $e) { | |
| 149 | 148 | // We tried lets leave it as is. | 
| 150 | 149 | } | 
| 151 | 150 | |
| @@ -18,7 +18,7 @@ | ||
| 18 | 18 | use Persistance\Storable; | 
| 19 | 19 | |
| 20 | 20 | protected $fillable = [ | 
| 21 | - 'ID', | |
| 21 | + 'ID', | |
| 22 | 22 | 'CallbackURL', | 
| 23 | 23 | 'Topic', | 
| 24 | 24 | ]; | 
| @@ -32,22 +32,22 @@ | ||
| 32 | 32 | protected $primaryKey = 'HID'; | 
| 33 | 33 | |
| 34 | 34 | protected $fillable = [ | 
| 35 | - 'AccountCode', | |
| 36 | - 'AccountId', | |
| 37 | - 'AccountName', | |
| 38 | - 'Amount', | |
| 39 | - 'AmountInTransit', | |
| 40 | - 'CurrencyCode', | |
| 41 | - 'Description', | |
| 42 | - 'DueDate', | |
| 43 | - 'EntryNumber', | |
| 44 | - 'HID', | |
| 45 | - 'Id', | |
| 46 | - 'InvoiceDate', | |
| 47 | - 'InvoiceNumber', | |
| 48 | - 'JournalCode', | |
| 49 | - 'JournalDescription', | |
| 50 | - 'YourRef', | |
| 35 | + 'AccountCode', | |
| 36 | + 'AccountId', | |
| 37 | + 'AccountName', | |
| 38 | + 'Amount', | |
| 39 | + 'AmountInTransit', | |
| 40 | + 'CurrencyCode', | |
| 41 | + 'Description', | |
| 42 | + 'DueDate', | |
| 43 | + 'EntryNumber', | |
| 44 | + 'HID', | |
| 45 | + 'Id', | |
| 46 | + 'InvoiceDate', | |
| 47 | + 'InvoiceNumber', | |
| 48 | + 'JournalCode', | |
| 49 | + 'JournalDescription', | |
| 50 | + 'YourRef', | |
| 51 | 51 | ]; | 
| 52 | 52 | |
| 53 | 53 | protected $url = 'read/financial/ReceivablesList'; |