IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Odoo (ex-OpenERP) Discussion :

Surcharges multiples classes js du POS openerp [V7]


Sujet :

Odoo (ex-OpenERP)

  1. #1
    Membre habitué

    Homme Profil pro
    Developpeur Web & Odoo
    Inscrit en
    Novembre 2010
    Messages
    87
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Developpeur Web & Odoo
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Novembre 2010
    Messages : 87
    Points : 164
    Points
    164
    Billets dans le blog
    3
    Par défaut Surcharges multiples classes js du POS openerp
    Bonjour à tous,

    (Config : openerp 7 sur ubuntu)

    j'ai un souci concernant la surcharge de la classe Backbone.Model dans le fichier models.js du POS
    En fait, je surcharge cette classe pour pouvoir recupérer un champ que j'ai ajouter dans le modèle product.product, pour pouvoir l'afficher sur les produits comme c'est fait actuellement avec le prix de vente. Voici le code de mon fichier models.js dans lequel j'effectue la surcharge :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    function openerp_pos_price_control_models(instance, module){
        var module = instance.point_of_sale;
        var QWeb = instance.web.qweb;
        _t = instance.web._t;
        
        var round_di = instance.web.round_decimals;
        var round_pr = instance.web.round_precision;
        
         //Modification du fetch sur la table product.product pour lui faire
         //prendre en compte le champ min_sale_price
         module.PosModel = Backbone.Model.extend({
            initialize: function(session, attributes) {
                Backbone.Model.prototype.initialize.call(this, attributes);
                var  self = this;
                this.session = session;                 
                this.ready = $.Deferred();                          // used to notify the GUI that the PosModel has loaded all resources
                this.flush_mutex = new $.Mutex();                   // used to make sure the orders are sent to the server once at time
    
                this.barcode_reader = new module.BarcodeReader({'pos': this});  // used to read barcodes
                this.proxy = new module.ProxyDevice();              // used to communicate to the hardware devices via a local proxy
                this.db = new module.PosLS();                       // a database used to store the products and categories
                this.db.clear('products','categories');
                this.debug = jQuery.deparam(jQuery.param.querystring()).debug !== undefined;    //debug mode 
    
                // default attributes values. If null, it will be loaded below.
                this.set({
                    'nbr_pending_operations': 0,    
    
                    'currency':         {symbol: '$', position: 'after'},
                    'shop':             null, 
                    'company':          null,
                    'user':             null,   // the user that loaded the pos
                    'user_list':        null,   // list of all users
                    'partner_list':     null,   // list of all partners with an ean
                    'cashier':          null,   // the logged cashier, if different from user
    
                    'orders':           new module.OrderCollection(),
                    //this is the product list as seen by the product list widgets, it will change based on the category filters
                    'products':         new module.ProductCollection(), 
                    'cashRegisters':    null, 
    
                    'bank_statements':  null,
                    'taxes':            null,
                    'pos_session':      null,
                    'pos_config':       null,
                    'units':            null,
                    'units_by_id':      null,
                    'pricelist':        null,
    
                    'selectedOrder':    null,
                });
    
                this.get('orders').bind('remove', function(){ self.on_removed_order(); });
                
                // We fetch the backend data on the server asynchronously. this is done only when the pos user interface is launched,
                // Any change on this data made on the server is thus not reflected on the point of sale until it is relaunched. 
                // when all the data has loaded, we compute some stuff, and declare the Pos ready to be used. 
                $.when(this.load_server_data())
                    .done(function(){
                        //self.log_loaded_data(); //Uncomment if you want to log the data to the console for easier debugging
                        self.ready.resolve();
                    }).fail(function(){
                        //we failed to load some backend data, or the backend was badly configured.
                        //the error messages will be displayed in PosWidget
                        self.ready.reject();
                    });
            },
    
            // helper function to load data from the server
            fetch: function(model, fields, domain, ctx){
                return new instance.web.Model(model).query(fields).filter(domain).context(ctx).all()
            },
            // loads all the needed data on the sever. returns a deferred indicating when all the data has loaded. 
            load_server_data: function(){
                var self = this;
    
                var loaded = self.fetch('res.users',['name','company_id'],[['id','=',this.session.uid]]) 
                    .then(function(users){
                        self.set('user',users[0]);
    
                        return self.fetch('res.company',
                        [
                            'currency_id',
                            'email',
                            'website',
                            'company_registry',
                            'vat',
                            'name',
                            'phone',
                            'partner_id',
                        ],
                        [['id','=',users[0].company_id[0]]]);
                    }).then(function(companies){
                        self.set('company',companies[0]);
    
                        return self.fetch('res.partner',['contact_address'],[['id','=',companies[0].partner_id[0]]]);
                    }).then(function(company_partners){
                        self.get('company').contact_address = company_partners[0].contact_address;
    
                        return self.fetch('product.uom', null, null);
                    }).then(function(units){
                        self.set('units',units);
                        var units_by_id = {};
                        for(var i = 0, len = units.length; i < len; i++){
                            units_by_id[units[i].id] = units[i];
                        }
                        self.set('units_by_id',units_by_id);
                        
                        return self.fetch('product.packaging', null, null);
                    }).then(function(packagings){
                        self.set('product.packaging',packagings);
                        
                        return self.fetch('res.users', ['name','ean13'], [['ean13', '!=', false]]);
                    }).then(function(users){
                        self.set('user_list',users);
    
                        return self.fetch('res.partner', ['name','ean13'], [['ean13', '!=', false]]);
                    }).then(function(partners){
                        self.set('partner_list',partners);
    
                        return self.fetch('account.tax', ['amount', 'price_include', 'type']);
                    }).then(function(taxes){
                        self.set('taxes', taxes);
    
                        return self.fetch(
                            'pos.session', 
                            ['id', 'journal_ids','name','user_id','config_id','start_at','stop_at'],
                            [['state', '=', 'opened'], ['user_id', '=', self.session.uid]]
                        );
                    }).then(function(sessions){
                        self.set('pos_session', sessions[0]);
    
                        return self.fetch(
                            'pos.config',
                            ['name','journal_ids','shop_id','journal_id',
                             'iface_self_checkout', 'iface_led', 'iface_cashdrawer',
                             'iface_payment_terminal', 'iface_electronic_scale', 'iface_barscan', 'iface_vkeyboard',
                             'iface_print_via_proxy','iface_cashdrawer','state','sequence_id','session_ids'],
                            [['id','=', self.get('pos_session').config_id[0]]]
                        );
                    }).then(function(configs){
                        var pos_config = configs[0];
                        self.set('pos_config', pos_config);
                        self.iface_electronic_scale    =  !!pos_config.iface_electronic_scale;  
                        self.iface_print_via_proxy     =  !!pos_config.iface_print_via_proxy;
                        self.iface_vkeyboard           =  !!pos_config.iface_vkeyboard; 
                        self.iface_self_checkout       =  !!pos_config.iface_self_checkout;
                        self.iface_cashdrawer          =  !!pos_config.iface_cashdrawer;
    
                        return self.fetch('sale.shop',[],[['id','=',pos_config.shop_id[0]]]);
                    }).then(function(shops){
                        self.set('shop',shops[0]);
    
                        return self.fetch('product.pricelist',['currency_id'],[['id','=',self.get('shop').pricelist_id[0]]]);
                    }).then(function(pricelists){
                        self.set('pricelist',pricelists[0]);
    
                        return self.fetch('res.currency',['symbol','position','rounding','accuracy'],[['id','=',self.get('pricelist').currency_id[0]]]);
                    }).then(function(currencies){
                        self.set('currency',currencies[0]);
    
                        return self.fetch('product.packaging',['ean','product_id']);
                    }).then(function(packagings){
                        self.db.add_packagings(packagings);
    
                        return self.fetch('pos.category', ['id','name','parent_id','child_id','image'])
                    }).then(function(categories){
                        self.db.add_categories(categories);
    
                        return self.fetch(
                            'product.product', 
                            ['name', 'min_sale_price', 'list_price','price','pos_categ_id', 'taxes_id', 'ean13', 'default_code',
                             'to_weight', 'uom_id', 'uos_id', 'uos_coeff', 'mes_type', 'description_sale', 'description'],
                            [['sale_ok','=',true],['available_in_pos','=',true]],
                            {pricelist: self.get('shop').pricelist_id[0]} // context for price
                        );
                    }).then(function(products){
                        self.db.add_products(products);
    
                        return self.fetch(
                            'account.bank.statement',
                            ['account_id','currency','journal_id','state','name','user_id','pos_session_id'],
                            [['state','=','open'],['pos_session_id', '=', self.get('pos_session').id]]
                        );
                    }).then(function(bank_statements){
                        var journals = new Array();
                        _.each(bank_statements,function(statement) {
                            journals.push(statement.journal_id[0])
                        });
                        self.set('bank_statements', bank_statements);
                        return self.fetch('account.journal', undefined, [['id','in', journals]]);
                    }).then(function(journals){
                        self.set('journals',journals);
    
                        // associate the bank statements with their journals. 
                        var bank_statements = self.get('bank_statements');
                        for(var i = 0, ilen = bank_statements.length; i < ilen; i++){
                            for(var j = 0, jlen = journals.length; j < jlen; j++){
                                if(bank_statements[i].journal_id[0] === journals[j].id){
                                    bank_statements[i].journal = journals[j];
                                    bank_statements[i].self_checkout_payment_method = journals[j].self_checkout_payment_method;
                                }
                            }
                        }
                        self.set({'cashRegisters' : new module.CashRegisterCollection(self.get('bank_statements'))});
                    });
            
                return loaded;
            },
    
            // logs the usefull posmodel data to the console for debug purposes
            log_loaded_data: function(){
                console.log('PosModel data has been loaded:');
                console.log('PosModel: units:',this.get('units'));
                console.log('PosModel: bank_statements:',this.get('bank_statements'));
                console.log('PosModel: journals:',this.get('journals'));
                console.log('PosModel: taxes:',this.get('taxes'));
                console.log('PosModel: pos_session:',this.get('pos_session'));
                console.log('PosModel: pos_config:',this.get('pos_config'));
                console.log('PosModel: cashRegisters:',this.get('cashRegisters'));
                console.log('PosModel: shop:',this.get('shop'));
                console.log('PosModel: company:',this.get('company'));
                console.log('PosModel: currency:',this.get('currency'));
                console.log('PosModel: user_list:',this.get('user_list'));
                console.log('PosModel: user:',this.get('user'));
                console.log('PosModel.session:',this.session);
                console.log('PosModel end of data log.');
            },
            
            // this is called when an order is removed from the order collection. It ensures that there is always an existing
            // order and a valid selected order
            on_removed_order: function(removed_order){
                if( this.get('orders').isEmpty()){
                    this.add_new_order();
                }else{
                    this.set({ selectedOrder: this.get('orders').last() });
                }
            },
    
            // saves the order locally and try to send it to the backend. 'record' is a bizzarely defined JSON version of the Order
            push_order: function(record) {
                this.db.add_order(record);
                this.flush();
            },
    
            //creates a new empty order and sets it as the current order
            add_new_order: function(){
                var order = new module.Order({pos:this});
                this.get('orders').add(order);
                this.set('selectedOrder', order);
            },
    
            // attemps to send all pending orders ( stored in the pos_db ) to the server,
            // and remove the successfully sent ones from the db once
            // it has been confirmed that they have been sent correctly.
            flush: function() {
                //TODO make the mutex work 
                //this makes sure only one _int_flush is called at the same time
                /*
                return this.flush_mutex.exec(_.bind(function() {
                    return this._flush(0);
                }, this));
                */
                this._flush(0);
            },
            // attempts to send an order of index 'index' in the list of order to send. The index
            // is used to skip orders that failed. do not call this method outside the mutex provided
            // by flush() 
            _flush: function(index){
                var self = this;
                var orders = this.db.get_orders();
                self.set('nbr_pending_operations',orders.length);
    
                var order  = orders[index];
                if(!order){
                    return;
                }
                //try to push an order to the server
                // shadow : true is to prevent a spinner to appear in case of timeout
                (new instance.web.Model('pos.order')).call('create_from_ui',[[order]],undefined,{ shadow:true })
                    .fail(function(unused, event){
                        //don't show error popup if it fails 
                        event.preventDefault();
                        console.error('Failed to send order:',order);
                        self._flush(index+1);
                    })
                    .done(function(){
                        //remove from db if success
                        self.db.remove_order(order.id);
                        self._flush(index);
                    });
            },
    
            scan_product: function(parsed_ean){
                var self = this;
                var product = this.db.get_product_by_ean13(parsed_ean.base_ean);
                var selectedOrder = this.get('selectedOrder');
    
                if(!product){
                    return false;
                }
    
                if(parsed_ean.type === 'price'){
                    selectedOrder.addProduct(new module.Product(product), {price:parsed_ean.value});
                }else if(parsed_ean.type === 'weight'){
                    selectedOrder.addProduct(new module.Product(product), {quantity:parsed_ean.value, merge:false});
                }else{
                    selectedOrder.addProduct(new module.Product(product));
                }
                return true;
            },
        });
    }
    la partie qui nous interesse ici :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    return self.fetch(
                            'product.product', 
                            ['name', 'min_sale_price', 'list_price','price','pos_categ_id', 'taxes_id', 'ean13', 'default_code',
                             'to_weight', 'uom_id', 'uos_id', 'uos_coeff', 'mes_type', 'description_sale', 'description'],
                            [['sale_ok','=',true],['available_in_pos','=',true]],
                            {pricelist: self.get('shop').pricelist_id[0]} // context for price
                        );
    dans laquelle je recupère le champ en question 'min_sale_price'

    Le problème c'est que il y' a un autre module installé qui surcharge le même modèle. Voci le code du fichier models.js de ce module :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    function cf_pos_2step_models(instance, module){ //module is instance.point_of_sale
        var QWeb = instance.web.qweb;
    
        
        // The PosModel contains the Point Of Sale's representation of the backend.
        // Since the PoS must work in standalone ( Without connection to the server ) 
        // it must contains a representation of the server's PoS backend. 
        // (taxes, product list, configuration options, etc.)  this representation
        // is fetched and stored by the PosModel at the initialisation. 
        // this is done asynchronously, a ready deferred alows the GUI to wait interactively 
        // for the loading to be completed 
        // There is a single instance of the PosModel for each Front-End instance, it is usually called
        // 'pos' and is available to all widgets extending PosWidget.
    
         module.PosModel = pos_base.PosModel.extend({
            initialize: function(session, attributes) {
                Backbone.Model.prototype.initialize.call(this, attributes);
                var  self = this;
                this.session = session;                 
                this.ready = $.Deferred();                          // used to notify the GUI that the PosModel has loaded all resources
                this.flush_mutex = new $.Mutex();                   // used to make sure the orders are sent to the server once at time
    
                this.barcode_reader = new pos_base.BarcodeReader({'pos': this});  // used to read barcodes
                this.proxy = new pos_base.ProxyDevice();              // used to communicate to the hardware devices via a local proxy
                this.db = new module.CF_PosLS();                       // a database used to store the products and categories
                this.db.clear('products','categories');
                this.debug = jQuery.deparam(jQuery.param.querystring()).debug !== undefined;    //debug mode 
    
                // default attributes values. If null, it will be loaded below.
                this.set({
                    'nbr_pending_operations': 0,    
    
                    'currency':         {symbol: '$', position: 'after'},
                    'shop':             null, 
                    'company':          null,
                    'user':             null,   // the user that loaded the pos
                    'user_list':        null,   // list of all users
                    'partner_list':     null,   // list of all partners with an ean
                    'cashier':          null,   // the logged cashier, if different from user
                    'customers':        new module.CustomerCollection(),
                    'orders':           new pos_base.OrderCollection(),
                    //this is the product list as seen by the product list widgets, it will change based on the category filters
                    'products':         new pos_base.ProductCollection(), 
                    'cashRegisters':    null, 
    
                    'bank_statements':  null,
                    'taxes':            null,
                    'pos_session':      null,
                    'pos_config':       null,
                    'units':            null,
                    'units_by_id':      null,
                    'pricelist':        null,
    
                    'selectedOrder':    null,
                });
    
                this.get('orders').bind('remove', function(){ self.on_removed_order(); });
                
                // We fetch the backend data on the server asynchronously. this is done only when the pos user interface is launched,
                // Any change on this data made on the server is thus not reflected on the point of sale until it is relaunched. 
                // when all the data has loaded, we compute some stuff, and declare the Pos ready to be used. 
                $.when(this.load_server_data())
                    .done(function(){
                        //self.log_loaded_data(); //Uncomment if you want to log the data to the console for easier debugging
                        self.ready.resolve();
                    }).fail(function(){
                        //we failed to load some backend data, or the backend was badly configured.
                        //the error messages will be displayed in PosWidget
                        self.ready.reject();
                    });
            },
            
            // loads all the needed data on the sever. returns a deferred indicating when all the data has loaded. 
            load_server_data: function(){
                var self = this;
    
                var loaded = self.fetch('res.users',['name','company_id'],[['id','=',this.session.uid]]) 
                    .then(function(users){
                        self.set('user',users[0]);
    
                        return self.fetch('res.company',
                        [
                            'currency_id',
                            'email',
                            'website',
                            'company_registry',
                            'vat',
                            'name',
                            'phone',
                            'partner_id',
                        ],
                        [['id','=',users[0].company_id[0]]]);
                    }).then(function(companies){
                        self.set('company',companies[0]);
    
                        return self.fetch('res.partner',['contact_address'],[['id','=',companies[0].partner_id[0]]]);
                    }).then(function(company_partners){
                        self.get('company').contact_address = company_partners[0].contact_address;
    
                        return self.fetch('product.uom', null, null);
                    }).then(function(units){
                        self.set('units',units);
                        var units_by_id = {};
                        for(var i = 0, len = units.length; i < len; i++){
                            units_by_id[units[i].id] = units[i];
                        }
                        self.set('units_by_id',units_by_id);
                        
                        return self.fetch('product.packaging', null, null);
                    }).then(function(packagings){
                        self.set('product.packaging',packagings);
                        
                        return self.fetch('res.users', ['name','ean13'], [['ean13', '!=', false]]);
                    }).then(function(users){
                        self.set('user_list',users);
    
                        return self.fetch('res.partner', ['name','ean13'], [['ean13', '!=', false]]);
                    }).then(function(partners){
                        self.set('partner_list',partners);
                        console.log('Loaded partners:',partners);
    
                        return self.fetch('res.partner', ['name','vat','email','phone','mobile'], [['customer', '=', true]]);
                    }).then(function(customers){
                        self.db.add_customers(customers);
    
                        return self.fetch('account.tax', ['amount', 'price_include', 'type']);
                    }).then(function(taxes){
                        self.set('taxes', taxes);
    
                        return self.fetch(
                            'pos.session', 
                            ['id', 'journal_ids','name','user_id','config_id','start_at','stop_at'],
                            [['state', '=', 'opened'], ['user_id', '=', self.session.uid]]
                        );
                    }).then(function(sessions){
                        self.set('pos_session', sessions[0]);
    
                        return self.fetch(
                            'pos.config',
                            ['name','journal_ids','shop_id','journal_id',
                             'iface_self_checkout', 'iface_led', 'iface_cashdrawer',
                             'iface_payment_terminal', 'iface_electronic_scale', 'iface_barscan', 'iface_vkeyboard',
                             'iface_print_via_proxy','iface_cashdrawer','state','sequence_id','session_ids'],
                            [['id','=', self.get('pos_session').config_id[0]]]
                        );
                    }).then(function(configs){
                        var pos_config = configs[0];
                        self.set('pos_config', pos_config);
                        self.iface_electronic_scale    =  !!pos_config.iface_electronic_scale;  
                        self.iface_print_via_proxy     =  !!pos_config.iface_print_via_proxy;
                        self.iface_vkeyboard           =  !!pos_config.iface_vkeyboard; 
                        self.iface_self_checkout       =  !!pos_config.iface_self_checkout;
                        self.iface_cashdrawer          =  !!pos_config.iface_cashdrawer;
    
                        return self.fetch('sale.shop',[],[['id','=',pos_config.shop_id[0]]]);
                    }).then(function(shops){
                        self.set('shop',shops[0]);
    
                        return self.fetch('product.pricelist',['currency_id'],[['id','=',self.get('shop').pricelist_id[0]]]);
                    }).then(function(pricelists){
                        self.set('pricelist',pricelists[0]);
    
                        return self.fetch('res.currency',['symbol','position','rounding','accuracy'],[['id','=',self.get('pricelist').currency_id[0]]]);
                    }).then(function(currencies){
                        self.set('currency',currencies[0]);
    
                        return self.fetch('product.packaging',['ean','product_id']);
                    }).then(function(packagings){
                        self.db.add_packagings(packagings);
    
                        return self.fetch('pos.category', ['id','name','parent_id','child_id','image'])
                    }).then(function(categories){
                        self.db.add_categories(categories);
    
                        return self.fetch(
                            'product.product', 
                            ['name', 'list_price','price','pos_categ_id', 'taxes_id', 'ean13', 'default_code',
                             'to_weight', 'uom_id', 'uos_id', 'uos_coeff', 'mes_type', 'description_sale', 'description'],
                            [['sale_ok','=',true],['available_in_pos','=',true]],
                            {pricelist: self.get('shop').pricelist_id[0]} // context for price
                        );
                    }).then(function(products){
                        self.db.add_products(products);
    
                        return self.fetch(
                            'account.bank.statement',
                            ['account_id','currency','journal_id','state','name','user_id','pos_session_id'],
                            [['state','=','open'],['pos_session_id', '=', self.get('pos_session').id]]
                        );
                    }).then(function(bank_statements){
                        var journals = new Array();
                        _.each(bank_statements,function(statement) {
                            journals.push(statement.journal_id[0])
                        });
                        self.set('bank_statements', bank_statements);
                        return self.fetch('account.journal', undefined, [['id','in', journals]]);
                    }).then(function(journals){
                        self.set('journals',journals);
    
                        // associate the bank statements with their journals. 
                        var bank_statements = self.get('bank_statements');
                        for(var i = 0, ilen = bank_statements.length; i < ilen; i++){
                            for(var j = 0, jlen = journals.length; j < jlen; j++){
                                if(bank_statements[i].journal_id[0] === journals[j].id){
                                    bank_statements[i].journal = journals[j];
                                    bank_statements[i].self_checkout_payment_method = journals[j].self_checkout_payment_method;
                                }
                            }
                        }
                        self.set({'cashRegisters' : new pos_base.CashRegisterCollection(self.get('bank_statements'))});
                    });
            
                return loaded;
            },
        });
    
    
    
         module.Order = pos_base.Order.extend({
            initialize: function(attributes){
                this._super(attributes);
                this.set({
                    client:         null,
                });
            },
           
            // the client related to the current order.
            set_client: function(client){
                this.set('client',client);
            },
            get_client: function(){
                return this.get('client');
            },
            get_client_name: function(){
                var client = this.get('client');
                return client ? client.name : "";
            },
            
            export_for_printing: function(){
                var orderlines = [];
                this.get('orderLines').each(function(orderline){
                    orderlines.push(orderline.export_for_printing());
                });
    
                var paymentlines = [];
                this.get('paymentLines').each(function(paymentline){
                    paymentlines.push(paymentline.export_for_printing());
                });
                var client  = this.get('client');
                var cashier = this.pos.get('cashier') || this.pos.get('user');
                var company = this.pos.get('company');
                var shop    = this.pos.get('shop');
                var date = new Date();
                var client  = this.get('client');
    
                return {
                    orderlines: orderlines,
                    paymentlines: paymentlines,
                    subtotal: this.getSubtotal(),
                    total_with_tax: this.getTotalTaxIncluded(),
                    total_without_tax: this.getTotalTaxExcluded(),
                    total_tax: this.getTax(),
                    total_paid: this.getPaidTotal(),
                    total_discount: this.getDiscountTotal(),
                    change: this.getChange(),
                    name : this.getName(),
                    client: client ? client.name : null ,
                    invoice_id: null,   //TODO
                    cashier: cashier ? cashier.name : null,
                    date: { 
                        year: date.getFullYear(), 
                        month: date.getMonth(), 
                        date: date.getDate(),       // day of the month 
                        day: date.getDay(),         // day of the week 
                        hour: date.getHours(), 
                        minute: date.getMinutes() 
                    }, 
                    company:{
                        email: company.email,
                        website: company.website,
                        company_registry: company.company_registry,
                        contact_address: company.contact_address, 
                        vat: company.vat,
                        name: company.name,
                        phone: company.phone,
                    },
                    shop:{
                        name: shop.name,
                    },
                    currency: this.pos.get('currency'),
                    client: client ? client.name : null ,
                };
            },
            exportAsJSON: function() {
                var orderLines, paymentLines;
                orderLines = [];
                (this.get('orderLines')).each(_.bind( function(item) {
                    return orderLines.push([0, 0, item.export_as_JSON()]);
                }, this));
                paymentLines = [];
                (this.get('paymentLines')).each(_.bind( function(item) {
                    return paymentLines.push([0, 0, item.export_as_JSON()]);
                }, this));
                var client = this.pos.get('selectedOrder').get('client');
                return {
                    name: this.getName(),
                    amount_paid: this.getPaidTotal(),
                    amount_total: this.getTotalTaxIncluded(),
                    amount_tax: this.getTax(),
                    amount_return: this.getChange(),
                    lines: orderLines,
                    statement_ids: paymentLines,
                    pos_session_id: this.pos.get('pos_session').id,
                    //partner_id: this.get('client') ? this.get('client').id : undefined,
                    user_id: this.pos.get('cashier') ? this.pos.get('cashier').id : this.pos.get('user').id,
                    partner_id: client ? client.id : undefined,
                };
            },
        });
    
    
        
    
        /*
         The numpad handles both the choice of the property currently being modified
         (quantity, price or discount) and the edition of the corresponding numeric value.
         */
        
        module.Customer = Backbone.Model.extend({
        });
        module.CustomerCollection = Backbone.Collection.extend({
            model: module.Customer,
        });
    }
    Donc pour résumer, au chargement du POS, les 3 fichiers sont chargés dans l'ordre :
    1-) models.js original
    2-) models.js de l'autre module
    3-) models.js de mon module

    ce qui est bizarre c'est que meme si mon fichier est chargé en dernier, le champ que j'ai ajouté est écrasé par la surcharge de l'autre module et sur le POS on lit un 'undefined' à la place de mon champ.

    Mes questions :
    1-) Existe t -il un moyen d'empecher le chargement d'un fichier provenant d'un autre modules?
    2-) Est-ce la bonne manière de surcharger une classe en js? cette méthode marche mais le problème c'est que je réecris totalement la classe en y ajoutant ma modif ce qui me parait assez lourd. et en plus cette classe est de ce fait appelée 3 fois

    Je tiens déja à vous remercier si vous avez lu jusqu'ici (pas grand monde ne l'a fait à mon avis) et j'espère que vous pourrez m'apporter des solutions.

    Cordialement,
    N'oubliez pas de marquer vos discussions
    Si une réponse vous a été utile pensez à voter Pour

  2. #2
    Expert confirmé
    Avatar de N1bus
    Homme Profil pro
    Dev. Web & OpenERP
    Inscrit en
    Janvier 2003
    Messages
    2 827
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 59
    Localisation : France, Seine et Marne (Île de France)

    Informations professionnelles :
    Activité : Dev. Web & OpenERP
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Janvier 2003
    Messages : 2 827
    Points : 5 673
    Points
    5 673
    Par défaut
    Bonjour,
    Et qu'apporte le module qui se charge en deuxième dans le POS?
    A quoi sert il?

  3. #3
    Membre habitué

    Homme Profil pro
    Developpeur Web & Odoo
    Inscrit en
    Novembre 2010
    Messages
    87
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Developpeur Web & Odoo
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Novembre 2010
    Messages : 87
    Points : 164
    Points
    164
    Billets dans le blog
    3
    Par défaut
    Citation Envoyé par N1bus Voir le message
    Bonjour,
    Et qu'apporte le module qui se charge en deuxième dans le POS?
    A quoi sert il?
    Merci pour la réponse rapide et désolé pour le retard,

    Le deuxième module permet d'afficher le prix minimum sur les produits en plus du prix normal de vente. Le champ prix minimum est ajouté dans le modèle des produits et recupéré dans le POS comme je l'ai indiqué plus haut (il s'agit du champ min_sale_price) :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    return self.fetch(
                            'product.product', 
                            ['name', 'min_sale_price', 'list_price','price','pos_categ_id', 'taxes_id', 'ean13', 'default_code',
                             'to_weight', 'uom_id', 'uos_id', 'uos_coeff', 'mes_type', 'description_sale', 'description'],
                            [['sale_ok','=',true],['available_in_pos','=',true]],
                            {pricelist: self.get('shop').pricelist_id[0]} // context for price
                        );
    Cela est fait pour permettre aux vendeurs de pouvoir modifier le prix de vente des produits(au cas ou le client marchande par exemple) selon un pourcentage de réduction qui leur est accordé. un controle est fait pour les empecher de vendre à un prix inférieur au prix minimum.
    N'ayant pas un très bon niveau en Js, je me suis contenté de copier intégralement la classe et d'ajouter ce champ à cette ligne dans le fetch de product.product. Si vous avez une meilleure méthode pour ajouter ce champ je vous remercie d'avance.
    N'oubliez pas de marquer vos discussions
    Si une réponse vous a été utile pensez à voter Pour

  4. #4
    Membre habitué

    Homme Profil pro
    Developpeur Web & Odoo
    Inscrit en
    Novembre 2010
    Messages
    87
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Developpeur Web & Odoo
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Novembre 2010
    Messages : 87
    Points : 164
    Points
    164
    Billets dans le blog
    3
    Par défaut Résolu
    Je clôture le sujet vu qu'il n'est plus d'actualité. Une réponse m'avait été donnée ici (pour ceux qui aurait le même problème un jour quoique avec les amélioration sur la V8 je ne crois pas )
    N'oubliez pas de marquer vos discussions
    Si une réponse vous a été utile pensez à voter Pour

+ Répondre à la discussion
Cette discussion est résolue.

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo