Skip to content

Exporting Invoices from ConnectWise REST Interface

This task will export invoices from the Finance -> Invoice Search area on ConnectWise in an XML format. The results can be filtered using the Conditions if required. See below for a sample output file.

Settings

ConnectWise REST Interface Connection

Required
The ConnectWise REST Interface connection to use. See the Connecting to ConnectWise REST Interface article if you require more information on how to create/manage connections.

Conditions

Optional
Use this setting to specify where clauses to filter the records returned. This setting is used to specify conditions applying to standard fields.

Condition > Comparison

Required
The following types of filter are available:

  • Equals - Returns records where the field matches the specified value.
  • Contains - Returns records where the field contains the specified value. This filter type is only valid for String fields on ConnectWise.
  • GreaterThan - Returns records where the field is greater than the specified value. This filter type is only valid for Numeric and DateTime fields on ConnectWise.
  • GreaterThanOrEqual - Returns records where the field is greater than or equal to the specified value. This filter type is only valid for Numeric and DateTime fields on ConnectWise.
  • In - Returns records where the field matches one of the specified values. Must be enclosed in parenthesis, with multiple values separated by a comma. e.g. ("John", "Ben") for string values, (1, 3) for numeric values. See the Condition > Value section below for more information on how different value types should be entered.
  • Like - Returns records where the field matches the specified value. The asterisk (*) character can be used as a wild card. This filter type is only valid for String fields on ConnectWise.
  • LessThan - Returns records where the field is less than the specified value. This filter type is only valid for Numeric and DateTime fields on ConnectWise.
  • LessThanOrEqual - Returns records where the field is less than or equal to the specified value. This filter type is only valid for Numeric and DateTime fields on ConnectWise.
  • NotContains - Returns records where the field does not contain the specified value. This filter type is only valid for String fields on ConnectWise.
  • NotEqual - Returns records where the field does not match the specified value.
  • NotIn - Returns records where the field does not match one of the specified values. Must be enclosed in parenthesis, with multiple values separated by a comma. e.g. ("John", "Ben") for string values, (1, 3) for numeric values etc. See the Condition > Value section below for more information on how different value types should be entered.
  • NotLike - Returns records where the field does not match the specified value. The asterisk (*) character can be used as a wild card. This filter type is only valid for String fields on ConnectWise.

Condition > Field

Required
The name of the field the condition applies to. The name should match the API field name, as seen in the output file. If using a reference field, include the name of the reference field followed by a slash, then the field to filter on.

The supported fields are listed below: -

  • id (Integer)
  • invoiceNumber (String)
  • type (Enum) nullable
  • Agreement
  • CreditMemo
  • DownPayment
  • Miscellaneous
  • Progress
  • Standard
  • status/id (Integer) nullable
  • status/name (String)
  • company/id (Integer) nullable
  • company/identifier (String)
  • company/name (String)
  • billToCompany/id (Integer) nullable
  • billToCompany/identifier (String)
  • billToCompany/name (String)
  • shipToCompany/id (Integer) nullable
  • shipToCompany/identifier (String)
  • shipToCompany/name (String)
  • accountNumber (String)
  • applyToType (Enum) nullable
  • All
  • Agreement
  • Project
  • ProjectPhase
  • SalesOrder
  • Ticket
  • applyToId (Integer) nullable
  • attention (String)
  • billingSite/id (Integer) nullable
  • billingSite/name (String)
  • billingSiteAddressLine1 (String)
  • billingSiteAddressLine2 (String)
  • billingSiteCity (String)
  • billingSiteState (String)
  • billingSiteZip (String)
  • billingSiteCountry (String)
  • shippingSite/id (Integer) nullable
  • shippingSite/name (String)
  • shippingSiteAddressLine1 (String)
  • shippingSiteAddressLine2 (String)
  • shippingSiteCity (String)
  • shippingSiteState (String)
  • shippingSiteZip (String)
  • shippingSiteCountry (String)
  • billingTerms/id (Integer) nullable
  • billingTerms/name (String)
  • reference (String)
  • customerPO (String)
  • templateSetupId (Integer) nullable
  • emailTemplateId (Integer) nullable
  • addToBatchEmailList (Boolean) nullable
  • date (String)
  • restrictDownpaymentFlag (Boolean) nullable
  • locationId (Integer) nullable
  • departmentId (Integer) nullable
  • territoryId (Integer) nullable
  • topComment (String)
  • bottomComment (String)
  • taxableFlag (Boolean) nullable
  • taxCode/id (Integer) nullable
  • taxCode/name (String)
  • internalNotes (String)
  • downpaymentPreviouslyTaxedFlag (Boolean) nullable
  • serviceTotal (Decimal) nullable
  • currency/id (Integer) nullable
  • currency/symbol (String)
  • currency/isoCode (String)
  • currency/name (String)
  • dueDate (DateTime) nullable
  • expenseTotal (Decimal) nullable
  • productTotal (Decimal) nullable
  • previousProgressApplied (Decimal) nullable
  • serviceAdjustmentAmount (Decimal) nullable
  • agreementAmount (Decimal) nullable
  • downpaymentApplied (Decimal) nullable
  • subtotal (Decimal) nullable
  • total (Decimal) nullable
  • remainingDownpayment (Decimal) nullable
  • salesTax (Decimal) nullable
  • adjustmentReason (String)
  • adjustedBy (String)
  • payments (Decimal) nullable
  • credits (Decimal) nullable
  • balance (Decimal) nullable
  • specialInvoiceFlag (Boolean) nullable

Condition > Logic Operator

Optional
The logic operator to use for the condition being added when building the where clause. Choose from:

  • And - Will return records which meet both of the conditions specified.
  • Or - Will return records which meet at least of the conditions specified.

Condition > Value

Optional
The value to use in the filter.

  • String values should be surrounded by quotes. e.g. "John"
  • Boolean values should be specified as either True or False, with no quotes.
  • Datetime values should be specified in ISO8601 format, surrounded by square brackets. e.g. [2000-01-31T14:51:00Z]
  • Null is specified as null.
  • When using the In or NotIn comparison, values must be separated by a comma and be surrounded by rounded brackets. e.g. ("John", "Ben"). See how different values types should be specified above.

Custom Field Conditions

Optional
Use this setting to specify where clauses to filter the records returned. This setting is used to specify conditions applying to custom fields.

Custom Field Condition > Comparison

Required
The following types of filter are available:

  • Equals - Returns records where the field matches the specified value.
  • Contains - Returns records where the field contains the specified value. This filter type is only valid for String fields on ConnectWise.
  • GreaterThan - Returns records where the field is greater than the specified value. This filter type is only valid for Numeric and DateTime fields on ConnectWise.
  • GreaterThanOrEqual - Returns records where the field is greater than or equal to the specified value. This filter type is only valid for Numeric and DateTime fields on ConnectWise.
  • In - Returns records where the field matches one of the specified values. Must be enclosed in parenthesis, with multiple values separated by a comma. e.g. ("John", "Ben") for string values, (1, 3) for numeric values. See the Condition > Value section below for more information on how different value types should be entered.
  • Like - Returns records where the field matches the specified value. The asterisk (*) character can be used as a wild card. This filter type is only valid for String fields on ConnectWise.
  • LessThan - Returns records where the field is less than the specified value. This filter type is only valid for Numeric and DateTime fields on ConnectWise.
  • LessThanOrEqual - Returns records where the field is less than or equal to the specified value. This filter type is only valid for Numeric and DateTime fields on ConnectWise.
  • NotContains - Returns records where the field does not contain the specified value. This filter type is only valid for String fields on ConnectWise.
  • NotEqual - Returns records where the field does not match the specified value.
  • NotIn - Returns records where the field does not match one of the specified values. Must be enclosed in parenthesis, with multiple values separated by a comma. e.g. ("John", "Ben") for string values, (1, 3) for numeric values etc. See the Condition > Value section below for more information on how different value types should be entered.
  • NotLike - Returns records where the field does not match the specified value. The asterisk (*) character can be used as a wild card. This filter type is only valid for String fields on ConnectWise.

Custom Field Condition > Field

Required
The caption of the custom field that the condition applies to. You can find the caption by looking at how the custom field appears in ConnectWise or by finding the custom field in an export file via Zynk.

Custom Field Condition > Logic Operator

Optional
The logic operator to use for the condition being added when building the where clause. Choose from:

  • And - Will return records which meet both of the conditions specified.
  • Or - Will return records which meet at least of the conditions specified.

Custom Field Condition > Value

Optional
The value to use in the filter.

  • String values should be surrounded by quotes. e.g. "John"
  • Boolean values should be specified as either True or False, with no quotes.
  • Datetime values should be specified in ISO8601 format, surrounded by square brackets. e.g. [2000-01-31T14:51:00Z]
  • Null is specified as null.
  • When using the In or NotIn comparison, values must be separated by a comma and be surrounded by rounded brackets. e.g. ("John", "Ben"). See how different values types should be specified above.

Export Settings > Date Created

Required
When the 'Export Modified, New or All Records' setting is set to 'New', only batches created after this date will be exported. This date will update automatically each time the task runs, to ensure only new batches are exported each time.

Defaults to the current date and time.

Export Settings > Date Modified

Required
When the 'Export Modified, New or All Records' setting is set to 'Modified', only batches updated after this date will be downloaded. This date will update automatically each time the task runs, to ensure only modified batches are exported each time.

Defaults to the current date and time.

Export Settings > Export Modified, New or All Records

Required
Choose which records should be downloaded. The available options are:

  • Modified - Only records updated after the date shown in the 'Date Modified' setting will be downloaded.
  • New - Only records created after the date shown in the 'Date Created' setting will be downloaded.
  • All - All records will be downloaded, regardless of when they were created or updated.

Defaults to Modified.

Export Settings > Page Size

Required
The number of records to include in each page of results. Increasing this value will reduce the number of requests made to the API but will increase the amount of memory needed while making each request.

Defaults to 100.
The maximum value is 1000.

Output File

Required
The name of the file to save the exported records to.

Defaults to connectwise_export_invoices.xml

References To Fetch

Optional
The exported data may include fields which reference other record types in ConnectWise. If you specify the reference field names in this setting the task will fetch the related records and include them in the exported data.

The supported record types are listed below: -

  • status
  • company
  • billToCompany
  • shipToCompany
  • billingSite
  • shippingSite
  • billingTerms
  • taxCode
  • currency
  • invoiceItems (Specify to export Products relating to each invoice)
  • invoiceItem/catalogItem
  • invoiceItem/vendor
  • invoiceItem/entityType
  • invoiceItem/entityType
  • agreement
  • agreement/agreementAdditions (Specify to export Additions relating to each agreement)
  • agreementAddition/product
  • project

References To Fetch Page Size

Required
The number of referenced records to fetch per page. Increasing this value will reduce the number of requests made to the API but will increase the amount of memory needed while making each request.

Defaults to 100.
The maximum value is 1000.

Timeout

Optional
The maximum length of time to wait (in seconds) for API requests to be processed. Specifying this value will override the timeout set at the connection level. Leave blank to use the value specified in the connection.

Zynk Settings

See Common Task Settings

Examples

A sample output file is shown below.

<?xml version="1.0" encoding="utf-8"?>
<Invoices xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <Invoice>
    <id>2</id>
    <externalId />
    <_info>
      <dateEntered>2005-05-19T20:14:50Z</dateEntered>
      <enteredBy>user10</enteredBy>
      <lastUpdated>2011-04-21T08:46:19Z</lastUpdated>
      <updatedBy>Admin1</updatedBy>
    </_info>
    <invoiceNumber>1</invoiceNumber>
    <type>Agreement</type>
    <status>
      <id>3</id>
      <name>Closed</name>
      <record>
        <id>3</id>
        <_info>
          <dateEntered>2005-09-21T18:22:30Z</dateEntered>
          <enteredBy>CONVERSION</enteredBy>
          <lastUpdated>2005-09-21T18:22:30Z</lastUpdated>
          <updatedBy>User10</updatedBy>
        </_info>
        <name>Closed</name>
        <sortOrder>0</sortOrder>
        <defaultFlag>false</defaultFlag>
        <closedFlag>true</closedFlag>
        <inactiveFlag>false</inactiveFlag>
        <sentFlag>true</sentFlag>
      </record>
    </status>
    <company>
      <id>8</id>
      <name>Angry Fox, Co.</name>
      <record>
        <id>8</id>
        <_info>
          <dateEntered>2005-03-21T15:43:44Z</dateEntered>
          <enteredBy>CONVERSION</enteredBy>
          <lastUpdated>2018-05-08T15:07:00Z</lastUpdated>
          <updatedBy>zynk</updatedBy>
        </_info>
        <identifier>AngryFoxCo</identifier>
        <name>Angry Fox, Co.</name>
        <status>
          <id>1</id>
          <name>Active</name>
        </status>
        <addressLine1>711 N. Franklin St.</addressLine1>
        <city>Detroit</city>
        <state>MI</state>
        <zip>92344</zip>
        <country>
          <id>1</id>
          <name>United States</name>
        </country>
        <phoneNumber>8131782000</phoneNumber>
        <faxNumber>8131782001</faxNumber>
        <website>http://www.AngryFox.com</website>
        <territory>
          <id>41</id>
          <name>Arnie's Accounts</name>
        </territory>
        <marketId xsi:nil="true" />
        <accountNumber>ANGRYF01</accountNumber>
        <defaultContact>
          <id>20</id>
          <name>Robert Storts</name>
        </defaultContact>
        <dateAcquired>2005-03-21T05:00:00Z</dateAcquired>
        <annualRevenue>0.00</annualRevenue>
        <numberOfEmployees xsi:nil="true" />
        <leadSource>Microsoft Tradeshow</leadSource>
        <leadFlag>false</leadFlag>
        <unsubscribeFlag>false</unsubscribeFlag>
        <calendarId xsi:nil="true" />
        <vendorIdentifier>AngryFox1010</vendorIdentifier>
        <taxCode>
          <id>11</id>
          <name>Standard VAT</name>
        </taxCode>
        <billingTerms>
          <id>2</id>
          <name>Net 10</name>
        </billingTerms>
        <billToCompany>
          <id>8</id>
          <name>Angry Fox, Co.</name>
          <identifier>AngryFoxCo</identifier>
        </billToCompany>
        <billingSite>
          <id>31</id>
          <name>Main</name>
        </billingSite>
        <billingContact>
          <id>20</id>
          <name>Robert Storts</name>
        </billingContact>
        <invoiceDeliveryMethod>
          <id>2</id>
          <name>E-Mail</name>
        </invoiceDeliveryMethod>
        <invoiceToEmailAddress>[email protected]</invoiceToEmailAddress>
        <deletedFlag>false</deletedFlag>
        <dateDeleted xsi:nil="true" />
        <mobileGuid>38a5f551-d40d-49e7-99f8-4fb5029df6ea</mobileGuid>
        <customFields>
          <customField>
            <id>3</id>
            <caption>test</caption>
            <type>Text</type>
            <entryMethod>EntryField</entryMethod>
            <numberOfDecimals>0</numberOfDecimals>
          </customField>
          <customField>
            <id>6</id>
            <caption>CustomNumber</caption>
            <type>Number</type>
            <entryMethod>EntryField</entryMethod>
            <numberOfDecimals>2</numberOfDecimals>
          </customField>
          <customField>
            <id>7</id>
            <caption>Salesperson</caption>
            <type>Text</type>
            <entryMethod>List</entryMethod>
            <numberOfDecimals>0</numberOfDecimals>
          </customField>
        </customFields>
      </record>
      <identifier>AngryFoxCo</identifier>
    </company>
    <billToCompany>
      <id>8</id>
      <name>Angry Fox, Co.</name>
      <record>
        <id>8</id>
        <_info>
          <dateEntered>2005-03-21T15:43:44Z</dateEntered>
          <enteredBy>CONVERSION</enteredBy>
          <lastUpdated>2018-05-08T15:07:00Z</lastUpdated>
          <updatedBy>zynk</updatedBy>
        </_info>
        <identifier>AngryFoxCo</identifier>
        <name>Angry Fox, Co.</name>
        <status>
          <id>1</id>
          <name>Active</name>
        </status>
        <addressLine1>711 N. Franklin St.</addressLine1>
        <city>Detroit</city>
        <state>MI</state>
        <zip>92344</zip>
        <country>
          <id>1</id>
          <name>United States</name>
        </country>
        <phoneNumber>8131782000</phoneNumber>
        <faxNumber>8131782001</faxNumber>
        <website>http://www.AngryFox.com</website>
        <territory>
          <id>41</id>
          <name>Arnie's Accounts</name>
        </territory>
        <marketId xsi:nil="true" />
        <accountNumber>ANGRYF01</accountNumber>
        <defaultContact>
          <id>20</id>
          <name>Robert Storts</name>
        </defaultContact>
        <dateAcquired>2005-03-21T05:00:00Z</dateAcquired>
        <annualRevenue>0.00</annualRevenue>
        <numberOfEmployees xsi:nil="true" />
        <leadSource>Microsoft Tradeshow</leadSource>
        <leadFlag>false</leadFlag>
        <unsubscribeFlag>false</unsubscribeFlag>
        <calendarId xsi:nil="true" />
        <vendorIdentifier>AngryFox1010</vendorIdentifier>
        <taxCode>
          <id>11</id>
          <name>Standard VAT</name>
        </taxCode>
        <billingTerms>
          <id>2</id>
          <name>Net 10</name>
        </billingTerms>
        <billToCompany>
          <id>8</id>
          <name>Angry Fox, Co.</name>
          <identifier>AngryFoxCo</identifier>
        </billToCompany>
        <billingSite>
          <id>31</id>
          <name>Main</name>
        </billingSite>
        <billingContact>
          <id>20</id>
          <name>Robert Storts</name>
        </billingContact>
        <invoiceDeliveryMethod>
          <id>2</id>
          <name>E-Mail</name>
        </invoiceDeliveryMethod>
        <invoiceToEmailAddress>[email protected]</invoiceToEmailAddress>
        <deletedFlag>false</deletedFlag>
        <dateDeleted xsi:nil="true" />
        <mobileGuid>38a5f551-d40d-49e7-99f8-4fb5029df6ea</mobileGuid>
        <customFields>
          <customField>
            <id>3</id>
            <caption>test</caption>
            <type>Text</type>
            <entryMethod>EntryField</entryMethod>
            <numberOfDecimals>0</numberOfDecimals>
          </customField>
          <customField>
            <id>6</id>
            <caption>CustomNumber</caption>
            <type>Number</type>
            <entryMethod>EntryField</entryMethod>
            <numberOfDecimals>2</numberOfDecimals>
          </customField>
          <customField>
            <id>7</id>
            <caption>Salesperson</caption>
            <type>Text</type>
            <entryMethod>List</entryMethod>
            <numberOfDecimals>0</numberOfDecimals>
          </customField>
        </customFields>
      </record>
      <identifier>AngryFoxCo</identifier>
    </billToCompany>
    <shipToCompany>
      <id>8</id>
      <name>Angry Fox, Co.</name>
      <record>
        <id>8</id>
        <_info>
          <dateEntered>2005-03-21T15:43:44Z</dateEntered>
          <enteredBy>CONVERSION</enteredBy>
          <lastUpdated>2018-05-08T15:07:00Z</lastUpdated>
          <updatedBy>zynk</updatedBy>
        </_info>
        <identifier>AngryFoxCo</identifier>
        <name>Angry Fox, Co.</name>
        <status>
          <id>1</id>
          <name>Active</name>
        </status>
        <addressLine1>711 N. Franklin St.</addressLine1>
        <city>Detroit</city>
        <state>MI</state>
        <zip>92344</zip>
        <country>
          <id>1</id>
          <name>United States</name>
        </country>
        <phoneNumber>8131782000</phoneNumber>
        <faxNumber>8131782001</faxNumber>
        <website>http://www.AngryFox.com</website>
        <territory>
          <id>41</id>
          <name>Arnie's Accounts</name>
        </territory>
        <marketId xsi:nil="true" />
        <accountNumber>ANGRYF01</accountNumber>
        <defaultContact>
          <id>20</id>
          <name>Robert Storts</name>
        </defaultContact>
        <dateAcquired>2005-03-21T05:00:00Z</dateAcquired>
        <annualRevenue>0.00</annualRevenue>
        <numberOfEmployees xsi:nil="true" />
        <leadSource>Microsoft Tradeshow</leadSource>
        <leadFlag>false</leadFlag>
        <unsubscribeFlag>false</unsubscribeFlag>
        <calendarId xsi:nil="true" />
        <vendorIdentifier>AngryFox1010</vendorIdentifier>
        <taxCode>
          <id>11</id>
          <name>Standard VAT</name>
        </taxCode>
        <billingTerms>
          <id>2</id>
          <name>Net 10</name>
        </billingTerms>
        <billToCompany>
          <id>8</id>
          <name>Angry Fox, Co.</name>
          <identifier>AngryFoxCo</identifier>
        </billToCompany>
        <billingSite>
          <id>31</id>
          <name>Main</name>
        </billingSite>
        <billingContact>
          <id>20</id>
          <name>Robert Storts</name>
        </billingContact>
        <invoiceDeliveryMethod>
          <id>2</id>
          <name>E-Mail</name>
        </invoiceDeliveryMethod>
        <invoiceToEmailAddress>[email protected]</invoiceToEmailAddress>
        <deletedFlag>false</deletedFlag>
        <dateDeleted xsi:nil="true" />
        <mobileGuid>38a5f551-d40d-49e7-99f8-4fb5029df6ea</mobileGuid>
        <customFields>
          <customField>
            <id>3</id>
            <caption>test</caption>
            <type>Text</type>
            <entryMethod>EntryField</entryMethod>
            <numberOfDecimals>0</numberOfDecimals>
          </customField>
          <customField>
            <id>6</id>
            <caption>CustomNumber</caption>
            <type>Number</type>
            <entryMethod>EntryField</entryMethod>
            <numberOfDecimals>2</numberOfDecimals>
          </customField>
          <customField>
            <id>7</id>
            <caption>Salesperson</caption>
            <type>Text</type>
            <entryMethod>List</entryMethod>
            <numberOfDecimals>0</numberOfDecimals>
          </customField>
        </customFields>
      </record>
      <identifier>AngryFoxCo</identifier>
    </shipToCompany>
    <applyToType>Agreement</applyToType>
    <applyToId>2</applyToId>
    <agreement>
      <id>2</id>
      <record>
        <id>2</id>
        <_info>
          <lastUpdated>2012-03-19T20:39:25Z</lastUpdated>
          <updatedBy>Admin1         </updatedBy>
        </_info>
        <name>Managed Services for Angry Fox</name>
        <type>
          <id>3</id>
          <name>Managed Service</name>
        </type>
        <company>
          <id>8</id>
          <name>Angry Fox, Co.</name>
          <identifier>AngryFoxCo</identifier>
        </company>
        <contact>
          <id>20</id>
          <name>Robert Storts</name>
        </contact>
        <customerPO />
        <location>
          <id>2</id>
          <name>Tampa Office</name>
        </location>
        <department>
          <id>10</id>
          <name>Professional Services</name>
        </department>
        <restrictLocationFlag>false</restrictLocationFlag>
        <restrictDepartmentFlag>false</restrictDepartmentFlag>
        <startDate>2005-05-01T00:00:00Z</startDate>
        <endDate xsi:nil="true" />
        <noEndingDateFlag>true</noEndingDateFlag>
        <cancelledFlag>false</cancelledFlag>
        <dateCancelled xsi:nil="true" />
        <reasonCancelled />
        <workOrder />
        <internalNotes>This is a monthly agreement for managed services.  An unlimited number hours are available per year for all work done that is entered against the agreement.  The individual services are selected using the Additions tab - these will total up for the monthly billing amount.  
