From: Rafael C. <raf...@gm...> - 2015-02-11 22:15:52
|
Hi, Thank you Wertthey. Very interesting. Barcodes are very useful in several processes and they don't need special devices (an android smarphone with ZXing's barcode scanner does the job!). In the past, we worked to have labels with barcode for products and for product bins. It helps a lot in inventory control and in picking/packing process. We used Folke Ashberg's PHP-Barcode. Today, we are looking for moving the code to one of the libraries used by webERP: 1. Tomáš Horáček's BarcodePack; or 2. Nicola Asuni's TCPDF (http://www.tcpdf.org/). TCPDF is a library used in webERP's PDF output. It has 1D barcode in HTML, PNG, SVG and SVGI formats. Also, it has datamatrix, pdf417 and qrcode 2D barcodes; all in HTML, PNG, SVG and SVGI formats. Best regards, Rafael. 2015-02-11 14:27 GMT-06:00 <ph...@lo...>: > There is already a barcode library bundled with webERP see > includes/barcodepack > > http://www.barcodepack.com > > Which looks to be capable of producing qr codes. I hate to add duplicate > code and would rather reuse what we have than add additional libraries. > Maybe your label could be modified to use this class? > > Phil > > On 2015-02-11 09:36, wertthey wrote: > > Over the last few years I keep adding the same code each revision I > > upgrade I > > think that it is very helpful and would like to share it. It uses code > > from > > > > FROM > > > > http://phpqrcode.sourceforge.net/ > > > > http://phpqrcode.sourceforge.net/examples/index.php > > > > > > * PHP QR Code is distributed under LGPL 3 > > * Copyright (C) 2010 Dominik Dzienia > > > > > > > > I do understand that there is a whole label feature, but it really > > doesn't > > really work well for us. When I send our employees out to the > > worksite on > > a job, they where loosing (not accounting) for product that they > > installed. > > We would end up with a handful of postit notes and paper scraps of > > product > > that they used at the client (if we were lucky). [P.S. Almost never can > > we > > cut a sales order before sending out the employee. They never know > > what > > they need until they get there] It was a mess. > > > > So I added this to help us label EVERYTHING that we receive. When we > > receive the product in shipping we add a label that allows us to > > quickly > > identify the product. This also allows us to have something that our > > employees in the field can quickly capture on the cell phones (bar-code > > box > > scan app works well, and they can then email the list to our person > > that > > does the invoicing) We are no longer missing product and it allows us > > to > > quickly to invoice. > > > > > > So during our receiving process................................... > > > > > > As shipping receives the product. We have them count the items out of > > the > > box and then Enter the "This Delivery Quantity" At that time they > > click on > > the Item code, which opens a new unique (Not a Blank) target window to > > show > > the label. Rather than the photo. > > > > < > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/GoodsReceived.jpg > > > > > > > > > > To make this work, I modified the follow line to GoodsReceived.php > > below > > the jwp > > > > ####MODIFICATION FOR THE GoodsReceived.php > > ############################## > > > > > > ####MODIFICATION FOR THE GoodsReceived.php > > ############################## > > > > <http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/label.jpg> > > > > this label is really nice as we have a few dymo labelwriter 400 which > > can > > print it on a on cheap address labels. The shipping person just hits > > print > > in the browser and chooses the number of copies. no pdf etc. Just > > print. > > > > If for some reason we find a part in the stock room that does not have > > a > > label, I have modified the SelectProduct.php page so that while you are > > looking at the item you can print a label. > > > > < > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/SelectProduct.jpg > > > > > > which opens the label in its own page. > > > > < > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/labelPower.jpg > > > > > > > > To make this work, I modified the follow line to SelectProduct.php > > below > > the jwp > > > > ####MODIFICATION FOR THE SelectProduct.php > > ############################## > > > > > > > > ####MODIFICATION FOR THE SelectProduct.php > > ############################## > > > > > > the code from http://phpqrcode.sourceforge.net/ resides for me under > > > > /qrcode/phpqrcode/ > > > > > > where I modified the index.php that came with the phpqrcode. > > from (Copyright (C) 2010 Dominik Dzienia ) so it looks like > > > > > > ####MODIFICATION FOR THE LABEL index.php ############################## > > > > > > > > ####MODIFICATION FOR THE LABEL index.php ############################## > > > > > > It would be nice to be able to have a setting for both the label image > > size > > pixels and the qrcode size (1-5) in setup System Parameters since the > > description and the part number are already limited in size it works > > out > > nicely. > > > > > > I hope this helps someone and I would hope even more, it may be added > > to > > future versions. > > > > > > > > > > > > ----- > > Using weberp since 2004, Thanks for all your hard work! > > -- > > View this message in context: > > > http://weberp-accounting.1478800.n4.nabble.com/For-Consideration-Added-qrcode-for-part-labeling-tp4658077.html > > Sent from the web-ERP-developers mailing list archive at Nabble.com. > > > > > ------------------------------------------------------------------------------ > > Dive into the World of Parallel Programming. The Go Parallel Website, > > sponsored by Intel and developed in partnership with Slashdot Media, is > > your > > hub for all things parallel software development, from weekly thought > > leadership blogs to news, videos, case studies, tutorials and more. > > Take a > > look and join the conversation now. http://goparallel.sourceforge.net/ > > _______________________________________________ > > Web-erp-developers mailing list > > Web...@li... > > https://lists.sourceforge.net/lists/listinfo/web-erp-developers > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming. The Go Parallel Website, > sponsored by Intel and developed in partnership with Slashdot Media, is > your > hub for all things parallel software development, from weekly thought > leadership blogs to news, videos, case studies, tutorials and more. Take a > look and join the conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > Web-erp-developers mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/web-erp-developers > |