|
1.
|
|
|
Code should always set a variable named `result` with the result of your test, that can be a list or
a dictionary. If `result` is an empty list, it means that the test was succesful. Otherwise it will
try to translate and print what is inside `result`.
If the result of your test is a dictionary, you can set a variable named `column_order` to choose in
what order you want to print `result`'s content.
Should you need them, you can also use the following variables into your code:
* cr: cursor to the database
* uid: ID of the current user
In any ways, the code must be legal python statements with correct indentation (if needed).
Example:
sql = '''SELECT id, name, ref, date
FROM account_move_line
WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')
'''
cr.execute(sql)
result = cr.dictfetchall()
|
|
|
module: account_test
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
represents a space character.
Enter a space in the equivalent position in the translation.
|
|
|
|
Kod powinien zawsze zwracać zmienną zwaną `result` z rezultatem przeprowadzonego testu, który
może być typu list lub a dictionary. Jeśli `result` jest pustą listą, to oznacza że test był zakończony
sukcesem. W przeciwnym wypadku nastąpi próba tłumaczenia i wydruku zawartości 'result'.
Jeśli rezultatem jest zmienna typu a dictionary, możesz ustawić zmienną nazywaną `column_order`
żeby wybrać w jakiej kolejności wydrukować zawartość `result`.
Jeśli będziesz potrzebować, możesz również użyć w kodzie zmienne:
* cr: cursor to the database
* uid: ID of the current user
W jakikolwiek sposób kod musi być prawdziwymi wyrażeniami języka python z odpowiednimi wcięciami (tam gdzie wymagane).
Przykład:
sql = '''SELECT id, name, ref, date
FROM account_move_line
WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')
'''
cr.execute(sql)
result = cr.dictfetchall()
|
|
Translated by
Mirosław Bojanowicz
|
|
|
|
Located in
view:accounting.assert.test:0
|
|
2.
|
|
|
Test 2: Opening a fiscal year
|
|
|
module: account_test
|
|
|
|
Test 2: Otwarcie roku podatkowego
|
|
Translated by
Mirosław Bojanowicz
|
|
|
|
Located in
model:accounting.assert.test,name:account_test.account_test_02
|
|
3.
|
|
|
Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts
|
|
|
module: account_test
|
|
|
|
Sprawdź czy uzgodnione sprawozdania faktur dla Sprzedaży/Zakupów są uzgodnionymi wpisami dla kont rachunkowych Płatności i Należności
|
|
Translated by
Mirosław Bojanowicz
|
|
|
|
Located in
model:accounting.assert.test,desc:account_test.account_test_05
|
|
4.
|
|
|
Check if movement lines are balanced and have the same date and period
|
|
|
module: account_test
|
|
|
|
Sprawdź czy przesunięcia są zbalansowane i mają tą samą datę i okres
|
|
Translated by
Mirosław Bojanowicz
|
|
|
|
Located in
model:accounting.assert.test,desc:account_test.account_test_03
|
|
5.
|
|
|
Test Name
|
|
|
module: account_test
|
|
|
|
Testowa nazwa
|
|
Translated by
Mirosław Bojanowicz
|
|
|
|
Located in
field:accounting.assert.test,name:0
|
|
6.
|
|
|
Accouting tests on
|
|
|
module: account_test
|
|
|
|
Testy rachunkowe włączone
|
|
Translated by
Mirosław Bojanowicz
|
|
|
|
Located in
report:account.test.assert.print:0
|
|
7.
|
|
|
Test 1: General balance
|
|
|
module: account_test
|
|
|
|
Test 1: Saldo
|
|
Translated by
Mirosław Bojanowicz
|
|
|
|
Located in
model:accounting.assert.test,name:account_test.account_test_01
|
|
8.
|
|
|
Check that paid/reconciled invoices are not in 'Open' state
|
|
|
module: account_test
|
|
|
|
Sprawdź czy zapłacone/uzgodnione faktury nie są w 'Otwarte' -ym stanie
|
|
Translated by
Mirosław Bojanowicz
|
|
|
|
Located in
model:accounting.assert.test,desc:account_test.account_test_06
|
|
9.
|
|
|
Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices
|
|
|
module: account_test
|
|
|
|
Sprawdź czy uzgodnione sprawozdania przesunięć rachunkowych, które określają konta Płatności i Należności, są przynależne do uzgodnianych sprawozdań
|
|
Translated by
Mirosław Bojanowicz
|
|
|
|
Located in
model:accounting.assert.test,desc:account_test.account_test_05_2
|
|
10.
|
|
|
Tests
|
|
|
module: account_test
|
|
|
|
Testy
|
|
Translated by
Mirosław Bojanowicz
|
|
|
|
Located in
view:accounting.assert.test:0
|