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
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
69bebb68
Commit
69bebb68
authored
Nov 30, 2016
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
accounting: test for internal invoice transactions
parent
eae1e4b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
121 additions
and
0 deletions
+121
-0
product/ERP5/tests/testAccounting.py
product/ERP5/tests/testAccounting.py
+121
-0
No files found.
product/ERP5/tests/testAccounting.py
View file @
69bebb68
...
...
@@ -5387,7 +5387,127 @@ class TestAccountingTransactionTemplate(AccountingTestCase):
self
.
assertTrue
(
'Template%20created.'
in
ret
,
ret
)
self
.
assertEqual
(
2
,
len
(
self
.
accounting_module
.
contentValues
()))
class
TestInternalInvoiceTransaction
(
AccountingTestCase
):
def
afterSetUp
(
self
):
AccountingTestCase
.
afterSetUp
(
self
)
# Allow internal invoice in accounting module
module_allowed_type_list
=
self
.
portal
.
portal_types
[
'Accounting Transaction Module'
].
getTypeAllowedContentTypeList
()
self
.
portal
.
portal_types
[
'Accounting Transaction Module'
].
setTypeAllowedContentTypeList
(
module_allowed_type_list
+
[
'Internal Invoice Transaction'
,])
# configure mirror accounts
self
.
portal
.
account_module
.
receivable
.
setDestinationValue
(
self
.
portal
.
account_module
.
payable
)
def
test_internal_invoice_transaction
(
self
):
# source accountant create internal invoice and set values for source side
internal_invoice
=
self
.
portal
.
accounting_module
.
newContent
(
portal_type
=
'Internal Invoice Transaction'
,
title
=
'test invoice'
,
source_section_value
=
self
.
section
,
destination_section_value
=
self
.
main_section
,
start_date
=
DateTime
(
2015
,
1
,
1
),
)
line_1
,
line_2
=
internal_invoice
.
getMovementList
()
line_1
.
edit
(
source_value
=
self
.
portal
.
account_module
.
receivable
,
source_debit
=
100
)
line_2
.
edit
(
source_value
=
self
.
portal
.
account_module
.
goods_sales
,
source_credit
=
100
)
self
.
commit
()
internal_invoice
.
view
()
# no error on view..
self
.
portal
.
portal_workflow
.
doActionFor
(
internal_invoice
,
'start_action'
)
self
.
assertEqual
(
'started'
,
internal_invoice
.
getSimulationState
())
# mirror accounts are initialised
self
.
assertEqual
(
self
.
portal
.
account_module
.
payable
,
line_1
.
getDestinationValue
())
self
.
assertEqual
(
None
,
line_2
.
getDestinationValue
())
# destination accountant set values for source side
internal_invoice
.
edit
(
stop_date
=
DateTime
(
2015
,
1
,
2
),
)
# the amounts can be split over multiple accounts
internal_invoice
.
newContent
(
portal_type
=
'Internal Invoice Transaction Line'
,
destination_value
=
self
.
portal
.
account_module
.
refundable_vat
,
destination_debit
=
30
)
internal_invoice
.
newContent
(
portal_type
=
'Internal Invoice Transaction Line'
,
destination_value
=
self
.
portal
.
account_module
.
goods_purchase
,
destination_debit
=
70
)
self
.
portal
.
portal_workflow
.
doActionFor
(
internal_invoice
,
'stop_action'
)
self
.
assertEqual
(
'stopped'
,
internal_invoice
.
getSimulationState
())
# the lines are different on source and destination views
source_line_list
=
internal_invoice
.
InternalInvoiceTransaction_viewSource
.
listbox
.
get_value
(
'default'
,
render_format
=
'list'
,
REQUEST
=
self
.
portal
.
REQUEST
)
self
.
assertEqual
(
2
,
len
([
l
for
l
in
source_line_list
if
l
.
isDataLine
()]))
stat_line
,
=
[
l
for
l
in
source_line_list
if
l
.
isStatLine
()]
self
.
assertEqual
(
100
,
stat_line
.
getColumnProperty
(
'source_debit'
))
self
.
assertEqual
(
100
,
stat_line
.
getColumnProperty
(
'source_credit'
))
destination_line_list
=
internal_invoice
.
InternalInvoiceTransaction_viewDestination
.
listbox
.
get_value
(
'default'
,
render_format
=
'list'
,
REQUEST
=
self
.
portal
.
REQUEST
)
self
.
assertEqual
(
3
,
len
([
l
for
l
in
destination_line_list
if
l
.
isDataLine
()]))
stat_line
,
=
[
l
for
l
in
destination_line_list
if
l
.
isStatLine
()]
self
.
assertEqual
(
100
,
stat_line
.
getColumnProperty
(
'destination_debit'
))
self
.
assertEqual
(
100
,
stat_line
.
getColumnProperty
(
'destination_credit'
))
def
test_internal_invoice_transaction_balanced_constraint
(
self
):
internal_invoice
=
self
.
portal
.
accounting_module
.
newContent
(
portal_type
=
'Internal Invoice Transaction'
,
title
=
'test invoice'
,
source_section_value
=
self
.
section
,
destination_section_value
=
self
.
main_section
,
start_date
=
DateTime
(
2015
,
1
,
1
),
)
line_1
,
line_2
=
internal_invoice
.
getMovementList
()
line_1
.
edit
(
source_value
=
self
.
portal
.
account_module
.
receivable
,
source_debit
=
100
)
line_2
.
edit
(
source_value
=
self
.
portal
.
account_module
.
goods_sales
,
source_credit
=
101
)
with
self
.
assertRaisesRegexp
(
ValidationFailed
,
'.*Transaction is not balanced.*'
):
self
.
portal
.
portal_workflow
.
doActionFor
(
internal_invoice
,
'start_action'
)
line_2
.
setSourceCredit
(
100
)
self
.
portal
.
portal_workflow
.
doActionFor
(
internal_invoice
,
'start_action'
)
self
.
assertEqual
(
'started'
,
internal_invoice
.
getSimulationState
())
self
.
assertEqual
(
self
.
portal
.
account_module
.
payable
,
line_1
.
getDestinationValue
())
line_3
=
internal_invoice
.
newContent
(
portal_type
=
'Internal Invoice Transaction Line'
,
destination_value
=
self
.
portal
.
account_module
.
refundable_vat
,
destination_debit
=
101
)
with
self
.
assertRaisesRegexp
(
ValidationFailed
,
'.*Transaction is not balanced.*'
):
self
.
portal
.
portal_workflow
.
doActionFor
(
internal_invoice
,
'stop_action'
)
line_3
.
setDestinationDebit
(
100
)
self
.
portal
.
portal_workflow
.
doActionFor
(
internal_invoice
,
'stop_action'
)
self
.
assertEqual
(
'stopped'
,
internal_invoice
.
getSimulationState
())
def
test_suite
():
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
TestAccountingWithSequences
))
...
...
@@ -5397,4 +5517,5 @@ def test_suite():
suite
.
addTest
(
unittest
.
makeSuite
(
TestTransactionValidation
))
suite
.
addTest
(
unittest
.
makeSuite
(
TestAccountingExport
))
suite
.
addTest
(
unittest
.
makeSuite
(
TestAccountingTransactionTemplate
))
suite
.
addTest
(
unittest
.
makeSuite
(
TestInternalInvoiceTransaction
))
return
suite
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