If you need to prorate the first bill and you are using additions, you must enter the prorated amounts in the additions tab and control it with effective dates.  The Prorate first bill? field only overrides the Billing Amount field.
See Agreement Invoice #1 note descriptions from additions
</internalNotes>
        <applicationUnits>Hours</applicationUnits>
        <applicationLimit>0.00</applicationLimit>
        <applicationCycle>ContractYear</applicationCycle>
        <applicationUnlimitedFlag>true</applicationUnlimitedFlag>
        <oneTimeFlag>false</oneTimeFlag>
        <coverAgreementTime>true</coverAgreementTime>
        <coverAgreementProduct>false</coverAgreementProduct>
        <coverAgreementExpense>false</coverAgreementExpense>
        <coverSalesTax>false</coverSalesTax>
        <carryOverUnused>false</carryOverUnused>
        <allowOverruns>false</allowOverruns>
        <expiredDays>0</expiredDays>
        <limit>0</limit>
        <expireWhenZero>false</expireWhenZero>
        <chargeToFirm>false</chargeToFirm>
        <employeeCompRate>Actual</employeeCompRate>
        <employeeCompNotExceed>Billing</employeeCompNotExceed>
        <compHourlyRate>0.00</compHourlyRate>
        <compLimitAmount>0.00</compLimitAmount>
        <billingCycle>
          <id>2</id>
          <name>Monthly</name>
        </billingCycle>
        <billOneTimeFlag>false</billOneTimeFlag>
        <invoicingCycle>CalendarYear</invoicingCycle>
        <billAmount>0.00</billAmount>
        <taxable>false</taxable>
        <prorateFirstBill>0.00</prorateFirstBill>
        <billStartDate>2005-05-01T00:00:00Z</billStartDate>
        <taxCode>
          <id>11</id>
          <name>Standard VAT</name>
        </taxCode>
        <restrictDownPayment>true</restrictDownPayment>
        <prorateFlag>false</prorateFlag>
        <invoiceDescription />
        <topComment>false</topComment>
        <bottomComment>false</bottomComment>
        <workType>
          <id>18</id>
          <name>Remote Support</name>
        </workType>
        <billTime>Billable</billTime>
        <billExpenses>Billable</billExpenses>
        <billProducts>Billable</billProducts>
        <billableTimeInvoice>false</billableTimeInvoice>
        <billableExpenseInvoice>false</billableExpenseInvoice>
        <billableProductInvoice>false</billableProductInvoice>
        <currency>
          <id>4</id>
          <name>French Francs</name>
          <symbol>FFr</symbol>
          <isoCode>EUR</isoCode>
        </currency>
        <periodType xsi:nil="true" />
        <autoInvoiceFlag>false</autoInvoiceFlag>
        <customFields>
          <customField>
            <id>13</id>
            <caption>Amethyst Start Date</caption>
            <type>Date</type>
            <entryMethod>EntryField</entryMethod>
            <numberOfDecimals>0</numberOfDecimals>
          </customField>
          <customField>
            <id>14</id>
            <caption>Activity Creation</caption>
            <type>Date</type>
            <entryMethod>EntryField</entryMethod>
            <numberOfDecimals>0</numberOfDecimals>
          </customField>
          <customField>
            <id>15</id>
            <caption>Revision Number</caption>
            <type>Number</type>
            <entryMethod>EntryField</entryMethod>
            <numberOfDecimals>0</numberOfDecimals>
          </customField>
        </customFields>
        <agreementAdditions>
          <agreementAddition>
            <id>1</id>
            <_info>
              <lastUpdated>2019-11-25T13:18:23Z</lastUpdated>
              <updatedBy>Admin1</updatedBy>
            </_info>
            <product>
              <id>745</id>
              <record>
                <id>745</id>
                <_info>
                  <lastUpdated>2005-05-26T14:27:29Z</lastUpdated>
                  <updatedBy>user10</updatedBy>
                </_info>
                <identifier>Web Site Service</identifier>
                <description>Web Site Service</description>
                <inactiveFlag>false</inactiveFlag>
                <subcategory>
                  <id>38</id>
                  <name>Managed Services</name>
                </subcategory>
                <type>
                  <id>33</id>
                  <name>Fixed Cost Service</name>
                </type>
                <productClass>NonInventory</productClass>
                <serializedFlag>false</serializedFlag>
                <serializedCostFlag>false</serializedCostFlag>
                <phaseProductFlag>false</phaseProductFlag>
                <unitOfMeasure>
                  <id>14</id>
                  <name>Month</name>
                </unitOfMeasure>
                <minStockLevel>0</minStockLevel>
                <price>1000.000000</price>
                <cost>0.000000</cost>
                <taxableFlag>false</taxableFlag>
                <customerDescription>Managed Web Site Service
Dedicated Website Hosting Service
- Domain Name Service Services
- Domain Name Hostting Services
- 8 IP Address
- 100 GB Transfer per month
- Intel Xeon 2.4 GHz w/HyperTHreading
- Windows 2003 Server
- Windows 2003 Terminal Services


Managed Services
- Site monitoring 24 x 7
- Complete Hardware Maintenance
- Security Updates
- Operating System Updates
- Server Reboot- Server Diagnostics</customerDescription>
                <recurringFlag>false</recurringFlag>
                <recurringRevenue xsi:nil="true" />
                <recurringCost xsi:nil="true" />
                <recurringOneTimeFlag>false</recurringOneTimeFlag>
                <dateEntered>2005-05-26T14:27:29Z</dateEntered>
                <category>
                  <id>18</id>
                  <name>Managed Services</name>
                </category>
              </record>
              <identifier>Web Site Service</identifier>
            </product>
            <quantity>3.00</quantity>
            <lessIncluded>0.00</lessIncluded>
            <unitPrice>1000.000000</unitPrice>
            <unitCost xsi:nil="true" />
            <billCustomer>Billable</billCustomer>
            <effectiveDate>2005-05-01T00:00:00Z</effectiveDate>
            <cancelledDate xsi:nil="true" />
            <taxableFlag>false</taxableFlag>
            <serialNumber>THIS IS A SERIAL NUMBER</serialNumber>
            <invoiceDescription>Managed Web Site Service
Dedicated Website Hosting Service
- Domain Name Service Services
- Domain Name Hostting Services
- 8 IP Address
- 100 GB Transfer per month
- Intel Xeon 2.4 GHz w/HyperTHreading
- Windows 2003 Server
- Windows 2003 Terminal Services


Managed Services
- Site monitoring 24 x 7
- Complete Hardware Maintenance
- Security Updates
- Operating System Updates
- Server Reboot- Server Diagnostics</invoiceDescription>
            <purchaseItemFlag>false</purchaseItemFlag>
            <specialOrderFlag>false</specialOrderFlag>
            <agreementId>2</agreementId>
            <description>Web Site Service</description>
            <billedQuantity>3.00</billedQuantity>
            <uom>Month</uom>
            <extPrice>3000.000000</extPrice>
            <extCost>0.000000</extCost>
            <sequenceNumber>1.00</sequenceNumber>
            <margin>3000.000000</margin>
            <prorateCost>0.000000</prorateCost>
            <proratePrice>0.000000</proratePrice>
            <extendedProrateCost>0.000000</extendedProrateCost>
            <extendedProratePrice>0.000000</extendedProratePrice>
            <prorateCurrentPeriodFlag>false</prorateCurrentPeriodFlag>
            <agreementStatus>Active</agreementStatus>
          </agreementAddition>
          <agreementAddition>
            <id>2</id>
            <_info>
              <lastUpdated>2005-05-19T19:52:51Z</lastUpdated>
              <updatedBy>user10</updatedBy>
            </_info>
            <product>
              <id>747</id>
              <record>
                <id>747</id>
                <_info>
                  <lastUpdated>2015-03-18T16:15:26Z</lastUpdated>
                  <updatedBy>Admin1</updatedBy>
                </_info>
                <identifier>System Support</identifier>
                <description>System Support</description>
                <inactiveFlag>false</inactiveFlag>
                <subcategory>
                  <id>38</id>
                  <name>Managed Services</name>
                </subcategory>
                <type>
                  <id>33</id>
                  <name>Fixed Cost Service</name>
                </type>
                <productClass>NonInventory</productClass>
                <serializedFlag>false</serializedFlag>
                <serializedCostFlag>false</serializedCostFlag>
                <phaseProductFlag>false</phaseProductFlag>
                <unitOfMeasure>
                  <id>14</id>
                  <name>Month</name>
                </unitOfMeasure>
                <minStockLevel>0</minStockLevel>
                <price>250.000000</price>
                <cost>2.000000</cost>
                <taxableFlag>false</taxableFlag>
                <customerDescription>Systems Support

- Network File Server covered
- Network Tape Backup covered
- File Server UPS covered
- Network Adapters covered
- Network Workstation Connections
     All Network hardware cabling to allow proper functioning of 
     the Workstation on the Local Area Network
- All Network Concentrators/HUBs covered
- All Network Print Server covered
- All Network cabling covered
- All Network Printer cabling covered
- Extended Warranty &amp; Onsite Repair
  </customerDescription>
                <recurringFlag>false</recurringFlag>
                <recurringRevenue xsi:nil="true" />
                <recurringCost xsi:nil="true" />
                <recurringOneTimeFlag>false</recurringOneTimeFlag>
                <dateEntered>2015-03-18T16:15:26Z</dateEntered>
                <category>
                  <id>18</id>
                  <name>Managed Services</name>
                </category>
              </record>
              <identifier>System Support</identifier>
            </product>
            <quantity>1.00</quantity>
            <lessIncluded>0.00</lessIncluded>
            <unitPrice>250.000000</unitPrice>
            <unitCost xsi:nil="true" />
            <billCustomer>Billable</billCustomer>
            <effectiveDate>2005-05-01T00:00:00Z</effectiveDate>
            <cancelledDate xsi:nil="true" />
            <taxableFlag>false</taxableFlag>
            <invoiceDescription>Systems Support

- Network File Server covered
- Network Tape Backup covered
- File Server UPS covered
- Network Adapters covered
- Network Workstation Connections
     All Network hardware cabling to allow proper functioning of 
     the Workstation on the Local Area Network
- All Network Concentrators/HUBs covered
- All Network Print Server covered
- All Network cabling covered
- All Network Printer cabling covered
- Extended Warranty &amp; Onsite Repair
  </invoiceDescription>
            <purchaseItemFlag>false</purchaseItemFlag>
            <specialOrderFlag>false</specialOrderFlag>
            <agreementId>2</agreementId>
            <description>System Support</description>
            <billedQuantity>1.00</billedQuantity>
            <uom>Month</uom>
            <extPrice>250.000000</extPrice>
            <extCost>0.000000</extCost>
            <sequenceNumber>2.00</sequenceNumber>
            <margin>250.000000</margin>
            <prorateCost>0.000000</prorateCost>
            <proratePrice>0.000000</proratePrice>
            <extendedProrateCost>0.000000</extendedProrateCost>
            <extendedProratePrice>0.000000</extendedProratePrice>
            <prorateCurrentPeriodFlag>false</prorateCurrentPeriodFlag>
            <agreementStatus>Active</agreementStatus>
          </agreementAddition>
          <agreementAddition>
            <id>4</id>
            <_info>
              <lastUpdated>2005-08-23T20:02:17Z</lastUpdated>
              <updatedBy>user10</updatedBy>
            </_info>
            <product>
              <id>746</id>
              <record>
                <id>746</id>
                <_info>
                  <lastUpdated>2017-06-09T11:02:41Z</lastUpdated>
                  <updatedBy>Admin1</updatedBy>
                </_info>
                <identifier>RB001</identifier>
                <description>Remote Backups</description>
                <inactiveFlag>false</inactiveFlag>
                <subcategory>
                  <id>38</id>
                  <name>Managed Services</name>
                </subcategory>
                <type>
                  <id>33</id>
                  <name>Fixed Cost Service</name>
                </type>
                <productClass>NonInventory</productClass>
                <serializedFlag>false</serializedFlag>
                <serializedCostFlag>false</serializedCostFlag>
                <phaseProductFlag>false</phaseProductFlag>
                <unitOfMeasure>
                  <id>14</id>
                  <name>Month</name>
                </unitOfMeasure>
                <minStockLevel>0</minStockLevel>
                <price>350.000000</price>
                <cost>100.000000</cost>
                <taxableFlag>true</taxableFlag>
                <customerDescription> Backup Plan

-- Seven Data Backups a Week
-- Send average of up to 1.2 GB daily
-- Store files for 90 days
-- Store up to 36GB total</customerDescription>
                <manufacturer>
                  <id>13</id>
                  <name>Microsoft</name>
                </manufacturer>
                <manufacturerPartNumber>1234567896</manufacturerPartNumber>
                <notes>Remote backups description</notes>
                <recurringFlag>false</recurringFlag>
                <recurringRevenue xsi:nil="true" />
                <recurringCost xsi:nil="true" />
                <recurringOneTimeFlag>false</recurringOneTimeFlag>
                <dateEntered>2014-10-22T08:48:08Z</dateEntered>
                <category>
                  <id>18</id>
                  <name>Managed Services</name>
                </category>
              </record>
              <identifier>RB001</identifier>
            </product>
            <quantity>1.00</quantity>
            <lessIncluded>0.00</lessIncluded>
            <unitPrice>350.000000</unitPrice>
            <unitCost xsi:nil="true" />
            <billCustomer>Billable</billCustomer>
            <effectiveDate>2005-08-01T00:00:00Z</effectiveDate>
            <cancelledDate xsi:nil="true" />
            <taxableFlag>false</taxableFlag>
            <invoiceDescription> Backup Plan

