Changeset 12798
- Timestamp:
- 19 Mar 2015, 16:58:47 (10 years ago)
- Location:
- main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/interfaces.py
r12797 r12798 93 93 """ 94 94 95 state_of_origin= schema.Choice(95 nationality = schema.Choice( 96 96 vocabulary = nats_vocab, 97 title = _(u' State of Origin'),97 title = _(u'Nationality'), 98 98 required = False, 99 99 ) … … 296 296 """ 297 297 298 state_of_origin= schema.Choice(298 nationality = schema.Choice( 299 299 vocabulary = nats_vocab, 300 title = _(u' State of Origin'),300 title = _(u'Nationality'), 301 301 required = False, 302 302 ) … … 1001 1001 """ 1002 1002 1003 state_of_origin= schema.Choice(1003 nationality = schema.Choice( 1004 1004 vocabulary = nats_vocab, 1005 title = _(u' State of Origin'),1005 title = _(u'Nationality'), 1006 1006 required = False, 1007 1007 ) … … 1111 1111 """ 1112 1112 1113 state_of_origin= schema.Choice(1113 nationality = schema.Choice( 1114 1114 vocabulary = nats_vocab, 1115 title = _(u' State of Origin'),1115 title = _(u'Nationality'), 1116 1116 required = False, 1117 1117 ) -
main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/tests/test_browser.py
r12797 r12798 225 225 self.assertMatches(result, 226 226 'categories_practice,class_name,comment,contract_category,contract_id,' 227 'fee_based,history,last_product_id,lga, product_object,'228 'product_options,state,s tate_of_origin,superintendent,'227 'fee_based,history,last_product_id,lga,nationality,product_object,' 228 'product_options,state,superintendent,' 229 229 'tc_dict,title,user_id,valid_from,valid_to,work_address,work_email,work_phone,' 230 230 'year_qualification\r\n' 231 231 '[],RONContract,,ron,%s,0,' 232 '[u\'2015-01-18 16:40:01 WAT - License created by system\'],,,, '233 '[],created,, ,{\'en\': u\'Hello World\'},,K1000000,,,,,,\r\n'232 '[u\'2015-01-18 16:40:01 WAT - License created by system\'],,,,,' 233 '[],created,,{\'en\': u\'Hello World\'},,K1000000,,,,,,\r\n' 234 234 % self.contract1.contract_id) 235 235 # We can reimport the file if we change the header
Note: See TracChangeset for help on using the changeset viewer.