-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
helpfulrobot
committed
Dec 31, 2015
1 parent
f0e51b0
commit b5e35a0
Showing
5 changed files
with
232 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
<?php | ||
|
||
class XeroExtension_Customer extends DataExtension { | ||
class XeroExtension_Customer extends DataExtension | ||
{ | ||
|
||
private static $db = array( | ||
'XeroContactID' => 'Varchar(255)' | ||
); | ||
private static $db = array( | ||
'XeroContactID' => 'Varchar(255)' | ||
); | ||
} | ||
|
||
class XeroExtension_Order extends DataExtension { | ||
class XeroExtension_Order extends DataExtension | ||
{ | ||
|
||
private static $db = array( | ||
'XeroInvoiceID' => 'Varchar(255)' | ||
); | ||
private static $db = array( | ||
'XeroInvoiceID' => 'Varchar(255)' | ||
); | ||
} | ||
|
||
class XeroExtension_Payment extends DataExtension { | ||
class XeroExtension_Payment extends DataExtension | ||
{ | ||
|
||
private static $db = array( | ||
'XeroPaymentID' => 'Varchar(255)' | ||
); | ||
private static $db = array( | ||
'XeroPaymentID' => 'Varchar(255)' | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
<?php | ||
|
||
class XeroTaxExtension_Item extends DataExtension { | ||
class XeroTaxExtension_Item extends DataExtension | ||
{ | ||
|
||
private static $db = array( | ||
'XeroTaxType' => 'Varchar(255)', | ||
'XeroTaxRate' => 'Decimal(19,4)' | ||
); | ||
private static $db = array( | ||
'XeroTaxType' => 'Varchar(255)', | ||
'XeroTaxRate' => 'Decimal(19,4)' | ||
); | ||
} | ||
|
||
class XeroTaxExtension_Modification extends DataExtension { | ||
class XeroTaxExtension_Modification extends DataExtension | ||
{ | ||
|
||
private static $db = array( | ||
'XeroTaxType' => 'Varchar(255)', | ||
'XeroTaxRate' => 'Decimal(19,4)' | ||
); | ||
} | ||
private static $db = array( | ||
'XeroTaxType' => 'Varchar(255)', | ||
'XeroTaxRate' => 'Decimal(19,4)' | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.