-- Seven Data Backups a Week
-- Send average of up to 1.2 GB daily
-- Store files for 90 days
-- Store up to 36GB total</invoiceDescription>
            <purchaseItemFlag>false</purchaseItemFlag>
            <specialOrderFlag>false</specialOrderFlag>
            <agreementId>2</agreementId>
            <description>Remote Backups</description>
            <billedQuantity>1.00</billedQuantity>
            <uom>Month</uom>
            <extPrice>350.000000</extPrice>
            <extCost>0.000000</extCost>
            <sequenceNumber>3.00</sequenceNumber>
            <margin>350.000000</margin>
            <prorateCost>0.000000</prorateCost>
            <proratePrice>0.000000</proratePrice>
            <extendedProrateCost>0.000000</extendedProrateCost>
            <extendedProratePrice>0.000000</extendedProratePrice>
            <prorateCurrentPeriodFlag>false</prorateCurrentPeriodFlag>
            <agreementStatus>Active</agreementStatus>
          </agreementAddition>
          <agreementAddition>
            <id>5</id>
            <_info>
              <lastUpdated>2005-09-13T15:26:08Z</lastUpdated>
              <updatedBy>User10</updatedBy>
            </_info>
            <product>
              <id>750</id>
              <record>
                <id>750</id>
                <_info>
                  <lastUpdated>2019-04-23T10:12:32Z</lastUpdated>
                  <updatedBy>Admin1</updatedBy>
                </_info>
                <identifier>SPAM -ConnectFilter</identifier>
                <description>SPAM -ConnectFilter</description>
                <inactiveFlag>false</inactiveFlag>
                <subcategory>
                  <id>38</id>
                  <name>Managed Services</name>
                </subcategory>
                <type>
                  <id>33</id>
                  <name>Fixed Cost Service</name>
                </type>
                <productClass>NonInventory</productClass>
                <serializedFlag>false</serializedFlag>
                <serializedCostFlag>false</serializedCostFlag>
                <phaseProductFlag>false</phaseProductFlag>
                <unitOfMeasure>
                  <id>12</id>
                  <name>User-based</name>
                </unitOfMeasure>
                <minStockLevel>0</minStockLevel>
                <price>30.000000</price>
                <cost>2.000000</cost>
                <taxableFlag>false</taxableFlag>
                <customerDescription>ConnectFilter (10 accounts) 
--Powerful Spam Filtering
         -  Heuristic-based content analysis providing over 95% accuracy
         -  End-user flexibility: users can customize own filters
         -  Quarantined messages are accessible via a web-based Message Center for review and disposition
--Real-Time Virus Protection
         -  All message parts are scanned for infected viruses, and infected messages are quarantined in the user's ConnectFilter Message Center for review and disposition
         -  Built-in protection from new techniques, including message fragments
         -  Industry leading McAfee AVERT provides dedicated connection to McAfee virus definition servers, protecting customers from new viruses</customerDescription>
                <recurringFlag>false</recurringFlag>
                <recurringRevenue xsi:nil="true" />
                <recurringCost xsi:nil="true" />
                <recurringOneTimeFlag>false</recurringOneTimeFlag>
                <dateEntered>2014-04-11T16:07:49Z</dateEntered>
                <category>
                  <id>18</id>
                  <name>Managed Services</name>
                </category>
              </record>
              <identifier>SPAM -ConnectFilter</identifier>
            </product>
            <quantity>1.00</quantity>
            <lessIncluded>0.00</lessIncluded>
            <unitPrice>30.000000</unitPrice>
            <unitCost xsi:nil="true" />
            <billCustomer>Billable</billCustomer>
            <effectiveDate>2005-09-01T00:00:00Z</effectiveDate>
            <cancelledDate xsi:nil="true" />
            <taxableFlag>false</taxableFlag>
            <invoiceDescription>ConnectFilter (10 accounts) 
--Powerful Spam Filtering
         -  Heuristic-based content analysis providing over 95% accuracy
         -  End-user flexibility: users can customize own filters
         -  Quarantined messages are accessible via a web-based Message Center for review and disposition
--Real-Time Virus Protection
         -  All message parts are scanned for infected viruses, and infected messages are quarantined in the user's ConnectFilter Message Center for review and disposition
         -  Built-in protection from new techniques, including message fragments
         -  Industry leading McAfee AVERT provides dedicated connection to McAfee virus definition servers, protecting customers from new viruses</invoiceDescription>
            <purchaseItemFlag>false</purchaseItemFlag>
            <specialOrderFlag>false</specialOrderFlag>
            <agreementId>2</agreementId>
            <description>SPAM -ConnectFilter</description>
            <billedQuantity>1.00</billedQuantity>
            <uom>User-based</uom>
            <extPrice>30.000000</extPrice>
            <extCost>0.000000</extCost>
            <sequenceNumber>4.00</sequenceNumber>
            <margin>30.000000</margin>
            <prorateCost>0.000000</prorateCost>
            <proratePrice>0.000000</proratePrice>
            <extendedProrateCost>0.000000</extendedProrateCost>
            <extendedProratePrice>0.000000</extendedProratePrice>
            <prorateCurrentPeriodFlag>false</prorateCurrentPeriodFlag>
            <agreementStatus>Active</agreementStatus>
          </agreementAddition>
          <agreementAddition>
            <id>10</id>
            <_info>
              <lastUpdated>2014-05-12T15:02:55Z</lastUpdated>
              <updatedBy>Admin1</updatedBy>
            </_info>
            <product>
              <id>749</id>
              <record>
                <id>749</id>
                <_info>
                  <lastUpdated>2019-11-25T15:39:25Z</lastUpdated>
                  <updatedBy>Admin1</updatedBy>
                </_info>
                <identifier>Block Time Renewal</identifier>
                <description>Block Time Renewal</description>
                <inactiveFlag>false</inactiveFlag>
                <subcategory>
                  <id>43</id>
                  <name>Block Time</name>
                </subcategory>
                <type>
                  <id>32</id>
                  <name>Miscellaneous</name>
                </type>
                <productClass>NonInventory</productClass>
                <serializedFlag>false</serializedFlag>
                <serializedCostFlag>false</serializedCostFlag>
                <phaseProductFlag>false</phaseProductFlag>
                <unitOfMeasure>
                  <id>12</id>
                  <name>User-based</name>
                </unitOfMeasure>
                <minStockLevel>0</minStockLevel>
                <price>0.000000</price>
                <cost>8.000000</cost>
                <taxableFlag>false</taxableFlag>
                <customerDescription>Block Time Renewal</customerDescription>
                <recurringFlag>false</recurringFlag>
                <recurringRevenue xsi:nil="true" />
                <recurringCost xsi:nil="true" />
                <recurringOneTimeFlag>false</recurringOneTimeFlag>
                <dateEntered>2005-06-02T14:43:59Z</dateEntered>
                <category>
                  <id>21</id>
                  <name>Block Time</name>
                </category>
              </record>
              <identifier>Block Time Renewal</identifier>
            </product>
            <quantity>8.00</quantity>
            <lessIncluded>1.00</lessIncluded>
            <unitPrice>10.000000</unitPrice>
            <unitCost>3.000000</unitCost>
            <billCustomer>Billable</billCustomer>
            <effectiveDate>2014-05-12T00:00:00Z</effectiveDate>
            <cancelledDate xsi:nil="true" />
            <taxableFlag>false</taxableFlag>
            <invoiceDescription>Block Time Renewal - how does this work?</invoiceDescription>
            <purchaseItemFlag>false</purchaseItemFlag>
            <specialOrderFlag>false</specialOrderFlag>
            <agreementId>2</agreementId>
            <description>Block Time Renewal</description>
            <billedQuantity>7.00</billedQuantity>
            <uom>User-based</uom>
            <extPrice>70.000000</extPrice>
            <extCost>24.000000</extCost>
            <sequenceNumber>5.00</sequenceNumber>
            <margin>46.000000</margin>
            <prorateCost>0.000000</prorateCost>
            <proratePrice>0.000000</proratePrice>
            <extendedProrateCost>0.000000</extendedProrateCost>
            <extendedProratePrice>0.000000</extendedProratePrice>
            <prorateCurrentPeriodFlag>false</prorateCurrentPeriodFlag>
            <agreementStatus>Active</agreementStatus>
          </agreementAddition>
        </agreementAdditions>
      </record>
    </agreement>
    <attention />
    <billingSite>
      <id>7</id>
      <name>Main</name>
      <record>
        <id>7</id>
        <_info>
          <dateEntered>2010-07-19T12:42:32Z</dateEntered>
          <enteredBy>CONVERSION</enteredBy>
          <lastUpdated>2010-07-19T12:42:32Z</lastUpdated>
          <updatedBy>Admin1</updatedBy>
        </_info>
        <name>Main</name>
        <addressLine1>711 N. Franklin St.</addressLine1>
        <city>Detroit</city>
        <state>MI</state>
        <zip>92344</zip>
        <country>
          <id>1</id>
          <name>United States</name>
        </country>
        <addressFormat>[companyaddressline1]
