diff --git a/.github/AL-Go-Settings.json b/.github/AL-Go-Settings.json index 65e7e19b8e..e1ef42072b 100644 --- a/.github/AL-Go-Settings.json +++ b/.github/AL-Go-Settings.json @@ -5,7 +5,7 @@ "runs-on": "windows-latest", "cacheImageName": "", "UsePsSession": false, - "artifact": "https://bcinsider-fvh2ekdjecfjd6gk.b02.azurefd.net/sandbox/26.0.28000.0/base", + "artifact": "https://bcinsider-fvh2ekdjecfjd6gk.b02.azurefd.net/sandbox/26.0.28476.0/base", "country": "base", "useProjectDependencies": true, "repoVersion": "26.0", diff --git a/Apps/AT/ContosoCoffeeDemoDatasetAT/app/Demo Data/Finance/2. Master Data/CreateVatStatementNameAT.Codeunit.al b/Apps/AT/ContosoCoffeeDemoDatasetAT/app/Demo Data/Finance/2. Master Data/CreateVatStatementNameAT.Codeunit.al index 066578b8c3..b6a4e44974 100644 --- a/Apps/AT/ContosoCoffeeDemoDatasetAT/app/Demo Data/Finance/2. Master Data/CreateVatStatementNameAT.Codeunit.al +++ b/Apps/AT/ContosoCoffeeDemoDatasetAT/app/Demo Data/Finance/2. Master Data/CreateVatStatementNameAT.Codeunit.al @@ -1,4 +1,4 @@ -codeunit 11189 "Create VAT Statement NameAT" +codeunit 11189 "Create VAT Statement Name AT" { InherentEntitlements = X; InherentPermissions = X; @@ -6,9 +6,9 @@ codeunit 11189 "Create VAT Statement NameAT" trigger OnRun() var CreateVATStatement: Codeunit "Create VAT Statement"; - ContosoVatStatmentES: Codeunit "Contoso Vat Statment ES"; + ContosoVATStatement: Codeunit "Contoso VAT Statement"; begin - ContosoVatStatmentES.InsertVATStatementName(CreateVATStatement.VATTemplateName(), StatementUstvaLbl, VATStatementGermanyDescLbl); + ContosoVATStatement.InsertVATStatementName(CreateVATStatement.VATTemplateName(), StatementUstvaLbl, VATStatementGermanyDescLbl); end; var diff --git a/Apps/AT/ContosoCoffeeDemoDatasetAT/app/Demo Tool/Contoso Helpers/ContosoVatStatmentES.Codeunit.al b/Apps/AT/ContosoCoffeeDemoDatasetAT/app/Demo Tool/Contoso Helpers/ContosoVatStatmentES.Codeunit.al deleted file mode 100644 index fe3dd6bffa..0000000000 --- a/Apps/AT/ContosoCoffeeDemoDatasetAT/app/Demo Tool/Contoso Helpers/ContosoVatStatmentES.Codeunit.al +++ /dev/null @@ -1,37 +0,0 @@ -codeunit 11146 "Contoso Vat Statment ES" -{ - InherentEntitlements = X; - InherentPermissions = X; - Permissions = - tabledata "VAT Statement Name" = rim; - - procedure SetOverwriteData(Overwrite: Boolean) - begin - OverwriteData := Overwrite; - end; - - procedure InsertVATStatementName(TemplateName: Code[10]; StatementName: Code[10]; StatementDesc: Text[100]) - var - VATStatementName: Record "VAT Statement Name"; - Exists: Boolean; - begin - if VATStatementName.Get(TemplateName, StatementName) then begin - Exists := true; - - if not OverwriteData then - exit; - end; - - VATStatementName.Validate("Statement Template Name", TemplateName); - VATStatementName.Validate(Name, StatementName); - VATStatementName.Validate(Description, StatementDesc); - - if Exists then - VATStatementName.Modify(true) - else - VATStatementName.Insert(true); - end; - - var - OverwriteData: Boolean; -} \ No newline at end of file diff --git a/Apps/AT/ContosoCoffeeDemoDatasetAT/app/Demo Tool/ContosoATLocalization.Codeunit.al b/Apps/AT/ContosoCoffeeDemoDatasetAT/app/Demo Tool/ContosoATLocalization.Codeunit.al index e7fa18936d..829e01c42a 100644 --- a/Apps/AT/ContosoCoffeeDemoDatasetAT/app/Demo Tool/ContosoATLocalization.Codeunit.al +++ b/Apps/AT/ContosoCoffeeDemoDatasetAT/app/Demo Tool/ContosoATLocalization.Codeunit.al @@ -69,7 +69,7 @@ codeunit 11157 "Contoso AT Localization" Codeunit.Run(Codeunit::"Create Currency Ex. Rate AT"); Codeunit.Run(Codeunit::"Create Resource AT"); Codeunit.Run(Codeunit::"Create VAT Template AT"); - Codeunit.Run(Codeunit::"Create VAT Statement NameAT"); + Codeunit.Run(Codeunit::"Create VAT Statement Name AT"); Codeunit.Run(Codeunit::"Create VAT Statement Line AT"); end; end; diff --git a/Apps/CZ/AdvancePaymentsLocalization/app/Src/Reports/SalesAdvanceLetter.rdl b/Apps/CZ/AdvancePaymentsLocalization/app/Src/Reports/SalesAdvanceLetter.rdl index 3913582939..14e989ec93 100644 --- a/Apps/CZ/AdvancePaymentsLocalization/app/Src/Reports/SalesAdvanceLetter.rdl +++ b/Apps/CZ/AdvancePaymentsLocalization/app/Src/Reports/SalesAdvanceLetter.rdl @@ -2621,6 +2621,7 @@ Cstr(Fields!PageLbl.Value) + true true @@ -2637,9 +2638,9 @@ Cstr(Fields!PageLbl.Value) QRCode - 11.31545cm - 14.3081cm - 3.3441cm + 11.00293cm + 14.30806cm + 3.6919cm 3.6919cm 3 @@ -2696,7 +2697,6 @@ Cstr(Fields!PageLbl.Value) - true @@ -2930,7 +2930,6 @@ Cstr(Fields!PageLbl.Value) - true @@ -6145,6 +6144,7 @@ Cstr(Fields!PageLbl.Value) + true true @@ -6161,9 +6161,9 @@ Cstr(Fields!PageLbl.Value) QRCode - 16.48437cm - 14.30813cm - 3.3441cm + 16.13657cm + 14.30806cm + 3.6919cm 3.6919cm 7 diff --git a/Apps/CZ/AdvancePaymentsLocalization/app/Src/Reports/SalesInvoicewithAdvCZZ.Report.al b/Apps/CZ/AdvancePaymentsLocalization/app/Src/Reports/SalesInvoicewithAdvCZZ.Report.al index 958a60f64a..9555848fc6 100644 --- a/Apps/CZ/AdvancePaymentsLocalization/app/Src/Reports/SalesInvoicewithAdvCZZ.Report.al +++ b/Apps/CZ/AdvancePaymentsLocalization/app/Src/Reports/SalesInvoicewithAdvCZZ.Report.al @@ -307,7 +307,7 @@ report 31018 "Sales - Invoice with Adv. CZZ" column(PrepaymentAmt_SalesInvoiceHeader; PrepaymentAmt) { } - column(TotalAfterPrepayed_SalesInvoiceHeader; TotalAfterPrepayed) + column(TotalAfterPrepayed_SalesInvoiceHeader; Format(TotalAfterPrepayed, 0, AutoFormat.ResolveAutoFormat(Enum::"Auto Format"::AmountFormat, "Sales Invoice Header"."Currency Code"))) { } column(CalculatedExchRate; CalculatedExchRate) @@ -816,6 +816,7 @@ report 31018 "Sales - Invoice with Adv. CZZ" ReasonCode: Record "Reason Code"; ShipmentMethod: Record "Shipment Method"; TempVATAmountLine: Record "VAT Amount Line" temporary; + AutoFormat: Codeunit "Auto Format"; CompanyAddr: array[8] of Text[100]; CustAddr: array[8] of Text[100]; ShipToAddr: array[8] of Text[100]; diff --git a/Apps/CZ/CompensationLocalization/app/Src/Pages/CompensationProposalCZC.Page.al b/Apps/CZ/CompensationLocalization/app/Src/Pages/CompensationProposalCZC.Page.al index b0016dda5b..e5ecf3354c 100644 --- a/Apps/CZ/CompensationLocalization/app/Src/Pages/CompensationProposalCZC.Page.al +++ b/Apps/CZ/CompensationLocalization/app/Src/Pages/CompensationProposalCZC.Page.al @@ -205,7 +205,8 @@ page 31276 "Compensation Proposal CZC" FilteredCustLedgerEntry.SetRange(Open, true); FilteredCustLedgerEntry.SetRange(Prepayment, false); FilteredCustLedgerEntry.SetRange("Compensation Amount (LCY) CZC", 0); - FilteredCustLedgerEntry.SetRange("On Hold", ''); + if not CompensationsSetupCZC."Including Entries with On Hold" then + FilteredCustLedgerEntry.SetRange("On Hold", ''); FilteredCustLedgerEntry.SetFilter("Posting Date", '<=%1', PostingDate); OnApplyFilterOnAfterSetCustLedgerEntryFilter(PostingDate, FilteredCustLedgerEntry); @@ -213,7 +214,8 @@ page 31276 "Compensation Proposal CZC" FilteredVendorLedgerEntry.SetRange(Open, true); FilteredVendorLedgerEntry.SetRange(Prepayment, false); FilteredVendorLedgerEntry.SetRange("Compensation Amount (LCY) CZC", 0); - FilteredVendorLedgerEntry.SetRange("On Hold", ''); + if not CompensationsSetupCZC."Including Entries with On Hold" then + FilteredVendorLedgerEntry.SetRange("On Hold", ''); FilteredVendorLedgerEntry.SetFilter("Posting Date", '<=%1', PostingDate); OnApplyFilterOnAfterSetVendLedgerEntryFilter(PostingDate, FilteredVendorLedgerEntry); diff --git a/Apps/CZ/CompensationLocalization/app/Src/Pages/CompensationsSetupCZC.Page.al b/Apps/CZ/CompensationLocalization/app/Src/Pages/CompensationsSetupCZC.Page.al index 43802f9ec5..8bc15e9941 100644 --- a/Apps/CZ/CompensationLocalization/app/Src/Pages/CompensationsSetupCZC.Page.al +++ b/Apps/CZ/CompensationLocalization/app/Src/Pages/CompensationsSetupCZC.Page.al @@ -51,6 +51,11 @@ page 31270 "Compensations Setup CZC" ApplicationArea = Basic, Suite; ToolTip = 'Specifies which customer/vendor entries to display if the system does not find any. If the value in the field is set to "NO", the entries of all other partners will be displayed, if set to "YES", the page will be blank.'; } + field("Including Entries with On Hold"; Rec."Including Entries with On Hold") + { + ApplicationArea = Basic, Suite; + ToolTip = 'Specifies if the entries with On Hold status will be included in the compensation proposal.'; + } } group(Numbering) { diff --git a/Apps/CZ/CompensationLocalization/app/Src/Tables/CompensationLineCZC.Table.al b/Apps/CZ/CompensationLocalization/app/Src/Tables/CompensationLineCZC.Table.al index dea2409d22..89b8dd3aa3 100644 --- a/Apps/CZ/CompensationLocalization/app/Src/Tables/CompensationLineCZC.Table.al +++ b/Apps/CZ/CompensationLocalization/app/Src/Tables/CompensationLineCZC.Table.al @@ -94,9 +94,11 @@ table 31273 "Compensation Line CZC" trigger OnLookup() var + CompensationsSetup: Record "Compensations Setup CZC"; CustLedgerEntry: Record "Cust. Ledger Entry"; VendorLedgerEntry: Record "Vendor Ledger Entry"; begin + CompensationsSetup.Get(); case "Source Type" of "Source Type"::Customer: begin @@ -104,7 +106,8 @@ table 31273 "Compensation Line CZC" CustLedgerEntry.SetRange(Open, true); CustLedgerEntry.SetRange(Prepayment, false); CustLedgerEntry.SetRange("Compensation Amount (LCY) CZC", 0); - CustLedgerEntry.SetRange("On Hold", ''); + if not CompensationsSetup."Including Entries with On Hold" then + CustLedgerEntry.SetRange("On Hold", ''); OnSourceEntryNoLookupOnAfterCustLedgerEntryFilter(CustLedgerEntry); if CustLedgerEntry.FindSet() then repeat @@ -126,7 +129,8 @@ table 31273 "Compensation Line CZC" VendorLedgerEntry.SetRange(Open, true); VendorLedgerEntry.SetRange(Prepayment, false); VendorLedgerEntry.SetRange("Compensation Amount (LCY) CZC", 0); - VendorLedgerEntry.SetRange("On Hold", ''); + if not CompensationsSetup."Including Entries with On Hold" then + VendorLedgerEntry.SetRange("On Hold", ''); OnSourceEntryNoLookupOnAfterCustLedgerEntryFilter(CustLedgerEntry); if VendorLedgerEntry.FindSet() then repeat @@ -612,6 +616,7 @@ table 31273 "Compensation Line CZC" local procedure CheckCustLedgerEntry(var CustLedgerEntry: Record "Cust. Ledger Entry") var + CompensationsSetup: Record "Compensations Setup CZC"; IsHandled: Boolean; begin IsHandled := false; @@ -619,18 +624,21 @@ table 31273 "Compensation Line CZC" if IsHandled then exit; + CompensationsSetup.Get(); if CustLedgerEntry."Entry No." = 0 then exit; CustLedgerEntry.TestField(Open, true); CustLedgerEntry.TestField(Prepayment, false); - CustLedgerEntry.TestField("On Hold", ''); CustLedgerEntry.TestField("Compensation Amount (LCY) CZC", 0); + if not CompensationsSetup."Including Entries with On Hold" then + CustLedgerEntry.TestField("On Hold", ''); if CustLedgerEntry.RelatedToAdvanceLetterCZL() then Error(RelatedToAdvanceLetterErr, CustLedgerEntry.TableCaption(), CustLedgerEntry."Entry No."); end; local procedure CheckVendorLedgerEntry(var VendorLedgerEntry: Record "Vendor Ledger Entry") var + CompensationsSetup: Record "Compensations Setup CZC"; IsHandled: Boolean; begin IsHandled := false; @@ -638,12 +646,14 @@ table 31273 "Compensation Line CZC" if IsHandled then exit; + CompensationsSetup.Get(); if VendorLedgerEntry."Entry No." = 0 then exit; VendorLedgerEntry.TestField(Open, true); VendorLedgerEntry.TestField(Prepayment, false); - VendorLedgerEntry.TestField("On Hold", ''); VendorLedgerEntry.TestField("Compensation Amount (LCY) CZC", 0); + if not CompensationsSetup."Including Entries with On Hold" then + VendorLedgerEntry.TestField("On Hold", ''); if VendorLedgerEntry.RelatedToAdvanceLetterCZL() then Error(RelatedToAdvanceLetterErr, VendorLedgerEntry.TableCaption(), VendorLedgerEntry."Entry No."); end; diff --git a/Apps/CZ/CompensationLocalization/app/Src/Tables/CompensationsSetupCZC.Table.al b/Apps/CZ/CompensationLocalization/app/Src/Tables/CompensationsSetupCZC.Table.al index 848f7d177c..6deb267317 100644 --- a/Apps/CZ/CompensationLocalization/app/Src/Tables/CompensationsSetupCZC.Table.al +++ b/Apps/CZ/CompensationLocalization/app/Src/Tables/CompensationsSetupCZC.Table.al @@ -75,6 +75,11 @@ table 31270 "Compensations Setup CZC" Caption = 'Show Empty when not Found'; DataClassification = CustomerContent; } + field(45; "Including Entries with On Hold"; Boolean) + { + Caption = 'Including Entries with On Hold'; + DataClassification = CustomerContent; + } } keys diff --git a/Apps/CZ/CoreLocalizationPack/app/Src/Codeunits/UserSetupAdvManagementCZL.Codeunit.al b/Apps/CZ/CoreLocalizationPack/app/Src/Codeunits/UserSetupAdvManagementCZL.Codeunit.al index 9bc1098bce..8cba9b5ac5 100644 --- a/Apps/CZ/CoreLocalizationPack/app/Src/Codeunits/UserSetupAdvManagementCZL.Codeunit.al +++ b/Apps/CZ/CoreLocalizationPack/app/Src/Codeunits/UserSetupAdvManagementCZL.Codeunit.al @@ -83,14 +83,16 @@ codeunit 31072 "User Setup Adv. Management CZL" LocationQtyIncreaseErr: Label 'You have no right to post Location (quantity increase) with Location Code: %1. Check User Setup!', Comment = '%1 = Location Code'; LocationQtyDecreaseErr: Label 'You have no right to post Location (quantity decrease) with Location Code: %1. Check User Setup!', Comment = '%1 = Location Code'; begin - if not CheckWorkDocDate(ItemJournalLine."Document Date") then - ItemJournalLine.TestField("Document Date", WorkDate()); - if not CheckSysDocDate(ItemJournalLine."Document Date") then - ItemJournalLine.TestField("Document Date", Today); - if not CheckWorkPostingDate(ItemJournalLine."Posting Date") then - ItemJournalLine.TestField("Posting Date", WorkDate()); - if not CheckSysPostingDate(ItemJournalLine."Posting Date") then - ItemJournalLine.TestField("Posting Date", Today); + if not IsUndoPosting(ItemJournalLine) then begin + if not CheckWorkDocDate(ItemJournalLine."Document Date") then + ItemJournalLine.TestField("Document Date", WorkDate()); + if not CheckSysDocDate(ItemJournalLine."Document Date") then + ItemJournalLine.TestField("Document Date", Today); + if not CheckWorkPostingDate(ItemJournalLine."Posting Date") then + ItemJournalLine.TestField("Posting Date", WorkDate()); + if not CheckSysPostingDate(ItemJournalLine."Posting Date") then + ItemJournalLine.TestField("Posting Date", Today); + end; // Location checks if ItemJournalLine."Value Entry Type" <> ItemJournalLine."Value Entry Type"::Revaluation then begin @@ -135,6 +137,15 @@ codeunit 31072 "User Setup Adv. Management CZL" end; end; + local procedure IsUndoPosting(ItemJournalLine: Record "Item Journal Line"): Boolean + begin + exit(ItemJournalLine.Correction and + (ItemJournalLine."Document Type" in [ + ItemJournalLine."Document Type"::"Purchase Receipt", + ItemJournalLine."Document Type"::"Sales Shipment", + ItemJournalLine."Document Type"::"Transfer Shipment"])); + end; + [TryFunction] procedure CheckJobJournalLine(JobJournalLine: Record "Job Journal Line") begin diff --git a/Apps/CZ/CoreLocalizationPack/app/Src/Codeunits/VATStatementHandlerCZL.Codeunit.al b/Apps/CZ/CoreLocalizationPack/app/Src/Codeunits/VATStatementHandlerCZL.Codeunit.al index 46a4f32e8d..a2c7bed7ff 100644 --- a/Apps/CZ/CoreLocalizationPack/app/Src/Codeunits/VATStatementHandlerCZL.Codeunit.al +++ b/Apps/CZ/CoreLocalizationPack/app/Src/Codeunits/VATStatementHandlerCZL.Codeunit.al @@ -111,7 +111,7 @@ codeunit 31140 "VAT Statement Handler CZL" Parantheses, i, OperatorNo, VATStmtLineID : Integer; Operator: Char; LeftOperand, RightOperand : Text; - LineTotalAmount, LineTotalBase : Decimal; + LineTotalAmount, LineTotalBase : Decimal; LeftAmount, RightAmount : Decimal; LeftBase, RightBase : Decimal; ResultAmount, ResultBase : Decimal; @@ -175,12 +175,14 @@ codeunit 31140 "VAT Statement Handler CZL" begin if RightAmount = 0 then begin ResultAmount := 0; - Error(DivideByZeroErr); + if LeftAmount <> 0 then + Error(DivideByZeroErr); end else ResultAmount := LeftAmount / RightAmount; if RightBase = 0 then begin ResultBase := 0; - Error(DivideByZeroErr); + if LeftBase <> 0 then + Error(DivideByZeroErr); end else ResultBase := LeftBase / RightBase; end; diff --git a/Apps/CZ/CoreLocalizationPack/app/Src/Reports/SalesInvoice.rdl b/Apps/CZ/CoreLocalizationPack/app/Src/Reports/SalesInvoice.rdl index cafdadfa8f..3a980ba563 100644 --- a/Apps/CZ/CoreLocalizationPack/app/Src/Reports/SalesInvoice.rdl +++ b/Apps/CZ/CoreLocalizationPack/app/Src/Reports/SalesInvoice.rdl @@ -11,5612 +11,12 @@ 135dd236-cd6e-44c0-bca5-0df0d45384c0 - - - - - - - - - 17.99999cm - - - - - 8.13141in - - - - - - - - - - 3.49999cm - - - 5.49999cm - - - 3.49999cm - - - 5.49999cm - - - - - 0.1cm - - - - - true - - - - - - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!VendorLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - = -Cstr(Fields!DocumentLbl.Value & " " & Fields!No_SalesInvoiceHeader.Value) + Chr(177) + -Cstr(IIf(Fields!CopyNo.Value > 1, Fields!CopyLbl.Value, "")) + Chr(177) + -Cstr(First(Fields!LogoPositiononDocuments_SalesReceivablesSetup.Value, "DataSet_Result")) + Chr(177) + -Cstr(Fields!PageLbl.Value) - - - - - - Pink - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!CustomerLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - - - - - =Code.IsNewPage(0,Fields!No_SalesInvoiceHeader.Value,Fields!CopyNo.Value) - - - - - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr1.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr1.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr2.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr2.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr3.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr3.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr4.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr4.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr5.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr5.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr6.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr6.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!VATRegistrationNo_SalesInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =First(Fields!VATRegistrationNo_CompanyInformation.Value, "DataSet_Result") - - - - - - - VATRegNo_CompanyInfo - 17 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATRegistrationNo_SalesInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATRegistrationNo_SalesInvoiceHeader.Value - - - - - - - VATRegistrationNo_SalesInvoiceHeader - 15 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!RegistrationNo_SalesInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =First(Fields!RegistrationNo_CompanyInformation.Value, "DataSet_Result") - - - - - - - CompanyInfoVATRegNo - 36 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!RegistrationNo_SalesInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!RegistrationNo_SalesInvoiceHeader.Value - - - - - - - VATRegistrationNo_SalesInvoiceHeader - 34 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!DocFooterText.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.1cm - - - - - true - true - - - - - - - - - - - - Textbox31 - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.1cm - - - - - true - true - - - - - - - - - - - - Textbox16 - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!BankAccountNo_SalesInvoiceHeaderCaption.Value - - - - - - - 24 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!BankAccountNo_SalesInvoiceHeader.Value - - - - - - - 38 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!DocumentDate_SalesInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!DocumentDate_SalesInvoiceHeader.Value - - - - - - - PostingDate_SalesInvoiceHeader - 12 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!IBAN_SalesInvoiceHeaderCaption.Value - - - - - - - 25 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!IBAN_SalesInvoiceHeader.Value - - - - - - - 39 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATDate_SalesInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATDate_SalesInvoiceHeader.Value - - - - - - - 41 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!BIC_SalesInvoiceHeaderCaption.Value - - - - - - - 26 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!BIC_SalesInvoiceHeader.Value - - - - - - - 40 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!DueDate_SalesInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!DueDate_SalesInvoiceHeader.Value - - - - - - - DueDate_SalesInvoiceHeader - 43 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!PmntSymbol1.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PmntSymbol2.Value - - - - - - - PmntSymbol2 - 13 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PaymentTermsLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PaymentTerms.Value - - - - - - - 45 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45cm - - - - - true - true - - - - - =Fields!PmntSymbol3.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PmntSymbol4.Value - - - - - - - PmntSymbol4 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PaymentMethodLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PaymentMethod.Value - - - - - - - Textbox17 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.1cm - - - - - true - - - - - - - - - - - - Textbox106 - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.1cm - - - - - true - - - - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.45001cm - - - - - true - true - - - - - - - - - - - - Textbox122 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ReasonCode.Value - - - - - - - ReasonCode - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToLbl.Value - - - - - - - 27 - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!OrderNo_SalesInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!OrderNo_SalesInvoiceHeader.Value - - - - - - - OrderNo_SalesInvoiceHeader - 14 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr1.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!YourReference_SalesInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!YourReference_SalesInvoiceHeader.Value - - - - - - - 47 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr2.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!ShipmentMethodLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipmentMethod.Value - - - - - - - 49 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr3.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!SalespersonLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Name_SalespersonPurchaser.Value - - - - - - - Name_SalespersonPurchaser - 16 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr4.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - - - - - - - - Textbox134 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PhoneNo_SalespersonPurchaser.Value - - - - - - - PhoneNo_SalespersonPurchaser - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr5.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - - - - - - - - Textbox130 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!EMail_SalespersonPurchaser.Value - - - - - - - EMail_SalespersonPurchaser - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr6.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - =Fields!DocFooterText.Value is Nothing - - - - - - - - - - - - - - - - - - - - - DataSet_Result - 0.00003cm - 10.85022cm - 17.99996cm - - - - - - - - - 0.98425in - - - 2.16535in - - - 0.7874in - - - 0.3937in - - - 0.98425in - - - 0.3937in - - - 0.3937in - - - 0.98425in - - - - - 0.17717in - - - - - true - true - - - - - =Fields!No_SalesInvoiceLineCaption.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Description_SalesInvoiceLineCaption.Value - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Quantity_SalesInvoiceLineCaption.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!UoMLbl.Value - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!UnitPrice_SalesInvoiceLineCaption.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!DiscPercentLbl.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VAT_SalesInvoiceLineCaption.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!LineAmount_SalesInvoiceLineCaption.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17717in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Description_SalesInvoiceLine.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 7 - - - - - - - - - - - - 0.17717in - - - - - true - true - - - - - =IIf(Fields!Type_SalesInvoicetLine.Value = 2, Fields!No_SalesInvoiceLine.Value, "") - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Description_SalesInvoiceLine.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Code.BlankZero(Fields!Quantity_SalesInvoiceLine.Value) - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!UnitofMeasure_SalesInvoiceLine.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Code.BlankZero(Fields!UnitPrice_SalesInvoiceLine.Value) - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Code.BlankZero(Fields!LineDiscount_SalesInvoiceLine.Value) - - - - - - - LineDiscount_SalesInvoiceLine - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =IIf(Fields!Type_SalesInvoicetLine.Value = 0, "", Fields!VAT_SalesInvoiceLine.Value) - - - - - - - VAT_SalesInvoiceLine - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Code.BlankZero(Fields!LineAmount_SalesInvoiceLine.Value) - - - - - - - Amount_SalesInvoiceLine - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17717in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 3 - - - - - - - - true - true - - - - - =Fields!SubtotalLbl.Value - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - true - true - - - - - =Sum(Fields!LineAmount_SalesInvoiceLine.Value) - - - - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17717in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 3 - - - - - - - - true - true - - - - - =Fields!InvDiscountAmount_SalesInvoiceLineCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - true - true - - - - - =-Sum(Fields!InvDiscountAmount_SalesInvoiceLine.Value) - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17717in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 3 - - - - - - - - true - true - - - - - =Fields!Amount_SalesInvoiceHeaderCaption.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_SalesInvoiceHeader.Value - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - true - true - - - - - =Fields!Amount_SalesInvoiceHeader.Value - - - - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17717in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 3 - - - - - - - - true - true - - - - - =Fields!VATLbl.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_SalesInvoiceHeader.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - true - true - - - - - =Fields!AmountIncludingVAT_SalesInvoiceHeader.Value - Fields!Amount_SalesInvoiceHeader.Value - - - - - - - Textbox53 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17717in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 3 - - - - - - - - true - true - - - - - =Fields!AmountIncludingVAT_SalesInvoiceHeaderCaption.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_SalesInvoiceHeader.Value - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - true - true - - - - - =Fields!AmountIncludingVAT_SalesInvoiceHeader.Value - - - - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - - - - - - - - - - - - - - - - - After - true - - - - - - - =iif(Fields!Type_SalesInvoicetLine.Value = 0, false, true) - - - - - =iif(Fields!Type_SalesInvoicetLine.Value = 0, true, false) - - - - - - - =Sum(Fields!InvDiscountAmount_SalesInvoiceLine.Value) = 0 - - Before - - - - =Sum(Fields!InvDiscountAmount_SalesInvoiceLine.Value) = 0 - - Before - - - - =Fields!Amount_SalesInvoiceHeader.Value = Fields!AmountIncludingVAT_SalesInvoiceHeader.Value - - Before - - - - =Fields!Amount_SalesInvoiceHeader.Value = Fields!AmountIncludingVAT_SalesInvoiceHeader.Value - - Before - - - Before - - - - DataSet_Result - - - =Cstr(Fields!LineNo_SalesInvoiceLine.Value) - GreaterThan - - "" - - - - 313.5pt - 0.00003cm - 1.41736in - 7.0866in - 1 - - - - - - - - - 0.98425in - - - 0.59055in - - - 0.98425in - - - 0.98425in - - - 0.98423in - - - 0.88008in - - - - - 0.17717in - - - - - true - true - - - - - =IIf(Fields!CalculatedExchRate.Value <> 1, Fields!ExchRateText.Value, " ") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 6 - - - - - - - - - - - 0.17717in - - - - - true - true - - - - - =Fields!VATIdentLbl.Value - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATPercentLbl.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATBaseLbl.Value & " " & Fields!CurrencyCode_SalesInvoiceHeader.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATAmtLbl.Value & " " & Fields!CurrencyCode_SalesInvoiceHeader.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATBaseLbl.Value & " " & First(Fields!LCYCode_GeneralLedgerSetup.Value, "DataSet_Result") - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATAmtLbl.Value & " " & First(Fields!LCYCode_GeneralLedgerSetup.Value, "DataSet_Result") - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17717in - - - - - true - true - - - - - =Fields!VATAmtLineVATIdentifier.Value - - - - - - - VATAmtLineVATIdentifier - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATAmtLineVATPer.Value - - - - - - - VATAmtLineVATPer - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATBase.Value) - - - - - - - VATAmtLineVATBase - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATAmt.Value) - - - - - - - VATAmtLineVATAmt - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATBaseLCY.Value) - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATAmtLCY.Value) - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17717in - - - - - true - true - - - - - =StrConv(Fields!TotalLbl.Value, VbStrConv.ProperCase) - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATBase.Value) - - - - - - - VATAmtLineVATBase - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATAmt.Value) - - - - - - - VATAmtLineVATAmt - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATBaseLCY.Value) - - - - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATAmtLCY.Value) - - - - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - - - - - - - - - - =Fields!CalculatedExchRate.Value = 1 - - - - - =Fields!CalculatedExchRate.Value = 1 - - - - - - - - - =IIf(Fields!CalculatedExchRate.Value <> 1, False, True) - - - - - - - =Fields!VATAmtLineVATIdentifier.Value - - - - - =Fields!VATAmtLineVATIdentifier.Value - - - - - - - - - - DataSet_Result - - - =Fields!VATAmtLineVATIdentifier.Value - GreaterThan - - "" - - - - 422.8pt - 0.00003cm - 0.70868in - 5.40761in - 2 - - - - - - - - - 2.49999cm - - - 15.49999cm - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!VATClauseIdentifier.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATClauseDescription.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - - - - - - - - - - - - - - - DataSet_Result - - - =Fields!VATClauseIdentifier.Value - GreaterThan - - "" - - - - 19.09521cm - 0.00012cm - 0.45001cm - 17.99998cm - 3 - - - - - - - - - 6.00001cm - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!CreatorLbl.Value & ": " & Fields!FullName_Employee.Value & IIf(Fields!PhoneNo_Employee.Value is Nothing, "", ", ") & Fields!PhoneNo_Employee.Value & IIf(Fields!CompanyEMail_Employee.Value is Nothing, "", ", ") & Fields!CompanyEMail_Employee.Value - - - - - - Pink - 2pt - 2pt - 2pt - 2pt - - - - - - - - - - - - - - - - - - - - - DataSet_Result - - - =Fields!FullName_Employee.Value - GreaterThan - - "" - - - - 19.65106cm - 12.00002cm - 0.45001cm - 6.00001cm - 4 - - - - - - - - - 0.07938cm - - - - - 0.42333cm - - - - - true - true - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - - - - - - - - - - - - 17.72856cm - - - true - true - - - - - =Fields!LineFeeCaptionLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - - - =Fields!LineFeeCaptionLbl.Value - GreaterThan - - ="" - - - - 20.18658cm - 0.00007cm - 0.42333cm - 17.80794cm - 5 - - - - - - true - - - - - =Fields!QRPaymentCode.Value - - - - - - - true - true - - - - - =Fields!QRPaymentLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - true - - - - - true - - - - - - - - - - - - - - - - - =Fields!No_SalesInvoiceHeader.Value - =Fields!CopyNo.Value - - - Between - - - - - - DataSet_Result - - - =Fields!No_SalesInvoiceHeader.Value Is Nothing - Equal - - =False - - - - 0.00005cm - 8.13141in - 17.99999cm - - - - - - 20.65378cm - - - 18.00008cm - - - 2.2cm - true - true - - - true - true - - - - - =Code.GetData(4,1) & " " & Code.GetGroupPageNumber(ReportItems!NewPage.Value,Globals!PageNumber) - - - - - - - 0.8cm - 0.00005cm - 0.5cm - 17.99999cm - - - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =Code.GetData(2,1) - - - - - - - 1.33528cm - 0.00005cm - 0.5cm - 18cm - 1 - - - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =IIf(Code.SetData(ReportItems!HeaderData.Value,1),Code.GetData(1,1),"") - - - - - - - 0.00005cm - 0.8cm - 18cm - 2 - - - 2pt - 2pt - 2pt - 2pt - - - - Database - =IIf(Code.GetData(3,1)=1,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") - image/bmp - FitProportional - 0.00005cm - 14mm - 60mm - 3 - - =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) - - - - - - - Database - =IIf(Code.GetData(3,1)=2,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") - image/bmp - FitProportional - 6.00005cm - 14mm - 60mm - 4 - - =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) - - - - - - - Database - =IIf(Code.GetData(3,1)=3,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") - image/bmp - FitProportional - 12.00005cm - 14mm - 60mm - 5 - - =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) - - - - - - - - - - - - 0.67639cm - true - true - - - true - - - - - =ReportItems("FullName_User").Value - - - - - - - true - true - - - - - =First(Fields!HomePage_CompanyInformation.Value, "DataSet_Result") - - - - - - - 0.17639cm - 12cm - 0.5cm - 6cm - 1 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 29.7cm - 21cm - 2cm - 0.9cm - 1cm - 1cm - 1.27cm - + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!VendorLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + = +Cstr(Fields!DocumentLbl.Value & " " & Fields!No_SalesInvoiceHeader.Value) + Chr(177) + +Cstr(IIf(Fields!CopyNo.Value > 1, Fields!CopyLbl.Value, "")) + Chr(177) + +Cstr(First(Fields!LogoPositiononDocuments_SalesReceivablesSetup.Value, "DataSet_Result")) + Chr(177) + +Cstr(Fields!PageLbl.Value) + + + + + + Pink + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!CustomerLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + + + + + =Code.IsNewPage(0,Fields!No_SalesInvoiceHeader.Value,Fields!CopyNo.Value) + + + + + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr1.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr1.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr2.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr2.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr3.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr3.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr4.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr4.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr5.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr5.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr6.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr6.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!VATRegistrationNo_SalesInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =First(Fields!VATRegistrationNo_CompanyInformation.Value, "DataSet_Result") + + + + + + + VATRegNo_CompanyInfo + 17 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATRegistrationNo_SalesInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATRegistrationNo_SalesInvoiceHeader.Value + + + + + + + VATRegistrationNo_SalesInvoiceHeader + 15 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!RegistrationNo_SalesInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =First(Fields!RegistrationNo_CompanyInformation.Value, "DataSet_Result") + + + + + + + CompanyInfoVATRegNo + 36 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RegistrationNo_SalesInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RegistrationNo_SalesInvoiceHeader.Value + + + + + + + VATRegistrationNo_SalesInvoiceHeader + 34 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!DocFooterText.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.1cm + + + + + true + true + + + + + + + + + + + + Textbox31 + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.1cm + + + + + true + true + + + + + + + + + + + + Textbox16 + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!BankAccountNo_SalesInvoiceHeaderCaption.Value + + + + + + + 24 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BankAccountNo_SalesInvoiceHeader.Value + + + + + + + 38 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DocumentDate_SalesInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DocumentDate_SalesInvoiceHeader.Value + + + + + + + PostingDate_SalesInvoiceHeader + 12 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!IBAN_SalesInvoiceHeaderCaption.Value + + + + + + + 25 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!IBAN_SalesInvoiceHeader.Value + + + + + + + 39 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATDate_SalesInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATDate_SalesInvoiceHeader.Value + + + + + + + 41 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!BIC_SalesInvoiceHeaderCaption.Value + + + + + + + 26 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BIC_SalesInvoiceHeader.Value + + + + + + + 40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DueDate_SalesInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DueDate_SalesInvoiceHeader.Value + + + + + + + DueDate_SalesInvoiceHeader + 43 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!PmntSymbol1.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PmntSymbol2.Value + + + + + + + PmntSymbol2 + 13 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PaymentTermsLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PaymentTerms.Value + + + + + + + 45 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45cm + + + + + true + true + + + + + =Fields!PmntSymbol3.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PmntSymbol4.Value + + + + + + + PmntSymbol4 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PaymentMethodLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PaymentMethod.Value + + + + + + + Textbox17 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.1cm + + + + + true + + + + + + + + + + + + Textbox106 + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.1cm + + + + + true + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.45001cm + + + + + true + true + + + + + + + + + + + + Textbox122 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ReasonCode.Value + + + + + + + ReasonCode + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToLbl.Value + + + + + + + 27 + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!OrderNo_SalesInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!OrderNo_SalesInvoiceHeader.Value + + + + + + + OrderNo_SalesInvoiceHeader + 14 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr1.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!YourReference_SalesInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!YourReference_SalesInvoiceHeader.Value + + + + + + + 47 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr2.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!ShipmentMethodLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipmentMethod.Value + + + + + + + 49 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr3.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!SalespersonLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Name_SalespersonPurchaser.Value + + + + + + + Name_SalespersonPurchaser + 16 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr4.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + + + + + + + + Textbox134 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PhoneNo_SalespersonPurchaser.Value + + + + + + + PhoneNo_SalespersonPurchaser + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr5.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + + + + + + + + Textbox130 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!EMail_SalespersonPurchaser.Value + + + + + + + EMail_SalespersonPurchaser + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr6.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + =Fields!DocFooterText.Value is Nothing + + + + + + + + + + + + + + + + + + + + + DataSet_Result + 0.00003cm + 10.85022cm + 17.99996cm + + + + + + + + + 0.98425in + + + 2.16535in + + + 0.7874in + + + 0.3937in + + + 0.98425in + + + 0.3937in + + + 0.3937in + + + 0.98425in + + + + + 0.17717in + + + + + true + true + + + + + =Fields!No_SalesInvoiceLineCaption.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Description_SalesInvoiceLineCaption.Value + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Quantity_SalesInvoiceLineCaption.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!UoMLbl.Value + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!UnitPrice_SalesInvoiceLineCaption.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DiscPercentLbl.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VAT_SalesInvoiceLineCaption.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LineAmount_SalesInvoiceLineCaption.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17717in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Description_SalesInvoiceLine.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 7 + + + + + + + + + + + + 0.17717in + + + + + true + true + + + + + =IIf(Fields!Type_SalesInvoicetLine.Value = 2, Fields!No_SalesInvoiceLine.Value, "") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Description_SalesInvoiceLine.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Code.BlankZero(Fields!Quantity_SalesInvoiceLine.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!UnitofMeasure_SalesInvoiceLine.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Code.BlankZero(Fields!UnitPrice_SalesInvoiceLine.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Code.BlankZero(Fields!LineDiscount_SalesInvoiceLine.Value) + + + + + + + LineDiscount_SalesInvoiceLine + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIf(Fields!Type_SalesInvoicetLine.Value = 0, "", Fields!VAT_SalesInvoiceLine.Value) + + + + + + + VAT_SalesInvoiceLine + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Code.BlankZero(Fields!LineAmount_SalesInvoiceLine.Value) + + + + + + + Amount_SalesInvoiceLine + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17717in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + =Fields!SubtotalLbl.Value + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + =Sum(Fields!LineAmount_SalesInvoiceLine.Value) + + + + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17717in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + =Fields!InvDiscountAmount_SalesInvoiceLineCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + =-Sum(Fields!InvDiscountAmount_SalesInvoiceLine.Value) + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17717in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + =Fields!Amount_SalesInvoiceHeaderCaption.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_SalesInvoiceHeader.Value + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + =Fields!Amount_SalesInvoiceHeader.Value + + + + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17717in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + =Fields!VATLbl.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_SalesInvoiceHeader.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + =Fields!AmountIncludingVAT_SalesInvoiceHeader.Value - Fields!Amount_SalesInvoiceHeader.Value + + + + + + + Textbox53 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17717in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + =Fields!AmountIncludingVAT_SalesInvoiceHeaderCaption.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_SalesInvoiceHeader.Value + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + =Fields!AmountIncludingVAT_SalesInvoiceHeader.Value + + + + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + + After + true + + + + + + + =iif(Fields!Type_SalesInvoicetLine.Value = 0, false, true) + + + + + =iif(Fields!Type_SalesInvoicetLine.Value = 0, true, false) + + + + + + + =Sum(Fields!InvDiscountAmount_SalesInvoiceLine.Value) = 0 + + Before + + + + =Sum(Fields!InvDiscountAmount_SalesInvoiceLine.Value) = 0 + + Before + + + + =Fields!Amount_SalesInvoiceHeader.Value = Fields!AmountIncludingVAT_SalesInvoiceHeader.Value + + Before + + + + =Fields!Amount_SalesInvoiceHeader.Value = Fields!AmountIncludingVAT_SalesInvoiceHeader.Value + + Before + + + Before + + + + DataSet_Result + + + =Cstr(Fields!LineNo_SalesInvoiceLine.Value) + GreaterThan + + "" + + + + 313.5pt + 0.00003cm + 1.41736in + 7.0866in + 1 + + + + + + + + + 0.98425in + + + 0.59055in + + + 0.98425in + + + 0.98425in + + + 0.98423in + + + 0.88008in + + + + + 0.17717in + + + + + true + true + + + + + =IIf(Fields!CalculatedExchRate.Value <> 1, Fields!ExchRateText.Value, " ") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 6 + + + + + + + + + + + 0.17717in + + + + + true + true + + + + + =Fields!VATIdentLbl.Value + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATPercentLbl.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATBaseLbl.Value & " " & Fields!CurrencyCode_SalesInvoiceHeader.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATAmtLbl.Value & " " & Fields!CurrencyCode_SalesInvoiceHeader.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATBaseLbl.Value & " " & First(Fields!LCYCode_GeneralLedgerSetup.Value, "DataSet_Result") + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATAmtLbl.Value & " " & First(Fields!LCYCode_GeneralLedgerSetup.Value, "DataSet_Result") + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17717in + + + + + true + true + + + + + =Fields!VATAmtLineVATIdentifier.Value + + + + + + + VATAmtLineVATIdentifier + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATAmtLineVATPer.Value + + + + + + + VATAmtLineVATPer + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATBase.Value) + + + + + + + VATAmtLineVATBase + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATAmt.Value) + + + + + + + VATAmtLineVATAmt + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATBaseLCY.Value) + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATAmtLCY.Value) + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17717in + + + + + true + true + + + + + =StrConv(Fields!TotalLbl.Value, VbStrConv.ProperCase) + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATBase.Value) + + + + + + + VATAmtLineVATBase + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATAmt.Value) + + + + + + + VATAmtLineVATAmt + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATBaseLCY.Value) + + + + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATAmtLCY.Value) + + + + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + =Fields!CalculatedExchRate.Value = 1 + + + + + =Fields!CalculatedExchRate.Value = 1 + + + + + + + + + =IIf(Fields!CalculatedExchRate.Value <> 1, False, True) + + + + + + + =Fields!VATAmtLineVATIdentifier.Value + + + + + =Fields!VATAmtLineVATIdentifier.Value + + + + + + + + + + DataSet_Result + + + =Fields!VATAmtLineVATIdentifier.Value + GreaterThan + + "" + + + + 422.8pt + 0.00003cm + 0.70868in + 5.40761in + 2 + + + + + + + + + 2.49999cm + + + 15.49999cm + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!VATClauseIdentifier.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATClauseDescription.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + DataSet_Result + + + =Fields!VATClauseIdentifier.Value + GreaterThan + + "" + + + + 19.09521cm + 0.00012cm + 0.45001cm + 17.99998cm + 3 + + + + + + + + + 6.00001cm + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!CreatorLbl.Value & ": " & Fields!FullName_Employee.Value & IIf(Fields!PhoneNo_Employee.Value is Nothing, "", ", ") & Fields!PhoneNo_Employee.Value & IIf(Fields!CompanyEMail_Employee.Value is Nothing, "", ", ") & Fields!CompanyEMail_Employee.Value + + + + + + Pink + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + DataSet_Result + + + =Fields!FullName_Employee.Value + GreaterThan + + "" + + + + 19.65106cm + 12.00002cm + 0.45001cm + 6.00001cm + 4 + + + + + + + + + 0.07938cm + + + + + 0.42333cm + + + + + true + true + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + 17.72856cm + + + true + true + + + + + =Fields!LineFeeCaptionLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + =Fields!LineFeeCaptionLbl.Value + GreaterThan + + ="" + + + + 20.18658cm + 0.00007cm + 0.42333cm + 17.80794cm + 5 + + + + + + true + true + + + + + =Fields!QRPaymentCode.Value + + + + + + + true + true + + + + + =Fields!QRPaymentLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + + + + + + + + + + + + =Fields!No_SalesInvoiceHeader.Value + =Fields!CopyNo.Value + + + Between + + + + + + DataSet_Result + + + =Fields!No_SalesInvoiceHeader.Value Is Nothing + Equal + + =False + + + + 0.00005cm + 8.13141in + 17.99999cm + + + + + + 20.65378cm + + + 18.00008cm + + + 2.2cm + true + true + + + true + true + + + + + =Code.GetData(4,1) & " " & Code.GetGroupPageNumber(ReportItems!NewPage.Value,Globals!PageNumber) + + + + + + + 0.8cm + 0.00005cm + 0.5cm + 17.99999cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Code.GetData(2,1) + + + + + + + 1.33528cm + 0.00005cm + 0.5cm + 18cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =IIf(Code.SetData(ReportItems!HeaderData.Value,1),Code.GetData(1,1),"") + + + + + + + 0.00005cm + 0.8cm + 18cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + Database + =IIf(Code.GetData(3,1)=1,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") + image/bmp + FitProportional + 0.00005cm + 14mm + 60mm + 3 + + =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) + + + + + + + Database + =IIf(Code.GetData(3,1)=2,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") + image/bmp + FitProportional + 6.00005cm + 14mm + 60mm + 4 + + =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) + + + + + + + Database + =IIf(Code.GetData(3,1)=3,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") + image/bmp + FitProportional + 12.00005cm + 14mm + 60mm + 5 + + =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) + + + + + + + + + + + + 0.67639cm + true + true + + + true + + + + + =ReportItems("FullName_User").Value + + + + + + + true + true + + + + + =First(Fields!HomePage_CompanyInformation.Value, "DataSet_Result") + + + + + + + 0.17639cm + 12cm + 0.5cm + 6cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 2cm + 0.9cm + 1cm + 1cm + 1.27cm + - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!VendorLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - = -Cstr(Fields!DocumentLbl.Value & " " & Fields!No_ServiceInvoiceHeader.Value) + Chr(177) + -Cstr(IIf(Fields!CopyNo.Value > 1, Fields!CopyLbl.Value, "")) + Chr(177) + -Cstr(First(Fields!LogoPositiononDocuments_ServiceMgtSetup.Value, "DataSet_Result")) + Chr(177) + -Cstr(Fields!PageLbl.Value) - - - - - - Pink - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!CustomerLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - - - - - =Code.IsNewPage(0,Fields!No_ServiceInvoiceHeader.Value,Fields!CopyNo.Value) - - - - - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr1.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr1.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr2.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr2.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr3.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr3.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr4.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr4.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr5.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr5.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =First(Fields!CompanyAddr6.Value, "DataSet_Result") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - - - - - =Fields!CustAddr6.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!VATRegistrationNo_ServiceInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =First(Fields!VATRegistrationNo_CompanyInformation.Value, "DataSet_Result") - - - - - - - VATRegNo_CompanyInfo - 17 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATRegistrationNo_ServiceInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATRegistrationNo_ServiceInvoiceHeader.Value - - - - - - - VATRegistrationNo_ServiceInvoiceHeader - 15 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!RegistrationNo_ServiceInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =First(Fields!RegistrationNo_CompanyInformation.Value, "DataSet_Result") - - - - - - - CompanyInfoVATRegNo - 36 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!RegistrationNo_ServiceInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!RegistrationNo_ServiceInvoiceHeader.Value - - - - - - - VATRegistrationNo_ServiceInvoiceHeader - 34 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!DocFooterText.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.1cm - - - - - true - true - - - - - - - - - - - - Textbox31 - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.1cm - - - - - true - true - - - - - - - - - - - - Textbox16 - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!BankAccountNo_ServiceInvoiceHeaderCaption.Value - - - - - - - 24 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!BankAccountNo_ServiceInvoiceHeader.Value - - - - - - - 38 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!DocumentDate_ServiceInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!DocumentDate_ServiceInvoiceHeader.Value - - - - - - - PostingDate_ServiceInvoiceHeader - 12 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!IBAN_ServiceInvoiceHeaderCaption.Value - - - - - - - 25 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!IBAN_ServiceInvoiceHeader.Value - - - - - - - 39 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATDate_ServiceInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATDate_ServiceInvoiceHeader.Value - - - - - - - 41 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!BIC_ServiceInvoiceHeaderCaption.Value - - - - - - - 26 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!BIC_ServiceInvoiceHeader.Value - - - - - - - 40 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!DueDate_ServiceInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!DueDate_ServiceInvoiceHeader.Value - - - - - - - DueDate_ServiceInvoiceHeader - 43 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!PmntSymbol1.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PmntSymbol2.Value - - - - - - - PmntSymbol2 - 13 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PaymentTermsLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PaymentTerms.Value - - - - - - - 45 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.45cm - - - - - true - true - - - - - =Fields!PmntSymbol3.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PmntSymbol4.Value - - - - - - - PmntSymbol4 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PaymentMethodLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PaymentMethod.Value - - - - - - - Textbox17 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.1cm - - - - - true - - - - - - - - - - - - Textbox106 - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.1cm - - - - - true - - - - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - 0.45001cm - - - - - true - true - - - - - - - - - - - - Textbox122 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ReasonCode.Value - - - - - - - ReasonCode - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToLbl.Value - - - - - - - 27 - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!OrderNoLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!OrderNo_ServiceInvoiceHeader.Value - - - - - - - OrderNo_ServiceInvoiceHeader - 14 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr1.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!YourReference_ServiceInvoiceHeaderCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!YourReference_ServiceInvoiceHeader.Value - - - - - - - 47 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr2.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!SalespersonLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Name_SalespersonPurchaser.Value - - - - - - - Name_SalespersonPurchaser - 16 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr3.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!PhoneNo_SalespersonPurchaser.Value - - - - - - - PhoneNo_SalespersonPurchaser - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr4.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - - - - - - - - Textbox134 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!EMail_SalespersonPurchaser.Value - - - - - - - EMail_SalespersonPurchaser - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr5.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - 0.45001cm - - - - - true - true - - - - - - - - - - - - Textbox130 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - - - - - - - - Textbox20 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!ShipToAddr6.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - =Fields!DocFooterText.Value is Nothing - - - - - - - - - - - - - - - - - - - - - DataSet_Result - 0.00002in - 10.85022cm - 17.99996cm - - - - - - - - - 2.49999cm - - - 5.49999cm - - - 2cm - - - 1cm - - - 2.49999cm - - - 1cm - - - 1cm - - - 2.49999cm - - - - - 0.17977in - - - - - true - true - - - - - =Fields!No_ServiceInvoiceLineCaption.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Description_ServiceInvoiceLineCaption.Value - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Quantity_ServiceInvoiceLineCaption.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!UoMLbl.Value - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!UnitPrice_ServiceInvoiceLineCaption.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!DiscPercentLbl.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VAT_ServiceInvoiceLineCaption.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!LineAmount_ServiceInvoiceLineCaption.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17977in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Description_ServiceInvoiceLine.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 7 - - - - - - - - - - - - 0.17977in - - - - - true - true - - - - - =IIf(Fields!Type_ServiceInvoiceLine.Value = 2, Fields!No_ServiceInvoiceLine.Value, "") - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Description_ServiceInvoiceLine.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Code.BlankZero(Fields!Quantity_ServiceInvoiceLine.Value) - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!UnitofMeasure_ServiceInvoiceLine.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Code.BlankZero(Fields!UnitPrice_ServiceInvoiceLine.Value) - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Code.BlankZero(Fields!LineDiscount_ServiceInvoiceLine.Value) - - - - - - - LineDiscount_ServiceInvoiceLine - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =IIf(Fields!Type_ServiceInvoiceLine.Value = 0, "", Fields!VAT_ServiceInvoiceLine.Value) - - - - - - - VAT_ServiceInvoiceLine - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Code.BlankZero(Fields!LineAmount_ServiceInvoiceLine.Value) - - - - - - - Amount_ServiceInvoiceLine - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17977in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 3 - - - - - - - - true - true - - - - - =Fields!SubtotalLbl.Value - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - true - true - - - - - =Sum(Fields!LineAmount_ServiceInvoiceLine.Value) - - - - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17977in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 3 - - - - - - - - true - true - - - - - =Fields!InvDiscountAmount_ServiceInvoiceLineCaption.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - true - true - - - - - =-Sum(Fields!InvDiscountAmount_ServiceInvoiceLine.Value) - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17977in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 3 - - - - - - - - true - true - - - - - =Fields!Amount_ServiceInvoiceLineCaption.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_ServiceInvoiceHeader.Value - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - true - true - - - - - =Sum(Fields!Amount_ServiceInvoiceLine.Value) - - - - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17977in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 3 - - - - - - - - true - true - - - - - =Fields!VATLbl.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_ServiceInvoiceHeader.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - true - true - - - - - =Sum(Fields!AmountIncludingVAT_ServiceInvoiceLine.Value) - Sum(Fields!Amount_ServiceInvoiceLine.Value) - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17977in - - - - - true - true - - - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - 3 - - - - - - - - true - true - - - - - =Fields!AmountIncludingVAT_ServiceInvoiceLineCaption.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_ServiceInvoiceHeader.Value - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 4 - - - - - - - - - true - true - - - - - =Sum(Fields!AmountIncludingVAT_ServiceInvoiceLine.Value) - - - - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - - - - - - - - - - - - - - - - - After - true - - - - - - - =iif(Fields!Type_ServiceInvoiceLine.Value = 0, false, true) - - - - - =iif(Fields!Type_ServiceInvoiceLine.Value = 0, true, false) - - - - - - - =Sum(Fields!InvDiscountAmount_ServiceInvoiceLine.Value) = 0 - - Before - - - - =Sum(Fields!InvDiscountAmount_ServiceInvoiceLine.Value) = 0 - - Before - - - - =Sum(Fields!Amount_ServiceInvoiceLine.Value) = Sum(Fields!AmountIncludingVAT_ServiceInvoiceLine.Value) - - Before - - - - =Sum(Fields!Amount_ServiceInvoiceLine.Value) = Sum(Fields!AmountIncludingVAT_ServiceInvoiceLine.Value) - - Before - - - Before - - - - DataSet_Result - - - =Cstr(Fields!LineNo_ServiceInvoiceLine.Value) - GreaterThan - - "" - - - - 313.5pt - 0.00002in - 1.43816in - 17.99996cm - 1 - - - - - - - - - 0.98425in - - - 0.59054in - - - 0.98425in - - - 0.98425in - - - 0.88008in - - - 0.98425in - - - - - 0.17717in - - - - - true - true - - - - - =IIf(Fields!CalculatedExchRate.Value <> 1, Fields!ExchRateText.Value, " ") - - - - - - 2pt - 2pt - 2pt - 2pt - - - 6 - - - - - - - - - - - 0.17717in - - - - - true - true - - - - - =Fields!VATIdentLbl.Value - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATPercentLbl.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATBaseLbl.Value & " " & Fields!CurrencyCode_ServiceInvoiceHeader.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATAmtLbl.Value & " " & Fields!CurrencyCode_ServiceInvoiceHeader.Value - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATBaseLbl.Value & " " & First(Fields!LCYCode_GeneralLedgerSetup.Value, "DataSet_Result") - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATAmtLbl.Value & " " & First(Fields!LCYCode_GeneralLedgerSetup.Value, "DataSet_Result") - - - - - - - - 0.5pt - - - - - - - - Bottom - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17717in - - - - - true - true - - - - - =Fields!VATAmtLineVATIdentifier.Value - - - - - - - VATAmtLineVATIdentifier - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATAmtLineVATPer.Value - - - - - - - VATAmtLineVATPer - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATBase.Value) - - - - - - - VATAmtLineVATBase - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATAmt.Value) - - - - - - - VATAmtLineVATAmt - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATBaseLCY.Value) - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATAmtLCY.Value) - - - - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.17717in - - - - - true - true - - - - - =StrConv(Fields!TotalLbl.Value, VbStrConv.ProperCase) - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - 2 - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATBase.Value) - - - - - - - VATAmtLineVATBase - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATAmt.Value) - - - - - - - VATAmtLineVATAmt - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATBaseLCY.Value) - - - - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Sum(Fields!VATAmtLineVATAmtLCY.Value) - - - - - - - - 0.5pt - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - - - - - - - - - - =Fields!CalculatedExchRate.Value = 1 - - - - - =Fields!CalculatedExchRate.Value = 1 - - - - - - - - - =IIf(Fields!CalculatedExchRate.Value <> 1, False, True) - - - - - - - =Fields!VATAmtLineVATIdentifier.Value - - - - - =Fields!VATAmtLineVATIdentifier.Value - - - - - - - - - - DataSet_Result - - - =Fields!VATAmtLineVATIdentifier.Value - GreaterThan - - "" - - - - 422.04997pt - 0.00007cm - 0.70868in - 5.40762in - 2 - - - - - - - - - 2.49999cm - - - 15.49999cm - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!VATClauseIdentifier.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!VATClauseDescription.Value & " " & Fields!VATClauseDescription2.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - - - - - - - - - - - - - - - DataSet_Result - - - =Fields!VATClauseIdentifier.Value - GreaterThan - - "" - - - - 19.09944cm - 0.00007in - 0.45001cm - 17.99998cm - 3 - - - - - - - - - 6.00001cm - - - - - 0.45001cm - - - - - true - true - - - - - =Fields!CreatorLbl.Value & ": " & Fields!FullName_Employee.Value & IIf(Fields!PhoneNo_Employee.Value is Nothing, "", ", ") & Fields!PhoneNo_Employee.Value & IIf(Fields!CompanyEMail_Employee.Value is Nothing, "", ", ") & Fields!CompanyEMail_Employee.Value - - - - - - Pink - 2pt - 2pt - 2pt - 2pt - - - - - - - - - - - - - - - - - - - - - DataSet_Result - - - =Fields!FullName_Employee.Value - GreaterThan - - "" - - - - 19.5812cm - 12.00016cm - 0.45001cm - 6.00001cm - 4 - - - - - - - - - 17.99995cm - - - - - 0.45cm - - - - - true - true - - - - - =Fields!LineFeeCaptionLbl.Value - - - - - - - - - - - - - - - - - - - - - - - - DataSet_Result - - - =Fields!LineFeeCaptionLbl.Value - GreaterThan - - ="" - - - - 20.03121cm - 0.00007in - 0.45cm - 17.99995cm - 5 - - - - - - true - - - - - =Fields!QRPaymentCode.Value - - - - - - - true - true - - - - - =Fields!QRPaymentLbl.Value - - - - - - 2pt - 2pt - 2pt - 2pt - - - - true - - - - - - - - - - - - - - - - - - - - - =Fields!No_ServiceInvoiceHeader.Value - =Fields!CopyNo.Value - - - Between - - - - - - DataSet_Result - - - =Fields!No_ServiceInvoiceHeader.Value Is Nothing - Equal - - =False - - - - 0in - 8.09792in - 18.03318cm - - - - - - 20.56871cm - - - 18.03318cm - - - 2.2cm - true - true - - - true - true - - - - - =Code.GetData(4,1) & " " & Code.GetGroupPageNumber(ReportItems!NewPage.Value,Globals!PageNumber) - - - - - - - 0.8cm - 0in - 0.5cm - 18cm - - - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =Code.GetData(2,1) - - - - - - - 1.3cm - 0in - 0.5cm - 18cm - 1 - - - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =IIf(Code.SetData(ReportItems!HeaderData.Value,1),Code.GetData(1,1),"") - - - - - - - 0in - 0.8cm - 18cm - 2 - - - 2pt - 2pt - 2pt - 2pt - - - - Database - =IIf(Code.GetData(3,1)=1,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") - image/bmp - FitProportional - 0in - 14mm - 60mm - 3 - - =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) - - - - - - - Database - =IIf(Code.GetData(3,1)=2,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") - image/bmp - FitProportional - 6cm - 14mm - 60mm - 4 - - =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) - - - - - - - Database - =IIf(Code.GetData(3,1)=3,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") - image/bmp - FitProportional - 12cm - 14mm - 60mm - 5 - - =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) - - - - - - - - - - - - 0.64113cm - true - true - - - true - - - - - =ReportItems("FullName_User").Value - - - - - - - true - true - - - - - =First(Fields!HomePage_CompanyInformation.Value, "DataSet_Result") - - - - - - - 0.14111cm - 11.99996cm - 0.5cm - 6cm - 1 - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 29.7cm - 21cm - 2cm - 0.9cm - 1cm - 1cm - 1.27cm - + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!VendorLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + = +Cstr(Fields!DocumentLbl.Value & " " & Fields!No_ServiceInvoiceHeader.Value) + Chr(177) + +Cstr(IIf(Fields!CopyNo.Value > 1, Fields!CopyLbl.Value, "")) + Chr(177) + +Cstr(First(Fields!LogoPositiononDocuments_ServiceMgtSetup.Value, "DataSet_Result")) + Chr(177) + +Cstr(Fields!PageLbl.Value) + + + + + + Pink + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!CustomerLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + + + + + =Code.IsNewPage(0,Fields!No_ServiceInvoiceHeader.Value,Fields!CopyNo.Value) + + + + + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr1.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr1.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr2.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr2.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr3.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr3.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr4.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr4.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr5.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr5.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =First(Fields!CompanyAddr6.Value, "DataSet_Result") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + + + + + =Fields!CustAddr6.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!VATRegistrationNo_ServiceInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =First(Fields!VATRegistrationNo_CompanyInformation.Value, "DataSet_Result") + + + + + + + VATRegNo_CompanyInfo + 17 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATRegistrationNo_ServiceInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATRegistrationNo_ServiceInvoiceHeader.Value + + + + + + + VATRegistrationNo_ServiceInvoiceHeader + 15 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!RegistrationNo_ServiceInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =First(Fields!RegistrationNo_CompanyInformation.Value, "DataSet_Result") + + + + + + + CompanyInfoVATRegNo + 36 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RegistrationNo_ServiceInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RegistrationNo_ServiceInvoiceHeader.Value + + + + + + + VATRegistrationNo_ServiceInvoiceHeader + 34 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!DocFooterText.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.1cm + + + + + true + true + + + + + + + + + + + + Textbox31 + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.1cm + + + + + true + true + + + + + + + + + + + + Textbox16 + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!BankAccountNo_ServiceInvoiceHeaderCaption.Value + + + + + + + 24 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BankAccountNo_ServiceInvoiceHeader.Value + + + + + + + 38 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DocumentDate_ServiceInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DocumentDate_ServiceInvoiceHeader.Value + + + + + + + PostingDate_ServiceInvoiceHeader + 12 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!IBAN_ServiceInvoiceHeaderCaption.Value + + + + + + + 25 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!IBAN_ServiceInvoiceHeader.Value + + + + + + + 39 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATDate_ServiceInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATDate_ServiceInvoiceHeader.Value + + + + + + + 41 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!BIC_ServiceInvoiceHeaderCaption.Value + + + + + + + 26 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BIC_ServiceInvoiceHeader.Value + + + + + + + 40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DueDate_ServiceInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DueDate_ServiceInvoiceHeader.Value + + + + + + + DueDate_ServiceInvoiceHeader + 43 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!PmntSymbol1.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PmntSymbol2.Value + + + + + + + PmntSymbol2 + 13 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PaymentTermsLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PaymentTerms.Value + + + + + + + 45 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45cm + + + + + true + true + + + + + =Fields!PmntSymbol3.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PmntSymbol4.Value + + + + + + + PmntSymbol4 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PaymentMethodLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PaymentMethod.Value + + + + + + + Textbox17 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.1cm + + + + + true + + + + + + + + + + + + Textbox106 + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.1cm + + + + + true + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + 0.45001cm + + + + + true + true + + + + + + + + + + + + Textbox122 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ReasonCode.Value + + + + + + + ReasonCode + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToLbl.Value + + + + + + + 27 + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!OrderNoLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!OrderNo_ServiceInvoiceHeader.Value + + + + + + + OrderNo_ServiceInvoiceHeader + 14 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr1.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!YourReference_ServiceInvoiceHeaderCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!YourReference_ServiceInvoiceHeader.Value + + + + + + + 47 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr2.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!SalespersonLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Name_SalespersonPurchaser.Value + + + + + + + Name_SalespersonPurchaser + 16 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr3.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PhoneNo_SalespersonPurchaser.Value + + + + + + + PhoneNo_SalespersonPurchaser + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr4.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + + + + + + + + Textbox134 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!EMail_SalespersonPurchaser.Value + + + + + + + EMail_SalespersonPurchaser + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr5.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.45001cm + + + + + true + true + + + + + + + + + + + + Textbox130 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox20 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ShipToAddr6.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + =Fields!DocFooterText.Value is Nothing + + + + + + + + + + + + + + + + + + + + + DataSet_Result + 0.00002in + 10.85022cm + 17.99996cm + + + + + + + + + 2.49999cm + + + 5.49999cm + + + 2cm + + + 1cm + + + 2.49999cm + + + 1cm + + + 1cm + + + 2.49999cm + + + + + 0.17977in + + + + + true + true + + + + + =Fields!No_ServiceInvoiceLineCaption.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Description_ServiceInvoiceLineCaption.Value + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Quantity_ServiceInvoiceLineCaption.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!UoMLbl.Value + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!UnitPrice_ServiceInvoiceLineCaption.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DiscPercentLbl.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VAT_ServiceInvoiceLineCaption.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LineAmount_ServiceInvoiceLineCaption.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17977in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Description_ServiceInvoiceLine.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 7 + + + + + + + + + + + + 0.17977in + + + + + true + true + + + + + =IIf(Fields!Type_ServiceInvoiceLine.Value = 2, Fields!No_ServiceInvoiceLine.Value, "") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Description_ServiceInvoiceLine.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Code.BlankZero(Fields!Quantity_ServiceInvoiceLine.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!UnitofMeasure_ServiceInvoiceLine.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Code.BlankZero(Fields!UnitPrice_ServiceInvoiceLine.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Code.BlankZero(Fields!LineDiscount_ServiceInvoiceLine.Value) + + + + + + + LineDiscount_ServiceInvoiceLine + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIf(Fields!Type_ServiceInvoiceLine.Value = 0, "", Fields!VAT_ServiceInvoiceLine.Value) + + + + + + + VAT_ServiceInvoiceLine + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Code.BlankZero(Fields!LineAmount_ServiceInvoiceLine.Value) + + + + + + + Amount_ServiceInvoiceLine + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17977in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + =Fields!SubtotalLbl.Value + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + =Sum(Fields!LineAmount_ServiceInvoiceLine.Value) + + + + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17977in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + =Fields!InvDiscountAmount_ServiceInvoiceLineCaption.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + =-Sum(Fields!InvDiscountAmount_ServiceInvoiceLine.Value) + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17977in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + =Fields!Amount_ServiceInvoiceLineCaption.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_ServiceInvoiceHeader.Value + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + =Sum(Fields!Amount_ServiceInvoiceLine.Value) + + + + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17977in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + =Fields!VATLbl.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_ServiceInvoiceHeader.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + =Sum(Fields!AmountIncludingVAT_ServiceInvoiceLine.Value) - Sum(Fields!Amount_ServiceInvoiceLine.Value) + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17977in + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + =Fields!AmountIncludingVAT_ServiceInvoiceLineCaption.Value & " " & Fields!TotalLbl.Value & " " & Fields!CurrencyCode_ServiceInvoiceHeader.Value + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + =Sum(Fields!AmountIncludingVAT_ServiceInvoiceLine.Value) + + + + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + + After + true + + + + + + + =iif(Fields!Type_ServiceInvoiceLine.Value = 0, false, true) + + + + + =iif(Fields!Type_ServiceInvoiceLine.Value = 0, true, false) + + + + + + + =Sum(Fields!InvDiscountAmount_ServiceInvoiceLine.Value) = 0 + + Before + + + + =Sum(Fields!InvDiscountAmount_ServiceInvoiceLine.Value) = 0 + + Before + + + + =Sum(Fields!Amount_ServiceInvoiceLine.Value) = Sum(Fields!AmountIncludingVAT_ServiceInvoiceLine.Value) + + Before + + + + =Sum(Fields!Amount_ServiceInvoiceLine.Value) = Sum(Fields!AmountIncludingVAT_ServiceInvoiceLine.Value) + + Before + + + Before + + + + DataSet_Result + + + =Cstr(Fields!LineNo_ServiceInvoiceLine.Value) + GreaterThan + + "" + + + + 313.5pt + 0.00002in + 1.43816in + 17.99996cm + 1 + + + + + + + + + 0.98425in + + + 0.59054in + + + 0.98425in + + + 0.98425in + + + 0.88008in + + + 0.98425in + + + + + 0.17717in + + + + + true + true + + + + + =IIf(Fields!CalculatedExchRate.Value <> 1, Fields!ExchRateText.Value, " ") + + + + + + 2pt + 2pt + 2pt + 2pt + + + 6 + + + + + + + + + + + 0.17717in + + + + + true + true + + + + + =Fields!VATIdentLbl.Value + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATPercentLbl.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATBaseLbl.Value & " " & Fields!CurrencyCode_ServiceInvoiceHeader.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATAmtLbl.Value & " " & Fields!CurrencyCode_ServiceInvoiceHeader.Value + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATBaseLbl.Value & " " & First(Fields!LCYCode_GeneralLedgerSetup.Value, "DataSet_Result") + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATAmtLbl.Value & " " & First(Fields!LCYCode_GeneralLedgerSetup.Value, "DataSet_Result") + + + + + + + + 0.5pt + + + + + + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17717in + + + + + true + true + + + + + =Fields!VATAmtLineVATIdentifier.Value + + + + + + + VATAmtLineVATIdentifier + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATAmtLineVATPer.Value + + + + + + + VATAmtLineVATPer + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATBase.Value) + + + + + + + VATAmtLineVATBase + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATAmt.Value) + + + + + + + VATAmtLineVATAmt + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATBaseLCY.Value) + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATAmtLCY.Value) + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.17717in + + + + + true + true + + + + + =StrConv(Fields!TotalLbl.Value, VbStrConv.ProperCase) + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATBase.Value) + + + + + + + VATAmtLineVATBase + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATAmt.Value) + + + + + + + VATAmtLineVATAmt + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATBaseLCY.Value) + + + + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!VATAmtLineVATAmtLCY.Value) + + + + + + + + 0.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + =Fields!CalculatedExchRate.Value = 1 + + + + + =Fields!CalculatedExchRate.Value = 1 + + + + + + + + + =IIf(Fields!CalculatedExchRate.Value <> 1, False, True) + + + + + + + =Fields!VATAmtLineVATIdentifier.Value + + + + + =Fields!VATAmtLineVATIdentifier.Value + + + + + + + + + + DataSet_Result + + + =Fields!VATAmtLineVATIdentifier.Value + GreaterThan + + "" + + + + 422.04997pt + 0.00007cm + 0.70868in + 5.40762in + 2 + + + + + + + + + 2.49999cm + + + 15.49999cm + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!VATClauseIdentifier.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VATClauseDescription.Value & " " & Fields!VATClauseDescription2.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + DataSet_Result + + + =Fields!VATClauseIdentifier.Value + GreaterThan + + "" + + + + 19.09944cm + 0.00007in + 0.45001cm + 17.99998cm + 3 + + + + + + + + + 6.00001cm + + + + + 0.45001cm + + + + + true + true + + + + + =Fields!CreatorLbl.Value & ": " & Fields!FullName_Employee.Value & IIf(Fields!PhoneNo_Employee.Value is Nothing, "", ", ") & Fields!PhoneNo_Employee.Value & IIf(Fields!CompanyEMail_Employee.Value is Nothing, "", ", ") & Fields!CompanyEMail_Employee.Value + + + + + + Pink + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + DataSet_Result + + + =Fields!FullName_Employee.Value + GreaterThan + + "" + + + + 19.5812cm + 12.00016cm + 0.45001cm + 6.00001cm + 4 + + + + + + + + + 17.99995cm + + + + + 0.45cm + + + + + true + true + + + + + =Fields!LineFeeCaptionLbl.Value + + + + + + + + + + + + + + + + + + + + + + + + DataSet_Result + + + =Fields!LineFeeCaptionLbl.Value + GreaterThan + + ="" + + + + 20.03121cm + 0.00007in + 0.45cm + 17.99995cm + 5 + + + + + + true + true + + + + + =Fields!QRPaymentCode.Value + + + + + + + true + true + + + + + =Fields!QRPaymentLbl.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + + + + + + + + + + + + =Fields!No_ServiceInvoiceHeader.Value + =Fields!CopyNo.Value + + + Between + + + + + + DataSet_Result + + + =Fields!No_ServiceInvoiceHeader.Value Is Nothing + Equal + + =False + + + + 8.09792in + 18.03318cm + + + + + + 20.56872cm + + + 18.03318cm + + + 2.2cm + true + true + + + true + true + + + + + =Code.GetData(4,1) & " " & Code.GetGroupPageNumber(ReportItems!NewPage.Value,Globals!PageNumber) + + + + + + + 0.8cm + 0.5cm + 18cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Code.GetData(2,1) + + + + + + + 1.3cm + 0.5cm + 18cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =IIf(Code.SetData(ReportItems!HeaderData.Value,1),Code.GetData(1,1),"") + + + + + + + 0.8cm + 18cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + Database + =IIf(Code.GetData(3,1)=1,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") + image/bmp + FitProportional + 14mm + 60mm + 3 + + =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) + + + + + + + Database + =IIf(Code.GetData(3,1)=2,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") + image/bmp + FitProportional + 6cm + 14mm + 60mm + 4 + + =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) + + + + + + + Database + =IIf(Code.GetData(3,1)=3,First(Fields!Picture_CompanyInformation.Value, "DataSet_Result"),"") + image/bmp + FitProportional + 12cm + 14mm + 60mm + 5 + + =IsNothing(First(Fields!Picture_CompanyInformation.Value, "DataSet_Result")) + + + + + + + + + + + + 0.64113cm + true + true + + + true + + + + + =ReportItems("FullName_User").Value + + + + + + + true + true + + + + + =First(Fields!HomePage_CompanyInformation.Value, "DataSet_Result") + + + + + + + 0.14111cm + 11.99996cm + 0.5cm + 6cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 2cm + 0.9cm + 1cm + 1cm + 1.27cm +