我想在内部参考字段中输入条形码并扫描PoS中的条形码。 我在代码中看到它应该已经这样做,但每当我在内部引用(default_code)字段中放入EAN13条形码时,PoS都无法识别它。
我在我的代码中放了一个.encoding的打印件,它始终返回'EAN13',任何想法是如何确定的?或者我如何解决这个问题,谢谢!
来自point_of_sale的Views.JS代码:
scan_product: function(parsed_code){
var self = this;
var selectedOrder = this.get('selectedOrder');
console.log(parsed_code.encoding)
console.log(parsed_code)
if(parsed_code.encoding === 'ean13'){
var product = this.db.get_product_by_ean13(parsed_code.base_code);
}else if(parsed_code.encoding === 'reference'){
var product = this.db.get_product_by_reference(parsed_code.code);
}
if(!product){
return false;
}