[companyaddressline2]
[companycitytown], [companystateprovince] [companypostalcode]
[companycountry]</addressFormat>
        <taxCodeId xsi:nil="true" />
        <expenseReimbursement xsi:nil="true" />
        <primaryAddressFlag>true</primaryAddressFlag>
        <defaultShippingFlag>false</defaultShippingFlag>
        <defaultBillingFlag>false</defaultBillingFlag>
        <defaultMailingFlag>false</defaultMailingFlag>
        <inactiveFlag>false</inactiveFlag>
        <mobileGuid>136a7dd0-343b-4e3f-88d5-44645f7f4f13</mobileGuid>
        <timeZone>
          <id>1</id>
          <name>US Eastern</name>
        </timeZone>
        <company>
          <id>8</id>
          <name>Angry Fox, Co.</name>
          <identifier>AngryFoxCo</identifier>
        </company>
      </record>
    </billingSite>
    <shippingSite>
      <id>7</id>
      <name>Main</name>
      <record>
        <id>7</id>
        <_info>
          <dateEntered>2010-07-19T12:42:32Z</dateEntered>
          <enteredBy>CONVERSION</enteredBy>
          <lastUpdated>2010-07-19T12:42:32Z</lastUpdated>
          <updatedBy>Admin1</updatedBy>
        </_info>
        <name>Main</name>
        <addressLine1>711 N. Franklin St.</addressLine1>
        <city>Detroit</city>
        <state>MI</state>
        <zip>92344</zip>
        <country>
          <id>1</id>
          <name>United States</name>
        </country>
        <addressFormat>[companyaddressline1]
[companyaddressline2]
[companycitytown], [companystateprovince] [companypostalcode]
[companycountry]</addressFormat>
        <taxCodeId xsi:nil="true" />
        <expenseReimbursement xsi:nil="true" />
        <primaryAddressFlag>true</primaryAddressFlag>
        <defaultShippingFlag>false</defaultShippingFlag>
        <defaultBillingFlag>false</defaultBillingFlag>
        <defaultMailingFlag>false</defaultMailingFlag>
        <inactiveFlag>false</inactiveFlag>
        <mobileGuid>136a7dd0-343b-4e3f-88d5-44645f7f4f13</mobileGuid>
        <timeZone>
          <id>1</id>
          <name>US Eastern</name>
        </timeZone>
        <company>
          <id>8</id>
          <name>Angry Fox, Co.</name>
          <identifier>AngryFoxCo</identifier>
        </company>
      </record>
    </shippingSite>
    <billingTerms>
      <id>2</id>
      <name>Net 10</name>
      <record>
        <id>2</id>
        <_info>
          <dateEntered>2010-02-26T20:41:59Z</dateEntered>
          <enteredBy>CONVERSION</enteredBy>
          <lastUpdated>2010-02-26T20:41:59Z</lastUpdated>
          <updatedBy>zadmin</updatedBy>
        </_info>
        <name>Net 10</name>
        <defaultFlag>true</defaultFlag>
        <dueDays>10</dueDays>
        <termsXref>Net 10</termsXref>
      </record>
    </billingTerms>
    <reference>Monthly Billing for May</reference>
    <templateSetupId>1</templateSetupId>
    <emailTemplateId>1</emailTemplateId>
    <addToBatchEmailList>true</addToBatchEmailList>
    <date>2005-05-19T00:00:00Z</date>
    <restrictDownpaymentFlag>false</restrictDownpaymentFlag>
    <locationId>2</locationId>
    <departmentId>10</departmentId>
    <territoryId>38</territoryId>
    <taxableFlag>false</taxableFlag>
    <downpaymentPreviouslyTaxedFlag>false</downpaymentPreviouslyTaxedFlag>
    <serviceTotal>0.00</serviceTotal>
    <currency>
      <id>4</id>
      <name>French Francs</name>
      <record>
        <id>4</id>
        <_info>
          <dateEntered>1999-06-21T12:03:44Z</dateEntered>
          <enteredBy>CONVERSION</enteredBy>
          <lastUpdated>2019-06-13T12:43:44Z</lastUpdated>
          <updatedBy>CURR_CONVERSION</updatedBy>
        </_info>
        <currencyIdentifier>FRF</currencyIdentifier>
        <name>French Francs</name>
        <symbol>FFr</symbol>
        <displayIdFlag>false</displayIdFlag>
        <displaySymbolFlag>false</displaySymbolFlag>
      </record>
      <symbol>FFr</symbol>
      <isoCode>EUR</isoCode>
    </currency>
    <dueDate>2005-05-29T00:00:00Z</dueDate>
    <expenseTotal>0.00</expenseTotal>
    <productTotal>3250.00</productTotal>
    <previousProgressApplied>0.00</previousProgressApplied>
    <serviceAdjustmentAmount>0.00</serviceAdjustmentAmount>
    <agreementAmount>0.00</agreementAmount>
    <downpaymentApplied>0.00</downpaymentApplied>
    <subtotal>3250.00</subtotal>
    <total>3250.00</total>
    <remainingDownpayment>0.00</remainingDownpayment>
    <salesTax>0.00</salesTax>
    <payments>0.00</payments>
    <credits>0.00</credits>
    <balance>3250.00</balance>
    <specialInvoiceFlag>false</specialInvoiceFlag>
    <invoiceItems>
      <invoiceItem>
        <id>1</id>
        <_info>
          <lastUpdated>2005-05-19T20:14:50Z</lastUpdated>
          <updatedBy>user10</updatedBy>
        </_info>
        <catalogItem>
          <id>745</id>
          <record>
            <id>745</id>
            <_info>
              <lastUpdated>2005-05-26T14:27:29Z</lastUpdated>
              <updatedBy>user10</updatedBy>
            </_info>
            <identifier>Web Site Service</identifier>
            <description>Web Site Service</description>
            <inactiveFlag>false</inactiveFlag>
            <subcategory>
              <id>38</id>
              <name>Managed Services</name>
            </subcategory>
            <type>
              <id>33</id>
              <name>Fixed Cost Service</name>
            </type>
            <productClass>NonInventory</productClass>
            <serializedFlag>false</serializedFlag>
            <serializedCostFlag>false</serializedCostFlag>
            <phaseProductFlag>false</phaseProductFlag>
            <unitOfMeasure>
              <id>14</id>
              <name>Month</name>
            </unitOfMeasure>
            <minStockLevel>0</minStockLevel>
            <price>1000.000000</price>
            <cost>0.000000</cost>
            <taxableFlag>false</taxableFlag>
            <customerDescription>Managed Web Site Service
