如何使用Nodejs打印lbl文件?

时间:2017-03-16 15:07:07

标签: javascript node.js printing thermal-printer

我目前正在尝试使用Nodejs打印.lbl文件。我一直在npm和谷歌上挖掘但是,我不太确定什么是最好的路线。我正在考虑修改一个npm以合并我需要的打印机。但是,如果有一般的NPM会更好。

任何感兴趣的人的背景信息: 我想使用我从下拉列表中选择的打印机。一旦选择调用.lbl文件并从我的打印机下拉框旁边的框中打印正确的数量。

我需要在打印前用我在屏幕上其他位置选择的各种内容替换标签上的某些值。

我在这里使用Datamax-O&#neil打印机,但在其他地方可能有不同的打印机。

我向你提问: 是否有人推荐的节点包?我查看了node-printer,cordova-plugin-thermal-printer和dymo以及更多内容。列出的三个似乎是正确的方向。

你知道我可以看到的任何可能指向正确方向的例子吗?

很抱歉,如果这是一个重复的问题,我感谢所有的帮助,并提前感谢您。

安东尼

1 个答案:

答案 0 :(得分:0)

我最终这样做了。虽然目前它仍在进行中,但它会给任何可能遇到同样问题的人提供一些帮助,或者至少可能会给你某种方向。我使用这个tool来帮助我更换部件。希望它有所帮助。

const cmd = require('node-cmd'),
  fs = require('fs');

print: (entity) => {
pool.open(cn, (err, conn) => {
    let quantityToPrint = entity.quantityToPrint; //Get Quantity from inputbox

    let getNeededData = () => {
        return new Promise((resolve, reject) => {
            sql = `select * from Table where Blah = 'BlahBlah'`

            conn.query(sql, (err, data) => {
                var obj = {};
                obj.ReplacementValue1 = (data.length > 0 && typeof data[0].ReplacementValue1 !== 'undefined') ? data[0].ReplacementValue1 : '';
                obj.ReplacementValue2 = (data.length > 0 && typeof data[0].ReplacementValue2 !== 'undefined') ? data[0].ReplacementValue2 : '';
                obj.ReplacementValue3 = (data.length > 0 && typeof data[0].ReplacementValue3 !== 'undefined') ? data[0].ReplacementValue3 : '';
                resolve(obj);
            })
        })
    }
    let getPrintLabel = (obj) => {
        return new Promise((resolve, reject) => {

            let printer = entity.printer, //Printer I call from a drop down
                labelFile = 'labels/lablefile.lbl',
                inputLine;
            var filename = 'tempLabel_' + new Date().getTime() + '.lbl';
            var gvOutFile = 'labels/temp/templabel_' + new Date().getTime() + '.lbl';

            fs.createReadStream(labelFile).pipe(fs.createWriteStream(gvOutFile, { options: { flags: 'r+', mode: 666, encoding: 'utf8' } }));
            setTimeout(function () {
                var data = fs.readFileSync(gvOutFile, 'utf8');
                var newValue = data.replace(/(\[ValueToReplace1\])/gim, month + '/' + day + '/' + years)
                    .replace(/(\[ValueToReplace1\])/gim, obj.ReplacementValue1)
                    .replace(/(\[ValueToReplace2\])/gim, obj.ReplacementValue2)
                    .replace(/(\[ValueToReplace3\])/gim, obj.ReplacementValue3)
                    //NOTE, You may need to change how you are replacing. I replace brackets in my lbl file.

                fs.writeFileSync(gvOutFile, newValue, { options: { flags: 'r+', mode: 666, encoding: 'utf8' } });
                cmd.run('lp -s -c -d ' + printer + ' ' + gvOutFile);
            }, (2 * 1000))// 2 Seconds

            resolve();
        })
    }
    for (var item = 0, x = quantityToPrint; item < x; item++) {
        getNeededData().then(getPrintLabel).then((data) => {
            pool.close(function () { });
            entity.res.json(data);
        })
    }
})
}