odoo/addons/stock/static/src/js/widgets.js

259 lines
10 KiB
JavaScript
Raw Normal View History

function openerp_picking_widgets(instance){
var module = instance.stock;
module.PickingEditorWidget = instance.web.Widget.extend({
template: 'PickingEditorWidget',
init: function(parent,options){
this._super(parent,options);
},
get_header: function(){
var model = this.getParent();
return 'Picking: '+model.picking.name;
},
get_rows: function(){
var model = this.getParent();
var rows = [];
_.each( model.movelines, function(moveline){
rows.push({
cols: { product: moveline.product_id[1],
qty: moveline.product_qty,
rem: moveline.remaining_qty,
uom: moveline.product_uom[1],
loc: moveline.location_id[1],
stat: moveline.state
},
classes: (moveline.qty_remaining < 0 ? 'oe_invalid' : '')
});
});
return rows;
},
});
module.PackageEditorWidget = instance.web.Widget.extend({
template: 'PackageEditorWidget',
get_header: function(){
var model = this.getParent();
return model.current_package_id ? 'Current Operations for package: ' + model.current_package_id[1] : 'Current Operations';
},
get_rows: function(){
var model = this.getParent();
var rows = [];
_.each( model.operations, function(op){
if(model.current_package_id && op.package_id !== model.current_package_id){
return;
}
rows.push({
cols: {
product: op.product_id[1],
uom: op.product_uom ? product_uom[1] : '',
qty: op.product_qty,
}
});
});
return rows;
},
});
module.PackageSelectorWidget = instance.web.Widget.extend({
template: 'PackageSelectorWidget',
get_header: function(){
return this._header || 'Packages:';
},
get_rows: function(){
var model = this.getParent();
var rows = [];
_.each( model.packages, function(pack){
rows.push({
cols:{ pack: pack.name},
id: pack.id
});
});
return rows;
},
});
module.PickingMainWidget = instance.web.Widget.extend({
template: 'PickingMainWidget',
init: function(parent,params){
this._super(parent,params);
var self = this;
this.picking = null;
this.movelines = null;
this.operations = null;
this.current_package_id = instance.session.user_context.current_package_id;
window.pickwidget = this;
console.log('Action params:', params);
console.log('Session:',instance.session);
this.loaded = new instance.web.Model('stock.picking.in')
.query()
.all()
.then(function(picking_in){
self.picking = picking_in[0];
console.log('Picking In:',picking_in);
return new instance.web.Model('stock.move').call('read',[self.picking.move_lines, []]);
}).then(function(movelines){
self.movelines = movelines;
console.log('Move Lines:',movelines);
return new instance.web.Model('stock.pack.operation').call('read',[self.picking.pack_operation_ids, []]);
}).then(function(operations){
self.operations = operations;
console.log('Operations:',self.operations);
return new instance.web.Model('stock.quant.package').call('read',[self.picking.package_ids, []]);
}).then(function(packages){
self.packages = packages;
console.log('Packages:', self.packages);
});
},
start: function(){
var self = this;
instance.webclient.set_content_full_screen(true);
this.connect_barcode_scanner();
this.$('.js_pick_quit').click(function(){ self.quit(); });
this.$('.js_pick_pack').click(function(){ self.pack(); });
$.when(this.loaded).done(function(){
self.picking_editor = new module.PickingEditorWidget(self);
self.picking_editor.replace(self.$('.oe_placeholder_picking_editor'));
self.package_editor = new module.PackageEditorWidget(self);
self.package_editor.replace(self.$('.oe_placeholder_package_editor'));
self.package_selector = new module.PackageSelectorWidget(self);
self.package_selector.replace(self.$('.oe_placeholder_package_selector'));
});
return this._super();
},
scan: function(ean){
var self = this;
console.log('Scan: ',ean);
new instance.web.Model('stock.picking')
.call('get_barcode_and_return_todo_stuff', [self.picking.id, ean])
.then(function(todo){
_.each(todo.moves_to_update, function(update){
if(update[0] === 0){ // create a new line
console.log('New line:',update);
self.movelines.push(update[2]);
}else if(update[0] === 1){ // update a line
console.log('Update line:',update);
for(var i = 0; i < self.movelines.length; i++){
if( self.movelines[i].id === update[1]){
for(field in update[2]){
self.movelines[i][field] = update[2][field];
}
break;
}
}
}else if(update[0] === 2){ // remove a line
console.log('Remove line:',update);
for(var i = 0; i < self.movelines.length; i++){
if( self.movelines[i].id === update[1] ){
self.movelines.splice(i,1);
break;
}
}
}
});
return new instance.web.Model('stock.picking.in').call('read',[[self.picking.id],[]])
}).then(function(picking){
self.picking = picking[0];
console.log('New Picking: ',self.picking);
return new instance.web.Model('stock.pack.operation').call('read',[self.picking.pack_operation_ids, []])
}).then(function(operations){
console.log('New Operations: ',operations);
self.operations = operations;
return new instance.web.Model('stock.quant.package').call('read',[self.picking.package_ids, []]);
}).then(function(packages){
console.log('New Packages: ',packages);
self.packages = packages;
self.picking_editor.renderElement();
self.package_editor.renderElement();
self.package_selector.renderElement();
console.log('Updated the UI');
});
},
pack: function(){
var self = this;
console.log('Pack');
new instance.web.Model('stock.picking').call('action_pack',[[self.picking.id]])
.then(function(){
instance.session.user_context.current_package_id = false;
self.current_package_id = instance.session.user_context.current_package_id;
console.log('Context Reset');
return new instance.web.Model('stock.picking.in').call('read',[[self.picking.id],[]])
}).then(function(picking){
self.picking = picking[0];
console.log('New Picking: ',self.picking);
return new instance.web.Model('stock.pack.operation').call('read',[self.picking.pack_operation_ids, []])
}).then(function(operations){
console.log('New Operations: ',operations);
self.operations = operations;
return new instance.web.Model('stock.quant.package').call('read',[self.picking.package_ids, []]);
}).then(function(packages){
console.log('New Packages: ',packages);
self.packages = packages;
self.picking_editor.renderElement();
self.package_editor.renderElement();
self.package_selector.renderElement();
console.log('Updated the UI');
});
},
connect_barcode_scanner: function(){
var self =this;
var code = [];
var timestamp = 0;
$('body').delegate('','keyup',function(e){
if (e.keyCode >= 48 && e.keyCode < 58){
if(timestamp + 30 < new Date().getTime()){
code = [];
}
timestamp = new Date().getTime();
code.push(e.keyCode - 48);
if(code.length === 13){
self.scan(code.join(''));
code = [];
}
}else{
code = [];
}
});
},
disconnect_barcode_scanner: function(){
$('body').undelegate('', 'keyup')
},
quit: function(){
console.log('Quit');
disconnect_barcode_scanner();
instance.webclient.set_content_full_screen(false);
window.location = '/'; // FIXME THIS IS SHIT NIV WILL KILL YOU (BY MULTIPLE FACE-STABBING) IF YOU MERGE THIS IN TRUNK
},
});
}