Commit d6f1cb30 authored by Kevin Deldycke's avatar Kevin Deldycke

Change some properties from int to float.

Add owner_account_id and billing_address properties.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1479 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent eb4f0d87
......@@ -50,11 +50,11 @@ class ShopOrder:
'mode' : 'w' },
{ 'id' : 'exchange_fee',
'description' : 'Exchange Fee',
'type' : 'int',
'type' : 'float',
'mode' : 'w' },
{ 'id' : 'extra_fee',
'description' : 'Extra Fee',
'type' : 'int',
'type' : 'float',
'mode' : 'w' },
{ 'id' : 'name',
'description' : 'Name',
......@@ -74,7 +74,7 @@ class ShopOrder:
'mode' : 'w' },
{ 'id' : 'send_fee',
'description' : 'Send Fee',
'type' : 'int',
'type' : 'float',
'mode' : 'w' },
{ 'id' : 'send_fee_title',
'description' : 'Send Fee Title',
......@@ -82,24 +82,37 @@ class ShopOrder:
'mode' : 'w' },
{ 'id' : 'price',
'description' : 'Price',
'type' : 'int',
'type' : 'float',
'mode' : 'w' },
{ 'id' : 'total_price',
'description' : 'Total Price',
'type' : 'int',
'type' : 'float',
'mode' : 'w' },
{ 'id' : 'vat',
'description' : 'Vat',
'type' : 'int',
'type' : 'float',
'mode' : 'w' },
{ 'id' : 'euvat',
'description' : 'Euvat',
'type' : 'int',
'type' : 'float',
'mode' : 'w' },
{ 'id' : 'zip_code',
{ 'id' : 'eu_vat',
'description' : 'The eu vat code',
'type' : 'string',
'mode' : 'w' },
{ 'id' : 'zipcode',
'description' : 'Zip Code',
'type' : 'string',
'mode' : 'w' },
{ 'id' : 'billing_address',
'description' : 'Billing Address',
'type' : 'string',
'mode' : 'w' },
{ 'id' : 'owner_account_id',
'description' : 'The id of the member account that own the Shop Order. This property is only used for the synchronisation process with ERP5 Sales Order.',
'type' : 'string',
'mode' : 'w' },
)
_categories = ( )
\ No newline at end of file
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