You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Picqer/Financials/Exact/Me.php
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,7 @@
27
27
* @property bool $IsEmployeeSelfServiceUser Employee user with limited access and specific start page
28
28
* @property bool $IsMyFirmLiteUser MyFirm lite user of accountant with limited access and specific start page (internal use)
29
29
* @property bool $IsMyFirmPortalUser MyFirm user of accountant with limited access and specific start page (internal use)
30
+
* @property bool $IsOEIMigrationMandatory Determines whether one exact identity migration is mandatory for the user. True - User does have to migrate, False - User does not have to migrate
30
31
* @property bool $IsStarterUser Starter user with limited access and specific start page (internal use)
31
32
* @property string $Language Language spoken by this user
32
33
* @property string $LanguageCode Language (culture) that is used in Exact Online
Copy file name to clipboardExpand all lines: src/Picqer/Financials/Exact/PrintedSalesInvoice.php
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@
18
18
* @property string $EmailLayout Based on this layout the email text is produced
19
19
* @property string $ExtraText Extra text that can be added to the printed document and email
20
20
* @property string $InvoiceDate Date of the invoice
21
+
* @property string $PeppolCreationError Contains the error message if an error occurred during the sending via peppol
22
+
* @property string $PeppolCreationSuccess Contains information if sending via peppol was succesfully sent
21
23
* @property string $PostboxMessageCreationError Contains the error message if an error occurred during the sending of a postbox message
22
24
* @property string $PostboxMessageCreationSuccess Contains information if a postbox message was succesfully sent
23
25
* @property string $PostboxSender The postbox from where the message is sent
@@ -26,6 +28,7 @@
26
28
* @property bool $SendEmailToCustomer Set to True if an email containing the invoice should be sent to the invoice customer. This option overrules SendInvoiceToCustomerPostbox.
27
29
* @property string $SenderEmailAddress Email address from which the email will be sent. If not specified, the company email address will be used.
28
30
* @property bool $SendInvoiceToCustomerPostbox Set to True if a postbox message containing the invoice should be sent to the invoice customer Take notes:The digital postbox option only available if the license has Mailbox feature set.
31
+
* @property bool $SendInvoiceViaPeppol Set to True if the invoice should be sent via peppol to the invoice customer.
29
32
* @property bool $SendOutputBasedOnAccount Set to True if the output preference should be taken from the account. It will be either Document only, Email or Digital postbox. This option overrules both SendEmailToCustomer and SendInvoiceToCustomerPostbox. Take notes:The digital postbox option only available if the license has Mailbox feature set.
30
33
*/
31
34
class PrintedSalesInvoice extends Model
@@ -47,6 +50,8 @@ class PrintedSalesInvoice extends Model
47
50
'EmailLayout',
48
51
'ExtraText',
49
52
'InvoiceDate',
53
+
'PeppolCreationError',
54
+
'PeppolCreationSuccess',
50
55
'PostboxMessageCreationError',
51
56
'PostboxMessageCreationSuccess',
52
57
'PostboxSender',
@@ -55,6 +60,7 @@ class PrintedSalesInvoice extends Model
* @property bool $InvoiceAsQuoted Indicates whether the project is invoice as quoted
50
+
* @property string $InvoiceDescription Description for generate project invoice
50
51
* @property InvoiceTerm[] $InvoiceTerms Collection of invoice terms
51
52
* @property int $IsWBSRequiredForEntry Indicates whether the project WBS is required for time and cost entry E.g: 0 = Based on company setting, 1 = Yes, 2 = No
52
53
* @property string $Manager Responsible person for this project
* @property float $AverageHours Average hours per week in a schedule
11
+
* @property float $AverageHours Average hours per week in a schedulePlease be aware this property is mandatory if you use ScheduleType 1 or 2.For Time and Billing basic company, when creating a new schedule, the value is set to 0. When schedule entries are created, the BC will set the calculated value for Average hours per week.
* @property string $CreatorFullName Name of the creator
17
-
* @property float $Days Average days per week in the schedule
17
+
* @property float $Days Average days per week in the scheduleFor Time and Billing basic company, when creating a new schedule, the value is set to 0. When schedule entries are created, the BC will set the calculated value for Average days per week.
18
18
* @property string $Description Description of the schedule
19
19
* @property int $Division Division code
20
+
* @property string $Employee Employee ID of the schedule
21
+
* @property string $EmployeeFullName Employee full name of the schedule
20
22
* @property string $Employment Employment ID for schedule
21
-
* @property int $EmploymentHID Employment number
23
+
* @property string $EmploymentCLA Employment CLA ID of the schedule
24
+
* @property int $EmploymentNumber Employment number
22
25
* @property string $EndDate End date of the schedule
23
26
* @property float $Hours Number of hours per week in a CLA for which the schedule is built
24
-
* @property float $LeaveHoursCompensation Number of hours which are built up each week for later leave
27
+
* @property float $LeaveHoursCompensation Number of hours which are built up each week for later leaveFor Time and Billing basic company, the value is set to 0.
25
28
* @property int $Main Indication if the schedule is a main schedule for a CLA. 1 = Yes, 0 = No
26
29
* @property string $Modified Last modified date
27
30
* @property string $Modifier ID of modifier
28
31
* @property string $ModifierFullName Name of the modifier
29
32
* @property float $PaymentParttimeFactor Part-time factor for payroll calculation. Value between 0 and 1
30
-
* @property int $ScheduleType Type of schedule. 1 = Hours and average days, 2 = Hours and specific days, 3 = Hours per day, 4 = Time frames per day
33
+
* @property ScheduleEntry[] $ScheduleEntries The collection of schedule entries
34
+
* @property int $ScheduleType Type of schedule. 1 = Hours and average days, 2 = Hours and specific days, 3 = Hours per day, 4 = Time frames per day1 - Hours and average days, StartWeek will automatically set to 12 - Hours and specific days, StartWeek must be greater or equal to 1, AverageDaysPerWeek will automatically set to 03 - Hours per day, StartWeek must be greater or equal to 1, AverageHoursPerWeek and AverageDaysPerWeek will automatically set to 04 - Time frames per day, Hours per day, StartWeek must be greater or equal to 1, AverageHoursPerWeek and AverageDaysPerWeek will automatically set to 0Note: For Time and Billing basic company, the schedule type is automatically set to value "3 - Hour per day".
31
35
* @property string $ScheduleTypeDescription Description of the schedule type
32
-
* @property string $StartDate Week in the schedule which is used to start with. By default the number will be 1.
36
+
* @property string $StartDate Start date of the schedule
33
37
* @property int $StartWeek Week to start the schedule from for an employee
Copy file name to clipboardExpand all lines: src/Picqer/Financials/Exact/SyncBankAccount.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,11 +18,11 @@
18
18
* @property string $EmployeeFullName Name of employee
19
19
* @property int $EmployeeHID Numeric number of Employee
20
20
* @property string $ID Primary key
21
-
* @property bool $Main This indicates if the bank account is the main bank account. Set this to true if the bank account is the main bank account. If there are no bank accounts, the first bank account will automatically be set as the main bank account.
21
+
* @property bool $Main This indicates if the bank account is the main bank account
22
22
* @property string $Modified Last modified date
23
23
* @property string $Modifier User ID of modifier
24
24
* @property string $ModifierFullName Name of modifier
25
-
* @property string $Number This is the bank account number.
25
+
* @property string $Number This is the bank account number. (maximum of 34 characters)
* @property bool $InvoiceAsQuoted Indicates whether the project is invoice as quoted
50
50
* @property int $IsWBSRequiredForEntry Indicates whether the project WBS is required for time and cost entry E.g: 0 = Based on company setting, 1 = Yes, 2 = No
51
+
* @property string $InvoiceDescription Description for generate project invoice
51
52
* @property string $Manager Responsible person for this project
52
53
* @property string $ManagerFullname Name of Manager
0 commit comments