products_common.js 406 Bytes
Newer Older
Administrator committed
1
function products_shelf_label_print (products, callback) {
2 3 4
    console.log('Demande impression etiquettes rayon');
    params = {products: JSON.stringify(products)};
    post_form('/products/shelf_labels', params, callback);
Administrator committed
5 6 7 8 9 10 11 12
}
/*
$.ajax({
            url: tools_server + "/products/label_print/"
            + updatedProducts[i].product_tmpl_id + "/"
            + updatedProducts[i].new_shelf_price
});
*/