Dedicated Website Hosting Service
- Domain Name Service Services
- Domain Name Hostting Services
- 8 IP Address
- 100 GB Transfer per month
- Intel Xeon 2.4 GHz w/HyperTHreading
- Windows 2003 Server
- Windows 2003 Terminal Services


Managed Services
- Site monitoring 24 x 7
- Complete Hardware Maintenance
- Security Updates
- Operating System Updates
- Server Reboot- Server Diagnostics</customerDescription>
            <recurringFlag>false</recurringFlag>
            <recurringRevenue xsi:nil="true" />
            <recurringCost xsi:nil="true" />
            <recurringOneTimeFlag>false</recurringOneTimeFlag>
            <dateEntered>2005-05-26T14:27:29Z</dateEntered>
            <category>
              <id>18</id>
              <name>Managed Services</name>
            </category>
          </record>
          <identifier>Web Site Service</identifier>
        </catalogItem>
        <description>Web Site Service</description>
        <sequenceNumber>1.000000</sequenceNumber>
        <quantity>3.00</quantity>
        <price>1000.000000</price>
        <cost>0.000000</cost>
        <discount xsi:nil="true" />
        <priceMethod xsi:nil="true" />
        <billableOption>Billable</billableOption>
        <agreement>
          <id>2</id>
          <name>Managed Services for Angry Fox</name>
        </agreement>
        <locationId>2</locationId>
        <businessUnitId>10</businessUnitId>
        <taxableFlag>false</taxableFlag>
        <dropshipFlag>false</dropshipFlag>
        <specialOrderFlag>false</specialOrderFlag>
        <phaseProductFlag>false</phaseProductFlag>
        <cancelledFlag>false</cancelledFlag>
        <quantityCancelled>0.00</quantityCancelled>
        <customerDescription>Managed Web Site Service
Dedicated Website Hosting Service
- Domain Name Service Services
- Domain Name Hostting Services
- 8 IP Address
- 100 GB Transfer per month
- Intel Xeon 2.4 GHz w/HyperTHreading
- Windows 2003 Server
- Windows 2003 Terminal Services


Managed Services
- Site monitoring 24 x 7
- Complete Hardware Maintenance
- Security Updates
- Operating System Updates
- Server Reboot- Server Diagnostics</customerDescription>
        <productSuppliedFlag>false</productSuppliedFlag>
        <subContractorShipToId xsi:nil="true" />
        <subContractorAmountLimit xsi:nil="true" />
        <invoice>
          <id>2</id>
          <identifier>1</identifier>
        </invoice>
        <forecastDetailId xsi:nil="true" />
        <cancelledBy xsi:nil="true" />
        <cancelledDate xsi:nil="true" />
        <purchaseDate xsi:nil="true" />
        <listPrice>1000.000000</listPrice>
        <company>
          <id>8</id>
          <name>Angry Fox, Co.</name>
          <identifier>AngryFoxCo</identifier>
        </company>
        <productClass>NonInventory</productClass>
        <needToPurchaseFlag>false</needToPurchaseFlag>
        <needToOrderQuantity xsi:nil="true" />
        <minimumStockFlag>false</minimumStockFlag>
        <addComponentsFlag xsi:nil="true" />
        <bypassForecastUpdate xsi:nil="true" />
      </invoiceItem>
      <invoiceItem>
        <id>2</id>
        <_info>
          <lastUpdated>2005-05-19T20:14:50Z</lastUpdated>
          <updatedBy>user10</updatedBy>
        </_info>
        <catalogItem>
          <id>747</id>
          <record>
            <id>747</id>
            <_info>
              <lastUpdated>2015-03-18T16:15:26Z</lastUpdated>
              <updatedBy>Admin1</updatedBy>
            </_info>
            <identifier>System Support</identifier>
            <description>System Support</description>
            <inactiveFlag>false</inactiveFlag>
            <subcategory>
              <id>38</id>
              <name>Managed Services</name>
            </subcategory>
            <type>
              <id>33</id>
              <name>Fixed Cost Service</name>
            </type>
            <productClass>NonInventory</productClass>
            <serializedFlag>false</serializedFlag>
            <serializedCostFlag>false</serializedCostFlag>
            <phaseProductFlag>false</phaseProductFlag>
            <unitOfMeasure>
              <id>14</id>
              <name>Month</name>
            </unitOfMeasure>
            <minStockLevel>0</minStockLevel>
            <price>250.000000</price>
            <cost>2.000000</cost>
            <taxableFlag>false</taxableFlag>
            <customerDescription>Systems Support

- Network File Server covered
- Network Tape Backup covered
- File Server UPS covered
- Network Adapters covered
- Network Workstation Connections
     All Network hardware cabling to allow proper functioning of 
     the Workstation on the Local Area Network
- All Network Concentrators/HUBs covered
- All Network Print Server covered
- All Network cabling covered
- All Network Printer cabling covered
- Extended Warranty &amp; Onsite Repair
  </customerDescription>
            <recurringFlag>false</recurringFlag>
            <recurringRevenue xsi:nil="true" />
            <recurringCost xsi:nil="true" />
            <recurringOneTimeFlag>false</recurringOneTimeFlag>
            <dateEntered>2015-03-18T16:15:26Z</dateEntered>
            <category>
              <id>18</id>
              <name>Managed Services</name>
            </category>
          </record>
          <identifier>System Support</identifier>
        </catalogItem>
        <description>System Support</description>
        <sequenceNumber>1.000000</sequenceNumber>
        <quantity>1.00</quantity>
        <price>250.000000</price>
        <cost>0.000000</cost>
        <discount xsi:nil="true" />
        <priceMethod xsi:nil="true" />
        <billableOption>Billable</billableOption>
        <agreement>
          <id>2</id>
          <name>Managed Services for Angry Fox</name>
        </agreement>
        <locationId>2</locationId>
        <businessUnitId>10</businessUnitId>
        <taxableFlag>false</taxableFlag>
        <dropshipFlag>false</dropshipFlag>
        <specialOrderFlag>false</specialOrderFlag>
        <phaseProductFlag>false</phaseProductFlag>
        <cancelledFlag>false</cancelledFlag>
        <quantityCancelled>0.00</quantityCancelled>
        <customerDescription>Systems Support

- Network File Server covered
- Network Tape Backup covered
- File Server UPS covered
- Network Adapters covered
- Network Workstation Connections
     All Network hardware cabling to allow proper functioning of 
     the Workstation on the Local Area Network
- All Network Concentrators/HUBs covered
- All Network Print Server covered
- All Network cabling covered
- All Network Printer cabling covered
- Extended Warranty &amp; Onsite Repair
  </customerDescription>
        <productSuppliedFlag>false</productSuppliedFlag>
        <subContractorShipToId xsi:nil="true" />
        <subContractorAmountLimit xsi:nil="true" />
        <invoice>
          <id>2</id>
          <identifier>1</identifier>
        </invoice>
        <forecastDetailId xsi:nil="true" />
        <cancelledBy xsi:nil="true" />
        <cancelledDate xsi:nil="true" />
        <purchaseDate xsi:nil="true" />
        <listPrice>250.000000</listPrice>
        <company>
          <id>8</id>
          <name>Angry Fox, Co.</name>
          <identifier>AngryFoxCo</identifier>
        </company>
        <productClass>NonInventory</productClass>
        <needToPurchaseFlag>false</needToPurchaseFlag>
        <needToOrderQuantity xsi:nil="true" />
        <minimumStockFlag>false</minimumStockFlag>
        <addComponentsFlag xsi:nil="true" />
        <bypassForecastUpdate xsi:nil="true" />
      </invoiceItem>
    </invoiceItems>
  </Invoice>
</Invoices>