Ujjvala Collins (OpenERP) has proposed merging 
lp:~openerp-dev/openobject-addons/trunk-pos_input_operations-uco into 
lp:openobject-addons.

Requested reviews:
  OpenERP Core Team (openerp)

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-pos_input_operations-uco/+merge/75139

[IMP] point_of_sale:
------------------------------
Point 6: INPUT operations
* Rename Operation into Operation Type
* Amount must be required
* Rename amount into Deposit Amount
* Change layout : Description        Operation Type
                           Cash Register    Deposit Amount
-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-pos_input_operations-uco/+merge/75139
Your team OpenERP R&D Team is subscribed to branch 
lp:~openerp-dev/openobject-addons/trunk-pos_input_operations-uco.
=== modified file 'point_of_sale/wizard/pos_box_entries.py'
--- point_of_sale/wizard/pos_box_entries.py	2011-01-14 00:11:01 +0000
+++ point_of_sale/wizard/pos_box_entries.py	2011-09-13 09:43:10 +0000
@@ -73,8 +73,8 @@
     _columns = {
         'name': fields.char('Description', size=32, required=True),
         'journal_id': fields.selection(get_journal, "Cash Register", required=True),
-        'product_id': fields.selection(_get_income_product, "Operation", required=True),
-        'amount': fields.float('Amount', digits=(16, 2)),
+        'product_id': fields.selection(_get_income_product, "Operation Type", required=True),
+        'amount': fields.float('Deposit Amount', digits=(16, 2), required=True),
         'ref': fields.char('Ref', size=32),
     }
     _defaults = {

=== modified file 'point_of_sale/wizard/pos_box_entries.xml'
--- point_of_sale/wizard/pos_box_entries.xml	2011-01-14 00:11:01 +0000
+++ point_of_sale/wizard/pos_box_entries.xml	2011-09-13 09:43:10 +0000
@@ -11,8 +11,8 @@
                 <form string="Box Entries">
 				    <separator string="Please fill these fields for entries to the box:" colspan="4"/>
 			    	<field name="name"/>
+			    	<field name="product_id"/>
 			    	<field name="journal_id"/>
-			    	<field name="product_id"/>
 			    	<field name="amount"/>
 			    	<separator colspan="4"/>
 			    	<group colspan="4" col="4">

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to