mirror of
https://github.com/IRPTeam/IRP.git
synced 2026-04-24 03:53:25 +02:00
57d78e7632
* #IRP-767 * #IRP-767 * #IRP-767 * #IRP-767 * #IRP-767 * #IRP-767 * #IRP-767 * #IRP-767 * #IRP-767 * #IRP-767 Update aging feature tests for multi-currency support * Update _1001CustomersAging.feature * #IRP-767 * fix test * features update * #IRP-767 * fix test * #IRP-767 * #IRP-767 * #IRP-767 * #IRP-777 * #IRP-777 * #IRP-777 * #IRP-777 * #IRP-777 * #IRP-777 * #IRP-777 * #IRP-777 * #IRP-777 * fix features * features refact * fix features * #IRP-777 * features refact * #IRP-777 * features update --------- Co-authored-by: Andrey Vorobyov <andrey.vorobyov@mail.com> Co-authored-by: Natalia Trukhachova <66120736+Severnity@users.noreply.github.com>
612 lines
57 KiB
Gherkin
612 lines
57 KiB
Gherkin
#language: en
|
|
@tree
|
|
@Positive
|
|
@Movements2
|
|
@MovementsCreditNote
|
|
|
|
Feature: check Credit note movements
|
|
|
|
|
|
Variables:
|
|
import "Variables.feature"
|
|
|
|
Background:
|
|
Given I launch TestClient opening script or connect the existing one
|
|
|
|
|
|
|
|
Scenario: _043100 preparation (Credit note)
|
|
When set True value to the constant
|
|
* Load info
|
|
When Create information register Barcodes records
|
|
When Create catalog Companies objects (own Second company)
|
|
When Create catalog Agreements objects
|
|
When Create catalog ObjectStatuses objects
|
|
When Create catalog ItemKeys objects
|
|
When Create catalog ItemTypes objects
|
|
When Create catalog Units objects
|
|
When Create catalog Items objects
|
|
When Create catalog PriceTypes objects
|
|
When Create catalog Specifications objects
|
|
When Create chart of characteristic types AddAttributeAndProperty objects
|
|
When Create catalog AddAttributeAndPropertySets objects
|
|
When Create catalog AddAttributeAndPropertyValues objects
|
|
When Create catalog Currencies objects
|
|
When Create catalog Companies objects (Main company)
|
|
When Create catalog Countries objects
|
|
When Create catalog Stores objects
|
|
When Create catalog Partners objects
|
|
When Create catalog Companies objects (partners company)
|
|
When Create information register PartnerSegments records
|
|
When Create catalog PartnerSegments objects
|
|
When Create chart of characteristic types CurrencyMovementType objects
|
|
When Create catalog TaxRates objects
|
|
When Create catalog Taxes objects
|
|
When Create catalog Taxes objects (for debit and credit note)
|
|
When Create information register TaxSettings records
|
|
When Create information register PricesByItemKeys records
|
|
When Create catalog IntegrationSettings objects
|
|
When Create information register CurrencyRates records
|
|
When Create catalog BusinessUnits objects
|
|
When Create catalog LegalNameContracts objects
|
|
When Create catalog ExpenseAndRevenueTypes objects
|
|
When Create OtherPartners objects
|
|
When Create catalog Companies objects (second company Ferron BP)
|
|
When Create catalog PartnersBankAccounts objects
|
|
When Create catalog SerialLotNumbers objects
|
|
When Create catalog CashAccounts objects
|
|
When Create information register Taxes records (VAT)
|
|
When Create Document discount
|
|
* Add plugin for discount
|
|
Given I open hyperlink "e1cib/list/Catalog.ExternalDataProc"
|
|
If "List" table does not contain lines Then
|
|
| "Description" |
|
|
| "DocumentDiscount" |
|
|
When add Plugin for document discount
|
|
When Create catalog CancelReturnReasons objects
|
|
* Load documents
|
|
* Load documents
|
|
Given I open hyperlink "e1cib/list/Document.SalesOrder"
|
|
If "List" table does not contain lines Then
|
|
| 'Number' |
|
|
| '1' |
|
|
| '3' |
|
|
When Create document SalesOrder objects (check movements, SC before SI, Use shipment sheduling)
|
|
When Create document SalesOrder objects (check movements, SI before SC, not Use shipment sheduling)
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.SalesOrder.FindByNumber(1).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.SalesOrder.FindByNumber(1).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.SalesOrder.FindByNumber(3).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.SalesOrder.FindByNumber(3).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I close all client application windows
|
|
Given I open hyperlink "e1cib/list/Document.ShipmentConfirmation"
|
|
If "List" table does not contain lines Then
|
|
| 'Number' |
|
|
| '2' |
|
|
| '3' |
|
|
When Create document ShipmentConfirmation objects (check movements)
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.ShipmentConfirmation.FindByNumber(1).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.ShipmentConfirmation.FindByNumber(3).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
Given I open hyperlink "e1cib/list/Document.SalesInvoice"
|
|
If "List" table does not contain lines Then
|
|
| 'Number' |
|
|
| '1' |
|
|
| '3' |
|
|
When Create document SalesInvoice objects (check movements)
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.SalesInvoice.FindByNumber(1).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.SalesInvoice.FindByNumber(1).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.SalesInvoice.FindByNumber(3).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.SalesInvoice.FindByNumber(3).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
Given I open hyperlink "e1cib/list/Document.SalesReturnOrder"
|
|
If "List" table does not contain lines Then
|
|
| 'Number' |
|
|
| '102' |
|
|
When Create document SalesReturnOrder objects (check movements)
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.SalesReturnOrder.FindByNumber(102).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.SalesReturnOrder.FindByNumber(102).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I close all client application windows
|
|
Given I open hyperlink "e1cib/list/Document.SalesReturn"
|
|
If "List" table does not contain lines Then
|
|
| 'Number' |
|
|
| '101' |
|
|
| '104' |
|
|
When Create document SalesReturn objects (check movements)
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.SalesReturn.FindByNumber(101).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.SalesReturn.FindByNumber(101).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.SalesReturn.FindByNumber(104).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.SalesReturn.FindByNumber(104).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
Given I open hyperlink "e1cib/list/Document.PurchaseOrder"
|
|
If "List" table does not contain lines Then
|
|
| 'Number' |
|
|
| '115' |
|
|
When Create document PurchaseOrder objects (check movements, GR before PI, Use receipt sheduling)
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.PurchaseOrder.FindByNumber(115).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.PurchaseOrder.FindByNumber(115).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
Given I open hyperlink "e1cib/list/Document.PurchaseInvoice"
|
|
If "List" table does not contain lines Then
|
|
| 'Number' |
|
|
| '115' |
|
|
| '116' |
|
|
When Create document PurchaseInvoice objects (check movements)
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.PurchaseInvoice.FindByNumber(115).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.PurchaseInvoice.FindByNumber(115).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.PurchaseInvoice.FindByNumber(116).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.PurchaseInvoice.FindByNumber(116).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
Given I open hyperlink "e1cib/list/Document.GoodsReceipt"
|
|
If "List" table does not contain lines Then
|
|
| 'Number' |
|
|
| '115' |
|
|
| '116' |
|
|
When Create document GoodsReceipt objects (check movements)
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.GoodsReceipt.FindByNumber(115).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.GoodsReceipt.FindByNumber(115).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.GoodsReceipt.FindByNumber(116).GetObject().Write(DocumentWriteMode.Write);" |
|
|
| "Documents.GoodsReceipt.FindByNumber(116).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
When Create document CreditNote objects (check movements)
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.CreditNote.FindByNumber(1).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.CreditNote.FindByNumber(2).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.CreditNote.FindByNumber(4).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.CreditNote.FindByNumber(5).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
When create CreditNote (OtherPartnersTransactions)
|
|
And I execute 1C:Enterprise script at server
|
|
| "Documents.CreditNote.FindByNumber(3).GetObject().Write(DocumentWriteMode.Posting);" |
|
|
And I close all client application windows
|
|
|
|
Scenario: _0431001 check preparation
|
|
When check preparation
|
|
|
|
Scenario: _043101 check Credit note movements by the Register "R5010 Reconciliation statement"
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '1' |
|
|
* Check movements by the Register "R5010 Reconciliation statement"
|
|
And I click "Registrations report" button
|
|
And I select "R5010 Reconciliation statement" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 1 dated 05.04.2021 09:30:47' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Document registrations records' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R5010 Reconciliation statement"' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Record type' | 'Period' | 'Resources' | 'Dimensions' | '' | '' | '' | '' |
|
|
| '' | '' | '' | 'Amount' | 'Company' | 'Branch' | 'Currency' | 'Legal name' | 'Legal name contract' |
|
|
| '' | 'Expense' | '05.04.2021 09:30:47' | '500' | 'Main Company' | 'Front office' | 'TRY' | 'Company Ferron BP' | 'Contract Ferron BP New' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043102 check Credit note movements by the Register "R2021 Customer transactions" (with customer without basis)
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '2' |
|
|
* Check movements by the Register "R2021 Customer transactions"
|
|
And I click "Registrations report" button
|
|
And I select "R2021 Customer transactions" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 2 dated 05.04.2021 09:30:58' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Document registrations records' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R2021 Customer transactions"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Record type' | 'Period' | 'Resources' | 'Dimensions' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | 'Attributes' | '' |
|
|
| '' | '' | '' | 'Amount' | 'Company' | 'Branch' | 'Multi currency movement type' | 'Currency' | 'Transaction currency' | 'Legal name' | 'Partner' | 'Agreement' | 'Basis' | 'Order' | 'Project' | 'Deferred calculation' | 'Customers advances closing' |
|
|
| '' | 'Receipt' | '05.04.2021 09:30:58' | '-700' | 'Main Company' | 'Front office' | 'Local currency' | 'TRY' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Basic Partner terms, TRY' | 'Credit note 2 dated 05.04.2021 09:30:58' | '' | '' | 'No' | '' |
|
|
| '' | 'Receipt' | '05.04.2021 09:30:58' | '-700' | 'Main Company' | 'Front office' | 'en description is empty' | 'TRY' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Basic Partner terms, TRY' | 'Credit note 2 dated 05.04.2021 09:30:58' | '' | '' | 'No' | '' |
|
|
| '' | 'Receipt' | '05.04.2021 09:30:58' | '-119,84' | 'Main Company' | 'Front office' | 'Reporting currency' | 'USD' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Basic Partner terms, TRY' | 'Credit note 2 dated 05.04.2021 09:30:58' | '' | '' | 'No' | '' |
|
|
And I close all client application windows
|
|
|
|
|
|
|
|
Scenario: _043103 check absence Credit note movements by the Register "R1021 Vendors transactions" (with customer)
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '2' |
|
|
* Check movements by the Register "R1021 Vendors transactions"
|
|
And I click "Registrations report" button
|
|
And I select "R1021 Vendors transactions" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document does not contain values
|
|
| 'Register "R1021 Vendors transactions' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043104 check Credit note movements by the Register "R1021 Vendors transactions" (with vendor without basis)
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '1' |
|
|
* Check movements by the Register "R1021 Vendors transactions"
|
|
And I click "Registrations report" button
|
|
And I select "R1021 Vendors transactions" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 1 dated 05.04.2021 09:30:47' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Document registrations records' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R1021 Vendors transactions"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Record type' | 'Period' | 'Resources' | 'Dimensions' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | 'Attributes' | '' |
|
|
| '' | '' | '' | 'Amount' | 'Company' | 'Branch' | 'Multi currency movement type' | 'Currency' | 'Transaction currency' | 'Legal name' | 'Partner' | 'Agreement' | 'Basis' | 'Order' | 'Project' | 'Deferred calculation' | 'Vendors advances closing' |
|
|
| '' | 'Receipt' | '05.04.2021 09:30:47' | '85,6' | 'Main Company' | 'Front office' | 'Reporting currency' | 'USD' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Vendor Ferron, TRY' | 'Credit note 1 dated 05.04.2021 09:30:47' | '' | '' | 'No' | '' |
|
|
| '' | 'Receipt' | '05.04.2021 09:30:47' | '500' | 'Main Company' | 'Front office' | 'Local currency' | 'TRY' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Vendor Ferron, TRY' | 'Credit note 1 dated 05.04.2021 09:30:47' | '' | '' | 'No' | '' |
|
|
| '' | 'Receipt' | '05.04.2021 09:30:47' | '500' | 'Main Company' | 'Front office' | 'en description is empty' | 'TRY' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Vendor Ferron, TRY' | 'Credit note 1 dated 05.04.2021 09:30:47' | '' | '' | 'No' | '' |
|
|
And I close all client application windows
|
|
|
|
|
|
Scenario: _043105 check absence Credit note movements by the Register "R2021 Customer transactions" (with vendor)
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '1' |
|
|
* Check movements by the Register "R2021 Customer transactions"
|
|
And I click "Registrations report" button
|
|
And I select "R2021 Customer transactions" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document does not contain values
|
|
| 'Register "R2021 Customer transactions' |
|
|
And I close all client application windows
|
|
|
|
|
|
Scenario: _043106 check Credit note movements by the Register "R5022 Expenses" (with vendor)
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '1' |
|
|
* Check movements by the Register "R5022 Expenses"
|
|
And I click "Registrations report" button
|
|
And I select "R5022 Expenses" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 1 dated 05.04.2021 09:30:47' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Document registrations records' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R5022 Expenses"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Period' | 'Resources' | '' | '' | 'Dimensions' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | 'Attributes' |
|
|
| '' | '' | 'Amount' | 'Amount with taxes' | 'Amount cost' | 'Company' | 'Branch' | 'Profit loss center' | 'Expense type' | 'Item key' | 'Fixed asset' | 'Ledger type' | 'Currency' | 'Additional analytic' | 'Multi currency movement type' | 'Project' | 'Calculation movement cost' |
|
|
| '' | '05.04.2021 09:30:47' | '72,54' | '85,6' | '' | 'Main Company' | 'Front office' | 'Distribution department' | 'Software' | '' | '' | '' | 'USD' | '' | 'Reporting currency' | '' | '' |
|
|
| '' | '05.04.2021 09:30:47' | '423,73' | '500' | '' | 'Main Company' | 'Front office' | 'Distribution department' | 'Software' | '' | '' | '' | 'TRY' | '' | 'Local currency' | '' | '' |
|
|
| '' | '05.04.2021 09:30:47' | '423,73' | '500' | '' | 'Main Company' | 'Front office' | 'Distribution department' | 'Software' | '' | '' | '' | 'TRY' | '' | 'en description is empty' | '' | '' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043107 check Credit note movements by the Register "R5022 Expenses" (with customer)
|
|
And I close all client application windows
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '2' |
|
|
* Check movements by the Register "R5022 Expenses"
|
|
And I click "Registrations report" button
|
|
And I select "R5022 Expenses" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 2 dated 05.04.2021 09:30:58' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Document registrations records' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R5022 Expenses"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Period' | 'Resources' | '' | '' | 'Dimensions' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | 'Attributes' |
|
|
| '' | '' | 'Amount' | 'Amount with taxes' | 'Amount cost' | 'Company' | 'Branch' | 'Profit loss center' | 'Expense type' | 'Item key' | 'Fixed asset' | 'Ledger type' | 'Currency' | 'Additional analytic' | 'Multi currency movement type' | 'Project' | 'Calculation movement cost' |
|
|
| '' | '05.04.2021 09:30:58' | '101,56' | '119,84' | '' | 'Main Company' | 'Front office' | 'Distribution department' | 'Software' | '' | '' | '' | 'USD' | '' | 'Reporting currency' | '' | '' |
|
|
| '' | '05.04.2021 09:30:58' | '593,22' | '700' | '' | 'Main Company' | 'Front office' | 'Distribution department' | 'Software' | '' | '' | '' | 'TRY' | '' | 'Local currency' | '' | '' |
|
|
| '' | '05.04.2021 09:30:58' | '593,22' | '700' | '' | 'Main Company' | 'Front office' | 'Distribution department' | 'Software' | '' | '' | '' | 'TRY' | '' | 'en description is empty' | '' | '' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043108 check Credit note movements by the Register "R5022 Expenses" (OtherPartnersTransactions)
|
|
And I close all client application windows
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '3' |
|
|
* Check movements by the Register "R5022 Expenses"
|
|
And I click "Registrations report" button
|
|
And I select "R5022 Expenses" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 3 dated 12.06.2023 14:56:54' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Document registrations records' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R5022 Expenses"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Period' | 'Resources' | '' | '' | 'Dimensions' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | 'Attributes' |
|
|
| '' | '' | 'Amount' | 'Amount with taxes' | 'Amount cost' | 'Company' | 'Branch' | 'Profit loss center' | 'Expense type' | 'Item key' | 'Fixed asset' | 'Ledger type' | 'Currency' | 'Additional analytic' | 'Multi currency movement type' | 'Project' | 'Calculation movement cost' |
|
|
| '' | '12.06.2023 14:56:54' | '17,12' | '17,12' | '' | 'Main Company' | 'Front office' | 'Distribution department' | 'Expense' | '' | '' | '' | 'USD' | '' | 'Reporting currency' | '' | '' |
|
|
| '' | '12.06.2023 14:56:54' | '100' | '100' | '' | 'Main Company' | 'Front office' | 'Distribution department' | 'Expense' | '' | '' | '' | 'TRY' | '' | 'Local currency' | '' | '' |
|
|
| '' | '12.06.2023 14:56:54' | '100' | '100' | '' | 'Main Company' | 'Front office' | 'Distribution department' | 'Expense' | '' | '' | '' | 'TRY' | '' | 'en description is empty' | '' | '' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043109 check Credit note movements by the Register "R5015 Other partners transactions" (OtherPartnersTransactions)
|
|
And I close all client application windows
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '3' |
|
|
* Check movements by the Register "R5015 Other partners transactions"
|
|
And I click "Registrations report" button
|
|
And I select "R5015 Other partners transactions" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 3 dated 12.06.2023 14:56:54' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Document registrations records' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R5015 Other partners transactions"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Record type' | 'Period' | 'Resources' | 'Dimensions' | '' | '' | '' | '' | '' | '' | '' | '' | 'Attributes' |
|
|
| '' | '' | '' | 'Amount' | 'Company' | 'Branch' | 'Multi currency movement type' | 'Currency' | 'Transaction currency' | 'Legal name' | 'Partner' | 'Agreement' | 'Basis' | 'Deferred calculation' |
|
|
| '' | 'Expense' | '12.06.2023 14:56:54' | '17,12' | 'Main Company' | 'Front office' | 'Reporting currency' | 'USD' | 'TRY' | 'Other partner 2' | 'Other partner 2' | 'Other partner 2' | '' | 'No' |
|
|
| '' | 'Expense' | '12.06.2023 14:56:54' | '100' | 'Main Company' | 'Front office' | 'Local currency' | 'TRY' | 'TRY' | 'Other partner 2' | 'Other partner 2' | 'Other partner 2' | '' | 'No' |
|
|
| '' | 'Expense' | '12.06.2023 14:56:54' | '100' | 'Main Company' | 'Front office' | 'en description is empty' | 'TRY' | 'TRY' | 'Other partner 2' | 'Other partner 2' | 'Other partner 2' | '' | 'No' |
|
|
And I close all client application windows
|
|
|
|
|
|
Scenario: _043110 check Credit note movements by the Register "R5010 Reconciliation statement" (OtherPartnersTransactions)
|
|
And I close all client application windows
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '3' |
|
|
* Check movements by the Register "R5010 Reconciliation statement"
|
|
And I click "Registrations report info" button
|
|
And I select "R5010 Reconciliation statement" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 3 dated 12.06.2023 14:56:54' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R5010 Reconciliation statement"' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Period' | 'RecordType' | 'Company' | 'Branch' | 'Currency' | 'Legal name' | 'Legal name contract' | 'Amount' |
|
|
| '' | '12.06.2023 14:56:54' | 'Expense' | 'Main Company' | 'Front office' | 'TRY' | 'Other partner 2' | '' | '100' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043111 check Credit note movements by the Register "R2021 Customer transactions" (with customer with basis)
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '5' |
|
|
* Check movements by the Register "R2021 Customer transactions"
|
|
And I click "Registrations report info" button
|
|
And I select "R2021 Customer transactions" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 5 dated 16.04.2024 14:30:45' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R2021 Customer transactions"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Period' | 'RecordType' | 'Company' | 'Branch' | 'Multi currency movement type' | 'Currency' | 'Transaction currency' | 'Legal name' | 'Partner' | 'Agreement' | 'Basis' | 'Order' | 'Project' | 'Amount' | 'Deferred calculation' | 'Customers advances closing' |
|
|
| '' | '16.04.2024 14:30:45' | 'Receipt' | 'Main Company' | 'Distribution department' | 'Local currency' | 'TRY' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Basic Partner terms, TRY' | 'Sales invoice 3 dated 28.01.2021 18:50:57' | '' | '' | '-23' | 'No' | '' |
|
|
| '' | '16.04.2024 14:30:45' | 'Receipt' | 'Main Company' | 'Distribution department' | 'Reporting currency' | 'USD' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Basic Partner terms, TRY' | 'Sales invoice 3 dated 28.01.2021 18:50:57' | '' | '' | '-3,94' | 'No' | '' |
|
|
| '' | '16.04.2024 14:30:45' | 'Receipt' | 'Main Company' | 'Distribution department' | 'en description is empty' | 'TRY' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Basic Partner terms, TRY' | 'Sales invoice 3 dated 28.01.2021 18:50:57' | '' | '' | '-23' | 'No' | '' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043112 check Credit note movements by the Register "R1021 Vendors transactions" (with customer with basis)
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '4' |
|
|
* Check movements by the Register "R1021 Vendors transactions"
|
|
And I click "Registrations report info" button
|
|
And I select "R1021 Vendors transactions" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 4 dated 16.04.2024 14:30:17' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R1021 Vendors transactions"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Period' | 'RecordType' | 'Company' | 'Branch' | 'Multi currency movement type' | 'Currency' | 'Transaction currency' | 'Legal name' | 'Partner' | 'Agreement' | 'Basis' | 'Order' | 'Project' | 'Amount' | 'Deferred calculation' | 'Vendors advances closing' |
|
|
| '' | '16.04.2024 14:30:17' | 'Receipt' | 'Main Company' | 'Front office' | 'Local currency' | 'TRY' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Vendor Ferron, TRY' | 'Purchase invoice 115 dated 12.02.2021 15:13:56' | '' | '' | '120' | 'No' | '' |
|
|
| '' | '16.04.2024 14:30:17' | 'Receipt' | 'Main Company' | 'Front office' | 'Reporting currency' | 'USD' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Vendor Ferron, TRY' | 'Purchase invoice 115 dated 12.02.2021 15:13:56' | '' | '' | '20,54' | 'No' | '' |
|
|
| '' | '16.04.2024 14:30:17' | 'Receipt' | 'Main Company' | 'Front office' | 'en description is empty' | 'TRY' | 'TRY' | 'Company Ferron BP' | 'Ferron BP' | 'Vendor Ferron, TRY' | 'Purchase invoice 115 dated 12.02.2021 15:13:56' | '' | '' | '120' | 'No' | '' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043113 check Credit note movements by the Register "R5020 Partners balance" (OtherPartners)
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '3' |
|
|
* Check movements by the Register "R5020 Partners balance"
|
|
And I click "Registrations report info" button
|
|
And I select "R5020 Partners balance" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 3 dated 12.06.2023 14:56:54' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R5020 Partners balance"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Period' | 'RecordType' | 'Company' | 'Branch' | 'Partner' | 'Legal name' | 'Agreement' | 'Document' | 'Currency' | 'Multi currency movement type' | 'Transaction currency' | 'Amount' | 'Customer transaction' | 'Customer advance' | 'Vendor transaction' | 'Vendor advance' | 'Other transaction' | 'Advances closing' |
|
|
| '' | '12.06.2023 14:56:54' | 'Expense' | 'Main Company' | 'Front office' | 'Other partner 2' | 'Other partner 2' | 'Other partner 2' | '' | 'TRY' | 'Local currency' | 'TRY' | '100' | '' | '' | '' | '' | '100' | '' |
|
|
| '' | '12.06.2023 14:56:54' | 'Expense' | 'Main Company' | 'Front office' | 'Other partner 2' | 'Other partner 2' | 'Other partner 2' | '' | 'TRY' | 'en description is empty' | 'TRY' | '100' | '' | '' | '' | '' | '100' | '' |
|
|
| '' | '12.06.2023 14:56:54' | 'Expense' | 'Main Company' | 'Front office' | 'Other partner 2' | 'Other partner 2' | 'Other partner 2' | '' | 'USD' | 'Reporting currency' | 'TRY' | '17,12' | '' | '' | '' | '' | '17,12' | '' |
|
|
And I close all client application windows
|
|
|
|
|
|
Scenario: _043014 check Credit note movements by the Register "T2015 Transactions info" (with vendor)
|
|
And I close all client application windows
|
|
* Select CN
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number'|
|
|
| '1' |
|
|
* Check movements by the Register "T2015 Transactions info"
|
|
And I click "Registrations report info" button
|
|
And I select "T2015 Transactions info" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 1 dated 05.04.2021 09:30:47' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "T2015 Transactions info"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Company' | 'Branch' | 'Order' | 'Date' | 'Key' | 'Currency' | 'Partner' | 'Legal name' | 'Agreement' | 'Is vendor transaction' | 'Is customer transaction' | 'Transaction basis' | 'Unique ID' | 'Project' | 'Currency movement type' | 'Transaction currency' | 'Amount' | 'Is due' | 'Is paid' |
|
|
| '' | 'Main Company' | 'Front office' | '' | '05.04.2021 09:30:47' | '*' | 'TRY' | 'Ferron BP' | 'Company Ferron BP' | 'Vendor Ferron, TRY' | 'Yes' | 'No' | 'Credit note 1 dated 05.04.2021 09:30:47' | '*' | '' | 'en description is empty' | 'TRY' | '500' | 'Yes' | 'No' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043015 check absence Credit note movements by the Register "T2014 Advances info" (with vendor)
|
|
* Select CN
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '1' |
|
|
* Check movements by the Register "T2014 Advances info"
|
|
And I click "Registrations report info" button
|
|
And I select "T2014 Advances info" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
And "ResultTable" spreadsheet document does not contain values
|
|
| 'Register "T2014 Advances info"' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043016 check Credit note movements by the Register "T2015 Transactions info" (with customer)
|
|
And I close all client application windows
|
|
* Select CN
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number'|
|
|
| '2' |
|
|
* Check movements by the Register "T2015 Transactions info"
|
|
And I click "Registrations report info" button
|
|
And I select "T2015 Transactions info" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 2 dated 05.04.2021 09:30:58' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "T2015 Transactions info"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Company' | 'Branch' | 'Order' | 'Date' | 'Key' | 'Currency' | 'Partner' | 'Legal name' | 'Agreement' | 'Is vendor transaction' | 'Is customer transaction' | 'Transaction basis' | 'Unique ID' | 'Project' | 'Currency movement type' | 'Transaction currency' | 'Amount' | 'Is due' | 'Is paid' |
|
|
| '' | 'Main Company' | 'Front office' | '' | '05.04.2021 09:30:58' | '*' | 'TRY' | 'Ferron BP' | 'Company Ferron BP' | 'Basic Partner terms, TRY' | 'No' | 'Yes' | 'Credit note 2 dated 05.04.2021 09:30:58' | '*' | '' | 'en description is empty' | 'TRY' | '-700' | 'Yes' | 'No' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043017 check absence Credit note movements by the Register "T2014 Advances info" (Return to customer, with customer)
|
|
* Select CN
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '2' |
|
|
* Check movements by the Register "T2014 Advances info"
|
|
And I click "Registrations report info" button
|
|
And I select "T2014 Advances info" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
And "ResultTable" spreadsheet document does not contain values
|
|
| 'Register "T2014 Advances info"' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043018 check Credit note movements by the Register "R1040 Taxes outgoing" (with customer)
|
|
And I close all client application windows
|
|
* Select CN
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number'|
|
|
| '2' |
|
|
* Check movements by the Register "R1040 Taxes outgoing"
|
|
And I click "Registrations report info" button
|
|
And I select "R1040 Taxes outgoing" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 2 dated 05.04.2021 09:30:58' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R1040 Taxes outgoing"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Period' | 'RecordType' | 'Company' | 'Branch' | 'Tax' | 'Tax rate' | 'Invoice type' | 'Multi currency movement type' | 'Currency' | 'Transaction currency' | 'Amount' |
|
|
| '' | '05.04.2021 09:30:58' | 'Receipt' | 'Main Company' | 'Front office' | 'VAT' | '18%' | 'Return' | 'Local currency' | 'TRY' | 'TRY' | '106,78' |
|
|
| '' | '05.04.2021 09:30:58' | 'Receipt' | 'Main Company' | 'Front office' | 'VAT' | '18%' | 'Return' | 'Reporting currency' | 'USD' | 'TRY' | '18,28' |
|
|
| '' | '05.04.2021 09:30:58' | 'Receipt' | 'Main Company' | 'Front office' | 'VAT' | '18%' | 'Return' | 'en description is empty' | 'TRY' | 'TRY' | '106,78' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043019 check Credit note movements by the Register "R1040 Taxes outgoing" (with vendor)
|
|
And I close all client application windows
|
|
* Select CN
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number'|
|
|
| '1' |
|
|
* Check movements by the Register "R1040 Taxes outgoing"
|
|
And I click "Registrations report info" button
|
|
And I select "R1040 Taxes outgoing" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 1 dated 05.04.2021 09:30:47' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "R1040 Taxes outgoing"' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Period' | 'RecordType' | 'Company' | 'Branch' | 'Tax' | 'Tax rate' | 'Invoice type' | 'Multi currency movement type' | 'Currency' | 'Transaction currency' | 'Amount' |
|
|
| '' | '05.04.2021 09:30:47' | 'Receipt' | 'Main Company' | 'Front office' | 'VAT' | '18%' | 'Invoice' | 'Local currency' | 'TRY' | 'TRY' | '76,27' |
|
|
| '' | '05.04.2021 09:30:47' | 'Receipt' | 'Main Company' | 'Front office' | 'VAT' | '18%' | 'Invoice' | 'Reporting currency' | 'USD' | 'TRY' | '13,06' |
|
|
| '' | '05.04.2021 09:30:47' | 'Receipt' | 'Main Company' | 'Front office' | 'VAT' | '18%' | 'Invoice' | 'en description is empty' | 'TRY' | 'TRY' | '76,27' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043130 Credit note clear posting/mark for deletion
|
|
And I close all client application windows
|
|
* Select Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '1' |
|
|
* Clear posting
|
|
And in the table "List" I click the button named "ListContextMenuUndoPosting"
|
|
Then user message window does not contain messages
|
|
And I click "Registrations report" button
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 1 dated 05.04.2021 09:30:47' |
|
|
| 'Document registrations records' |
|
|
And I close current window
|
|
* Post Credit note
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '1' |
|
|
And in the table "List" I click the button named "ListContextMenuPost"
|
|
Then user message window does not contain messages
|
|
And I click "Registrations report" button
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document contains values
|
|
| 'R5010 Reconciliation statement' |
|
|
And I close all client application windows
|
|
* Mark for deletion
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '1' |
|
|
And in the table "List" I click the button named "ListContextMenuSetDeletionMark"
|
|
Then "1C:Enterprise" window is opened
|
|
And I click "Yes" button
|
|
Then user message window does not contain messages
|
|
And I click "Registrations report" button
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 1 dated 05.04.2021 09:30:47' |
|
|
| 'Document registrations records' |
|
|
And I close current window
|
|
* Unmark for deletion and post document
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '1' |
|
|
And in the table "List" I click the button named "ListContextMenuSetDeletionMark"
|
|
Then "1C:Enterprise" window is opened
|
|
And I click "Yes" button
|
|
Then user message window does not contain messages
|
|
And in the table "List" I click the button named "ListContextMenuPost"
|
|
Then user message window does not contain messages
|
|
And I click "Registrations report" button
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document contains values
|
|
| 'R5010 Reconciliation statement' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _043020 check Credit note movements by the Register "Posted documents registry"
|
|
And I close all client application windows
|
|
Given I open hyperlink "e1cib/list/Document.CreditNote"
|
|
And I go to line in "List" table
|
|
| 'Number' |
|
|
| '1' |
|
|
* Check movements by the Register "Posted documents registry"
|
|
And I click "Registrations report info" button
|
|
And I select "Posted documents registry" exact value from "Register" drop-down list
|
|
And I click "Generate report" button
|
|
Then "ResultTable" spreadsheet document is equal
|
|
| 'Credit note 1 dated 05.04.2021 09:30:47' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| 'Register "Posted documents registry"' | '' | '' | '' | '' | '' | '' | '' | '' |
|
|
| '' | 'Document' | 'Date' | 'Number' | 'Create date' | 'Modify date' | 'Author' | 'Editor' | 'Manual movements edit' |
|
|
| '' | 'Credit note 1 dated 05.04.2021 09:30:47' | '05.04.2021 09:30:47' | '1' | '*' | '*' | 'en description is empty' | 'en description is empty' | 'No' |
|
|
And I close all client application windows
|