Skip to content

Commit

Permalink
Merge pull request #8 from bertjuuhh/patch-3
Browse files Browse the repository at this point in the history
Added all documented properties to SalesInvoiceLine item
  • Loading branch information
stephangroen committed Aug 10, 2015
2 parents 026c0f3 + 3d72b5c commit 79db945
Showing 1 changed file with 35 additions and 5 deletions.
40 changes: 35 additions & 5 deletions src/Picqer/Financials/Exact/SalesInvoiceLine.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,49 @@ class SalesInvoiceLine extends Model {
use Persistance\Storable;

protected $fillable = [
'Description',
'Discount',
'ID',
'AmountDC',
'AmountFC',
'CostCenter',
'CostCenterDescription',
'CostUnit',
'CostUnitDescription',
'Description',
'Discount',
'Division',
'ID',
'Employee',
'EmployeeFullName',
'EndTime',
'GLAccount',
'GLAccountDescription',
'InvoiceID',
'Item',
'ItemCode',
'ItemDescription',
'LineNumber',
'NetPrice',
'Notes',
'Pricelist',
'PricelistDescription',
'Project',
'ProjectDescription',
'Quantity',
'StartTime',
'Subscription',
'SubscriptionDescription',
'TaxSchedule',
'TaxScheduleCode',
'TaxScheduleDescription',
'UnitCode',
'UnitDescription',
'UnitPrice',
'VATAmountDC',
'VATAmountFC',
'VATCode',
'VATPercentage',
'VATCodeDescription',
'VATPercentage'
];

protected $url = 'salesinvoice/SalesInvoiceLines';

}
}

0 comments on commit 79db945

Please sign in to comment.