Commit a90e99e2 authored by Romain Courteaud's avatar Romain Courteaud

slapos_crm: test: only payable services are destroyed by the subscription request

parent d9baa528
...@@ -1099,10 +1099,10 @@ class TestSlapOSCrmDeleteInstanceTree(SlapOSTestCaseMixinWithAbort): ...@@ -1099,10 +1099,10 @@ class TestSlapOSCrmDeleteInstanceTree(SlapOSTestCaseMixinWithAbort):
'comment="Visited by InstanceTree_deleteFromRegularisationRequest ' \ 'comment="Visited by InstanceTree_deleteFromRegularisationRequest ' \
'%s" % (person))') '%s" % (person))')
def test_RegularisationRequest_deleteInstanceTreeList_script_matchingSubscription(self): def test_RegularisationRequest_deleteInstanceTreeList_script_matchingSubscription(self):
project = self.addProject() _, _, _, _, _, instance_tree = \
person = self.makePerson(project, index=0, user=0) self.bootstrapAllocableInstanceTree(is_accountable=True, base_price=3, )
person = instance_tree.getDestinationSectionValue()
ticket = self.createRegularisationRequest() ticket = self.createRegularisationRequest()
instance_tree = self.createInstanceTree()
ticket.edit( ticket.edit(
destination_decision_value=person, destination_decision_value=person,
...@@ -1110,9 +1110,29 @@ class TestSlapOSCrmDeleteInstanceTree(SlapOSTestCaseMixinWithAbort): ...@@ -1110,9 +1110,29 @@ class TestSlapOSCrmDeleteInstanceTree(SlapOSTestCaseMixinWithAbort):
) )
ticket.validate() ticket.validate()
ticket.suspend() ticket.suspend()
instance_tree.edit(
destination_section=person.getRelativeUrl(), accounting_transaction = self.portal.accounting_module.newContent(
portal_type="Sale Invoice Transaction",
destination_section_value=person,
start_date=DateTime(),
price_currency="currency_module/EUR",
resource="currency_module/EUR",
ledger="automated",
)
accounting_transaction.newContent(
portal_type="Invoice Line",
aggregate_value_list=[
instance_tree,
self.portal.hosting_subscription_module.newContent()
]
) )
accounting_transaction.newContent(
portal_type="Sale Invoice Transaction Line",
quantity=1,
source="account_module/receivable"
)
self.portal.portal_workflow._jumpToStateFor(accounting_transaction, 'stopped')
with TemporaryAlarmScript(self.portal, 'Base_reindexAndSenseAlarm', "'disabled'", attribute='comment'):
self.tic() self.tic()
result = ticket.\ result = ticket.\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment