Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Romain Courteaud
erp5
Commits
d8999426
Commit
d8999426
authored
Mar 20, 2019
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test: fix python3 syntax errors on testAccounting
(because my editor runs python3 pytlint)
parent
4f6c130b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
27 deletions
+27
-27
product/ERP5/tests/testAccounting.py
product/ERP5/tests/testAccounting.py
+27
-27
No files found.
product/ERP5/tests/testAccounting.py
View file @
d8999426
...
@@ -3196,20 +3196,20 @@ class TestTransactions(AccountingTestCase):
...
@@ -3196,20 +3196,20 @@ class TestTransactions(AccountingTestCase):
section_period_2001
=
self
.
section
.
newContent
(
section_period_2001
=
self
.
section
.
newContent
(
portal_type
=
'Accounting Period'
,
portal_type
=
'Accounting Period'
,
short_title
=
'code-2001'
,
short_title
=
'code-2001'
,
start_date
=
DateTime
(
2001
,
01
,
0
1
),
start_date
=
DateTime
(
2001
,
1
,
1
),
stop_date
=
DateTime
(
2001
,
12
,
31
))
stop_date
=
DateTime
(
2001
,
12
,
31
))
section_period_2001
.
start
()
section_period_2001
.
start
()
section_period_2002
=
self
.
section
.
newContent
(
section_period_2002
=
self
.
section
.
newContent
(
portal_type
=
'Accounting Period'
,
portal_type
=
'Accounting Period'
,
short_title
=
'code-2002'
,
short_title
=
'code-2002'
,
start_date
=
DateTime
(
2002
,
01
,
0
1
),
start_date
=
DateTime
(
2002
,
1
,
1
),
stop_date
=
DateTime
(
2002
,
12
,
31
))
stop_date
=
DateTime
(
2002
,
12
,
31
))
section_period_2002
.
start
()
section_period_2002
.
start
()
accounting_transaction
=
self
.
_makeOne
(
accounting_transaction
=
self
.
_makeOne
(
destination_section_value
=
self
.
organisation_module
.
client_1
,
destination_section_value
=
self
.
organisation_module
.
client_1
,
start_date
=
DateTime
(
2001
,
01
,
0
1
),
start_date
=
DateTime
(
2001
,
1
,
1
),
stop_date
=
DateTime
(
2001
,
01
,
0
1
))
stop_date
=
DateTime
(
2001
,
1
,
1
))
self
.
portal
.
portal_workflow
.
doActionFor
(
self
.
portal
.
portal_workflow
.
doActionFor
(
accounting_transaction
,
'stop_action'
)
accounting_transaction
,
'stop_action'
)
# The reference generated for the source section uses the short title from
# The reference generated for the source section uses the short title from
...
@@ -3225,16 +3225,16 @@ class TestTransactions(AccountingTestCase):
...
@@ -3225,16 +3225,16 @@ class TestTransactions(AccountingTestCase):
other_transaction
=
self
.
_makeOne
(
other_transaction
=
self
.
_makeOne
(
destination_section_value
=
self
.
organisation_module
.
client_2
,
destination_section_value
=
self
.
organisation_module
.
client_2
,
start_date
=
DateTime
(
2001
,
01
,
0
1
),
start_date
=
DateTime
(
2001
,
1
,
1
),
stop_date
=
DateTime
(
2001
,
01
,
0
1
))
stop_date
=
DateTime
(
2001
,
1
,
1
))
self
.
portal
.
portal_workflow
.
doActionFor
(
other_transaction
,
'stop_action'
)
self
.
portal
.
portal_workflow
.
doActionFor
(
other_transaction
,
'stop_action'
)
self
.
assertEqual
(
'code-2001-2'
,
other_transaction
.
getSourceReference
())
self
.
assertEqual
(
'code-2001-2'
,
other_transaction
.
getSourceReference
())
self
.
assertEqual
(
'2001-1'
,
other_transaction
.
getDestinationReference
())
self
.
assertEqual
(
'2001-1'
,
other_transaction
.
getDestinationReference
())
next_year_transaction
=
self
.
_makeOne
(
next_year_transaction
=
self
.
_makeOne
(
destination_section_value
=
self
.
organisation_module
.
client_1
,
destination_section_value
=
self
.
organisation_module
.
client_1
,
start_date
=
DateTime
(
2002
,
01
,
0
1
),
start_date
=
DateTime
(
2002
,
1
,
1
),
stop_date
=
DateTime
(
2002
,
01
,
0
1
))
stop_date
=
DateTime
(
2002
,
1
,
1
))
self
.
portal
.
portal_workflow
.
doActionFor
(
next_year_transaction
,
'stop_action'
)
self
.
portal
.
portal_workflow
.
doActionFor
(
next_year_transaction
,
'stop_action'
)
self
.
assertEqual
(
'code-2002-1'
,
next_year_transaction
.
getSourceReference
())
self
.
assertEqual
(
'code-2002-1'
,
next_year_transaction
.
getSourceReference
())
self
.
assertEqual
(
'2002-1'
,
next_year_transaction
.
getDestinationReference
())
self
.
assertEqual
(
'2002-1'
,
next_year_transaction
.
getDestinationReference
())
...
@@ -3246,21 +3246,21 @@ class TestTransactions(AccountingTestCase):
...
@@ -3246,21 +3246,21 @@ class TestTransactions(AccountingTestCase):
section_period_2001
=
self
.
main_section
.
newContent
(
section_period_2001
=
self
.
main_section
.
newContent
(
portal_type
=
'Accounting Period'
,
portal_type
=
'Accounting Period'
,
short_title
=
'code-2001'
,
short_title
=
'code-2001'
,
start_date
=
DateTime
(
2001
,
01
,
0
1
),
start_date
=
DateTime
(
2001
,
1
,
1
),
stop_date
=
DateTime
(
2001
,
12
,
31
))
stop_date
=
DateTime
(
2001
,
12
,
31
))
section_period_2001
.
start
()
section_period_2001
.
start
()
section_period_2002
=
self
.
main_section
.
newContent
(
section_period_2002
=
self
.
main_section
.
newContent
(
portal_type
=
'Accounting Period'
,
portal_type
=
'Accounting Period'
,
short_title
=
'code-2002'
,
short_title
=
'code-2002'
,
start_date
=
DateTime
(
2002
,
01
,
0
1
),
start_date
=
DateTime
(
2002
,
1
,
1
),
stop_date
=
DateTime
(
2002
,
12
,
31
))
stop_date
=
DateTime
(
2002
,
12
,
31
))
section_period_2002
.
start
()
section_period_2002
.
start
()
accounting_transaction
=
self
.
_makeOne
(
accounting_transaction
=
self
.
_makeOne
(
source_section_value
=
self
.
main_section
,
source_section_value
=
self
.
main_section
,
destination_section_value
=
self
.
organisation_module
.
client_1
,
destination_section_value
=
self
.
organisation_module
.
client_1
,
start_date
=
DateTime
(
2001
,
01
,
0
1
),
start_date
=
DateTime
(
2001
,
1
,
1
),
stop_date
=
DateTime
(
2001
,
01
,
0
1
))
stop_date
=
DateTime
(
2001
,
1
,
1
))
self
.
portal
.
portal_workflow
.
doActionFor
(
self
.
portal
.
portal_workflow
.
doActionFor
(
accounting_transaction
,
'stop_action'
)
accounting_transaction
,
'stop_action'
)
# The reference generated for the source section uses the short title from
# The reference generated for the source section uses the short title from
...
@@ -3276,8 +3276,8 @@ class TestTransactions(AccountingTestCase):
...
@@ -3276,8 +3276,8 @@ class TestTransactions(AccountingTestCase):
other_section_transaction
=
self
.
_makeOne
(
other_section_transaction
=
self
.
_makeOne
(
destination_section_value
=
self
.
organisation_module
.
client_2
,
destination_section_value
=
self
.
organisation_module
.
client_2
,
start_date
=
DateTime
(
2001
,
01
,
0
1
),
start_date
=
DateTime
(
2001
,
1
,
1
),
stop_date
=
DateTime
(
2001
,
01
,
0
1
))
stop_date
=
DateTime
(
2001
,
1
,
1
))
self
.
portal
.
portal_workflow
.
doActionFor
(
other_section_transaction
,
'stop_action'
)
self
.
portal
.
portal_workflow
.
doActionFor
(
other_section_transaction
,
'stop_action'
)
# The numbering is shared by all the sections
# The numbering is shared by all the sections
self
.
assertEqual
(
'code-2001-2'
,
other_section_transaction
.
getSourceReference
())
self
.
assertEqual
(
'code-2001-2'
,
other_section_transaction
.
getSourceReference
())
...
@@ -3290,14 +3290,14 @@ class TestTransactions(AccountingTestCase):
...
@@ -3290,14 +3290,14 @@ class TestTransactions(AccountingTestCase):
section_period_2001
=
self
.
section
.
newContent
(
section_period_2001
=
self
.
section
.
newContent
(
portal_type
=
'Accounting Period'
,
portal_type
=
'Accounting Period'
,
short_title
=
'code-2001'
,
short_title
=
'code-2001'
,
start_date
=
DateTime
(
2001
,
01
,
0
1
),
start_date
=
DateTime
(
2001
,
1
,
1
),
stop_date
=
DateTime
(
2001
,
12
,
31
))
stop_date
=
DateTime
(
2001
,
12
,
31
))
section_period_2001
.
start
()
section_period_2001
.
start
()
accounting_transaction
=
self
.
_makeOne
(
accounting_transaction
=
self
.
_makeOne
(
destination_section_value
=
self
.
organisation_module
.
client_1
,
destination_section_value
=
self
.
organisation_module
.
client_1
,
start_date
=
DateTime
(
2001
,
01
,
0
1
),
start_date
=
DateTime
(
2001
,
1
,
1
),
stop_date
=
DateTime
(
2001
,
01
,
0
1
))
stop_date
=
DateTime
(
2001
,
1
,
1
))
accounting_transaction
.
manage_permission
(
'Modify portal content'
,
accounting_transaction
.
manage_permission
(
'Modify portal content'
,
roles
=
[
'Manager'
],
acquire
=
0
)
roles
=
[
'Manager'
],
acquire
=
0
)
self
.
assertFalse
(
_checkPermission
(
'Modify portal content'
,
self
.
assertFalse
(
_checkPermission
(
'Modify portal content'
,
...
@@ -3340,7 +3340,7 @@ class TestTransactions(AccountingTestCase):
...
@@ -3340,7 +3340,7 @@ class TestTransactions(AccountingTestCase):
section_period_2001
=
self
.
main_section
.
newContent
(
section_period_2001
=
self
.
main_section
.
newContent
(
portal_type
=
'Accounting Period'
,
portal_type
=
'Accounting Period'
,
short_title
=
'code-2001'
,
short_title
=
'code-2001'
,
start_date
=
DateTime
(
2001
,
01
,
0
1
),
start_date
=
DateTime
(
2001
,
1
,
1
),
stop_date
=
DateTime
(
2001
,
12
,
31
))
stop_date
=
DateTime
(
2001
,
12
,
31
))
self
.
assertEqual
(
self
.
main_section
,
self
.
assertEqual
(
self
.
main_section
,
...
@@ -3756,7 +3756,7 @@ class TestTransactions(AccountingTestCase):
...
@@ -3756,7 +3756,7 @@ class TestTransactions(AccountingTestCase):
section_period_2001
=
self
.
main_section
.
newContent
(
section_period_2001
=
self
.
main_section
.
newContent
(
portal_type
=
'Accounting Period'
,
portal_type
=
'Accounting Period'
,
short_title
=
'code-2001'
,
short_title
=
'code-2001'
,
start_date
=
DateTime
(
2001
,
01
,
0
1
),
start_date
=
DateTime
(
2001
,
1
,
1
),
stop_date
=
DateTime
(
2001
,
12
,
31
))
stop_date
=
DateTime
(
2001
,
12
,
31
))
invoice
=
self
.
_makeOne
(
invoice
=
self
.
_makeOne
(
...
@@ -4530,7 +4530,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
...
@@ -4530,7 +4530,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
purchase_invoice_transaction_line_portal_type
=
\
purchase_invoice_transaction_line_portal_type
=
\
'Purchase Invoice Transaction Line'
'Purchase Invoice Transaction Line'
start_date
=
DateTime
(
2004
,
01
,
0
1
)
start_date
=
DateTime
(
2004
,
1
,
1
)
stop_date
=
DateTime
(
2004
,
12
,
31
)
stop_date
=
DateTime
(
2004
,
12
,
31
)
default_region
=
'europe/west/france'
default_region
=
'europe/west/france'
...
@@ -5079,7 +5079,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
...
@@ -5079,7 +5079,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
kw
.
setdefault
(
'source_section_value'
,
self
.
vendor
)
kw
.
setdefault
(
'source_section_value'
,
self
.
vendor
)
kw
.
setdefault
(
'destination_section_value'
,
self
.
client
)
kw
.
setdefault
(
'destination_section_value'
,
self
.
client
)
if
'start_date'
not
in
kw
:
if
'start_date'
not
in
kw
:
start_date
=
DateTime
(
2000
,
01
,
0
1
)
start_date
=
DateTime
(
2000
,
1
,
1
)
# get a valid date for source section
# get a valid date for source section
for
openned_source_section_period
in
\
for
openned_source_section_period
in
\
kw
[
'source_section_value'
].
searchFolder
(
kw
[
'source_section_value'
].
searchFolder
(
...
@@ -5090,7 +5090,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
...
@@ -5090,7 +5090,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
if
'stop_date'
not
in
kw
:
if
'stop_date'
not
in
kw
:
# get a valid date for destination section
# get a valid date for destination section
stop_date
=
DateTime
(
2000
,
02
,
0
2
)
stop_date
=
DateTime
(
2000
,
2
,
2
)
for
openned_destination_section_period
in
\
for
openned_destination_section_period
in
\
kw
[
'destination_section_value'
].
searchFolder
(
kw
[
'destination_section_value'
].
searchFolder
(
portal_type
=
self
.
accounting_period_portal_type
,
portal_type
=
self
.
accounting_period_portal_type
,
...
@@ -5225,7 +5225,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
...
@@ -5225,7 +5225,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
try
:
try
:
self
.
getWorkflowTool
().
doActionFor
(
accounting_transaction
,
'stop_action'
)
self
.
getWorkflowTool
().
doActionFor
(
accounting_transaction
,
'stop_action'
)
self
.
assertEqual
(
accounting_transaction
.
getSimulationState
(),
'stopped'
)
self
.
assertEqual
(
accounting_transaction
.
getSimulationState
(),
'stopped'
)
except
ValidationFailed
,
err
:
except
ValidationFailed
as
err
:
self
.
assert_
(
0
,
"Validation failed : %s"
%
err
.
msg
)
self
.
assert_
(
0
,
"Validation failed : %s"
%
err
.
msg
)
# if we do not use any payable / receivable account, then we can
# if we do not use any payable / receivable account, then we can
...
@@ -5247,7 +5247,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
...
@@ -5247,7 +5247,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
try
:
try
:
self
.
getWorkflowTool
().
doActionFor
(
accounting_transaction
,
'stop_action'
)
self
.
getWorkflowTool
().
doActionFor
(
accounting_transaction
,
'stop_action'
)
self
.
assertEqual
(
accounting_transaction
.
getSimulationState
(),
'stopped'
)
self
.
assertEqual
(
accounting_transaction
.
getSimulationState
(),
'stopped'
)
except
ValidationFailed
,
err
:
except
ValidationFailed
as
err
:
self
.
assert_
(
0
,
"Validation failed : %s"
%
err
.
msg
)
self
.
assert_
(
0
,
"Validation failed : %s"
%
err
.
msg
)
def
stepValidateNoCurrency
(
self
,
sequence
,
sequence_list
=
None
,
**
kw
)
:
def
stepValidateNoCurrency
(
self
,
sequence
,
sequence_list
=
None
,
**
kw
)
:
...
@@ -5338,7 +5338,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
...
@@ -5338,7 +5338,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
try
:
try
:
self
.
getWorkflowTool
().
doActionFor
(
accounting_transaction
,
'stop_action'
)
self
.
getWorkflowTool
().
doActionFor
(
accounting_transaction
,
'stop_action'
)
self
.
assertEqual
(
accounting_transaction
.
getSimulationState
(),
'stopped'
)
self
.
assertEqual
(
accounting_transaction
.
getSimulationState
(),
'stopped'
)
except
ValidationFailed
,
err
:
except
ValidationFailed
as
err
:
self
.
assert_
(
0
,
"Validation failed : %s"
%
err
.
msg
)
self
.
assert_
(
0
,
"Validation failed : %s"
%
err
.
msg
)
def
stepValidateNotBalanced
(
self
,
sequence
,
sequence_list
=
None
,
**
kw
)
:
def
stepValidateNotBalanced
(
self
,
sequence
,
sequence_list
=
None
,
**
kw
)
:
...
@@ -5383,7 +5383,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
...
@@ -5383,7 +5383,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
try
:
try
:
self
.
getWorkflowTool
().
doActionFor
(
accounting_transaction
,
'stop_action'
)
self
.
getWorkflowTool
().
doActionFor
(
accounting_transaction
,
'stop_action'
)
self
.
assertEqual
(
accounting_transaction
.
getSimulationState
(),
'stopped'
)
self
.
assertEqual
(
accounting_transaction
.
getSimulationState
(),
'stopped'
)
except
ValidationFailed
,
err
:
except
ValidationFailed
as
err
:
self
.
assert_
(
0
,
"Validation failed : %s"
%
err
.
msg
)
self
.
assert_
(
0
,
"Validation failed : %s"
%
err
.
msg
)
def
stepValidateNoPayment
(
self
,
sequence
,
sequence_list
=
None
,
**
kw
)
:
def
stepValidateNoPayment
(
self
,
sequence
,
sequence_list
=
None
,
**
kw
)
:
...
@@ -5445,7 +5445,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
...
@@ -5445,7 +5445,7 @@ class TestAccountingWithSequences(ERP5TypeTestCase):
try
:
try
:
self
.
getWorkflowTool
().
doActionFor
(
accounting_transaction
,
'stop_action'
)
self
.
getWorkflowTool
().
doActionFor
(
accounting_transaction
,
'stop_action'
)
self
.
assertEqual
(
accounting_transaction
.
getSimulationState
(),
'stopped'
)
self
.
assertEqual
(
accounting_transaction
.
getSimulationState
(),
'stopped'
)
except
ValidationFailed
,
err
:
except
ValidationFailed
as
err
:
self
.
fail
(
"Validation failed : %s"
%
err
.
msg
)
self
.
fail
(
"Validation failed : %s"
%
err
.
msg
)
def
stepValidateRemoveEmptyLines
(
self
,
sequence
,
sequence_list
=
None
,
**
kw
):
def
stepValidateRemoveEmptyLines
(
self
,
sequence
,
sequence_list
=
None
,
**
kw
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment