Commit 72ccf32c authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

test if source_project and destination_project are propagated.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30178 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ecfb1ed3
...@@ -80,7 +80,8 @@ class TestInvoiceMixin(TestPackingListMixin, ...@@ -80,7 +80,8 @@ class TestInvoiceMixin(TestPackingListMixin,
def getBusinessTemplateList(self): def getBusinessTemplateList(self):
return ('erp5_base', 'erp5_pdm', 'erp5_trade', 'erp5_accounting', return ('erp5_base', 'erp5_pdm', 'erp5_trade', 'erp5_accounting',
'erp5_invoicing', 'erp5_simplified_invoicing', 'erp5_apparel') 'erp5_invoicing', 'erp5_simplified_invoicing', 'erp5_apparel',
'erp5_project')
def createCategories(self): def createCategories(self):
"""Create the categories for our test. """ """Create the categories for our test. """
...@@ -217,6 +218,8 @@ class TestInvoiceMixin(TestPackingListMixin, ...@@ -217,6 +218,8 @@ class TestInvoiceMixin(TestPackingListMixin,
self.stepCreateOrganisation1(sequence, **kw) self.stepCreateOrganisation1(sequence, **kw)
self.stepCreateOrganisation2(sequence, **kw) self.stepCreateOrganisation2(sequence, **kw)
self.stepCreateOrganisation3(sequence, **kw) self.stepCreateOrganisation3(sequence, **kw)
self.stepCreateProject1(sequence, **kw)
self.stepCreateProject2(sequence, **kw)
vendor = sequence.get('organisation1') vendor = sequence.get('organisation1')
vendor.setRegion(self.default_region) vendor.setRegion(self.default_region)
vendor.validate() vendor.validate()
...@@ -1940,12 +1943,18 @@ class TestSaleInvoiceMixin(TestInvoiceMixin, ...@@ -1940,12 +1943,18 @@ class TestSaleInvoiceMixin(TestInvoiceMixin,
invoice.getDestinationSection()) invoice.getDestinationSection())
self.assertEquals(packing_list.getSourceSection(), \ self.assertEquals(packing_list.getSourceSection(), \
invoice.getSourceSection()) invoice.getSourceSection())
self.assertEquals(packing_list.getDestinationDecision(), \
invoice.getDestinationDecision())
self.assertEquals(packing_list.getSourceDecision(), \ self.assertEquals(packing_list.getSourceDecision(), \
invoice.getSourceDecision()) invoice.getSourceDecision())
self.assertEquals(packing_list.getDestinationAdministration(), \ self.assertEquals(packing_list.getDestinationAdministration(), \
invoice.getDestinationAdministration()) invoice.getDestinationAdministration())
self.assertEquals(packing_list.getSourceAdministration(), \ self.assertEquals(packing_list.getSourceAdministration(), \
invoice.getSourceAdministration()) invoice.getSourceAdministration())
self.assertEquals(packing_list.getDestinationProject(), \
invoice.getDestinationProject())
self.assertEquals(packing_list.getSourceProject(), \
invoice.getSourceProject())
self.assertEquals(packing_list.getPriceCurrency(), \ self.assertEquals(packing_list.getPriceCurrency(), \
invoice.getPriceCurrency()) invoice.getPriceCurrency())
......
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