From: wertthey <jp...@nu...> - 2015-02-11 16:02:17
|
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 me. When I send people out on a job, they where loosing (not accounting) for product that they installed. So when we receive the product we add a label that allows us to quickly identify the product, and have something that our field people's cell phones can record (bar-code box scan app works well) as a list as they use the product which allows us to quickly to invoice. So during our receiving processes. As shipping receives the product. We have them count the items Enter the "This Delivery Quantity" then click on the Item code, which opens a new target window to show the label. <http://weberp-accounting.1478800.n4.nabble.com/file/n4658072/GoodsReceived.jpg> ----- 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-tp4658072.html Sent from the web-ERP-developers mailing list archive at Nabble.com. |
From: wertthey <jp...@nu...> - 2015-02-11 16:42:39
|
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. |
From: <ph...@lo...> - 2015-02-11 20:27:52
|
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 |
From: gilberto d. s. a. <gs...@gm...> - 2015-02-12 04:27:55
|
hi. this url barcodepack.com do not exist (from brazil we do not find whois barcodepack.com). I find this project on sourceforge [1] it is same that we have inside weberp/includes. Good examples on tcpdf.org [2]. thanks. [1] http://sourceforge.net/projects/barcodepack/files/?source=directory [2] http://www.tcpdf.org/examples.php 2015-02-11 18:27 GMT-02: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 > -- gilberto dos santos alves +55(11)9-8646-5049 sao paulo - sp - brasil |
From: wertthey <jp...@nu...> - 2015-02-12 05:13:41
|
Actually I thought that barcode pack is not capable of QR bar code. From what we have noticed qrcode is much quicker to scan, can hold more data and less prone to mis-scan. ----- 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-tp4658077p4658088.html Sent from the web-ERP-developers mailing list archive at Nabble.com. |
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 > |
From: wertthey <jp...@nu...> - 2015-02-12 05:22:35
|
Thanks I was un-aware of that. Something about weberp, mostly in reports, I got tired of needing to worry about waiting for pdf's to generate. It is so quick to have it in html code and print straight from a browser. When working with parts, my people may be going through 1000's during a cycle count. Literally hitting print and having a sticker in under 2 secs makes a difference. Rather then popping up a pdf that depending on what update goes on the browser may or may not open in the browser, you may need to save it.... To me something like this seems simple. ----- 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-tp4658077p4658089.html Sent from the web-ERP-developers mailing list archive at Nabble.com. |
From: gilberto d. s. a. <gs...@gm...> - 2015-02-12 02:10:13
|
Please could some one point me one single example o barcode (ean13, code 39, upc-a, QR) inside weberp available on sourceforce? thanks for you time. 2015-02-11 20:15 GMT-02:00 Rafael Chacón <raf...@gm...>: > 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 >> > > > > ------------------------------------------------------------------------------ > 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 > > -- gilberto dos santos alves +55(11)9-8646-5049 sao paulo - sp - brasil |
From: <ph...@lo...> - 2015-02-12 02:22:33
|
Well it looks like there is some problem with this script... http://www.weberp.org/weberp/Labels.php Should allow you to define labels with a number of fields - with one option a barcode On 2015-02-11 19:10, gilberto dos santos alves wrote: > Please could some one point me one single example o barcode (ean13, > code 39, upc-a, QR) inside weberp available on sourceforce? thanks for > you time. > > 2015-02-11 20:15 GMT-02:00 Rafael Chacón > <raf...@gm...>: > >> 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/ [11]). >> >> 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 [1] >>> >>> 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/ [2] >>>> >>>> http://phpqrcode.sourceforge.net/examples/index.php [3] >>>> >>>> >>>> * 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 >>> [4]> >>>> >>>> >>>> >>>> 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 >>> [5]> >>>> >>>> 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 >>> [6]> >>>> >>>> which opens the label in its own page. >>>> >>>> >>> >> > <http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/labelPower.jpg >>> [7]> >>>> >>>> >>>> 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/ [2] 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 >>> [8] >>>> 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/ [9] >>>> _______________________________________________ >>>> Web-erp-developers mailing list >>>> Web...@li... >>>> https://lists.sourceforge.net/lists/listinfo/web-erp-developers >>> [10] >>> >>> >> > ------------------------------------------------------------------------------ >>> 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/ [9] >>> _______________________________________________ >>> Web-erp-developers mailing list >>> Web...@li... >>> https://lists.sourceforge.net/lists/listinfo/web-erp-developers >>> [10] >> >> > ------------------------------------------------------------------------------ >> 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/ [9] >> _______________________________________________ >> Web-erp-developers mailing list >> Web...@li... >> https://lists.sourceforge.net/lists/listinfo/web-erp-developers >> [10] > > -- > > gilberto dos santos alves > +55(11)9-8646-5049 > sao paulo - sp - brasil > > > > Links: > ------ > [1] http://www.barcodepack.com > [2] http://phpqrcode.sourceforge.net/ > [3] http://phpqrcode.sourceforge.net/examples/index.php > [4] > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/GoodsReceived.jpg > [5] > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/label.jpg > [6] > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/SelectProduct.jpg > [7] > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/labelPower.jpg > [8] > http://weberp-accounting.1478800.n4.nabble.com/For-Consideration-Added-qrcode-for-part-labeling-tp4658077.html > [9] http://goparallel.sourceforge.net/ > [10] https://lists.sourceforge.net/lists/listinfo/web-erp-developers > [11] http://www.tcpdf.org/ > > ------------------------------------------------------------------------------ > 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 |
From: gilberto d. s. a. <gs...@gm...> - 2015-02-16 23:42:05
|
Today i have make tests on label.php on weberp.org and downloaded and install new environment with weberp 4.12.2. Im my testes labels.php nor PDFPrintLabel.php have worked. Anyone already used on production this functions with sucess? inside this or old versions of weberp? Standard procedures and forms to labels have 3 columns for labels on a roll. (rolo em portugues) or a4 / letter layout. How could we increment alternatives for weberp users print barcode, qrcode? regards. 2015-02-12 0:22 GMT-02:00 <ph...@lo...>: > Well it looks like there is some problem with this script... > > http://www.weberp.org/weberp/Labels.php > > Should allow you to define labels with a number of fields - with one > option a barcode > > > On 2015-02-11 19:10, gilberto dos santos alves wrote: > > Please could some one point me one single example o barcode (ean13, > > code 39, upc-a, QR) inside weberp available on sourceforce? thanks for > > you time. > > > > 2015-02-11 20:15 GMT-02:00 Rafael Chacón > > <raf...@gm...>: > > > >> 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/ [11]). > >> > >> 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 [1] > >>> > >>> 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/ [2] > >>>> > >>>> http://phpqrcode.sourceforge.net/examples/index.php [3] > >>>> > >>>> > >>>> * 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 > >>> [4]> > >>>> > >>>> > >>>> > >>>> 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 > >>> [5]> > >>>> > >>>> 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 > >>> [6]> > >>>> > >>>> which opens the label in its own page. > >>>> > >>>> > >>> > >> > > < > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/labelPower.jpg > >>> [7]> > >>>> > >>>> > >>>> 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/ [2] 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 > >>> [8] > >>>> 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/ [9] > >>>> _______________________________________________ > >>>> Web-erp-developers mailing list > >>>> Web...@li... > >>>> https://lists.sourceforge.net/lists/listinfo/web-erp-developers > >>> [10] > >>> > >>> > >> > > > ------------------------------------------------------------------------------ > >>> 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/ [9] > >>> _______________________________________________ > >>> Web-erp-developers mailing list > >>> Web...@li... > >>> https://lists.sourceforge.net/lists/listinfo/web-erp-developers > >>> [10] > >> > >> > > > ------------------------------------------------------------------------------ > >> 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/ [9] > >> _______________________________________________ > >> Web-erp-developers mailing list > >> Web...@li... > >> https://lists.sourceforge.net/lists/listinfo/web-erp-developers > >> [10] > > > > -- > > > > gilberto dos santos alves > > +55(11)9-8646-5049 > > sao paulo - sp - brasil > > > > > > > > Links: > > ------ > > [1] http://www.barcodepack.com > > [2] http://phpqrcode.sourceforge.net/ > > [3] http://phpqrcode.sourceforge.net/examples/index.php > > [4] > > > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/GoodsReceived.jpg > > [5] > > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/label.jpg > > [6] > > > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/SelectProduct.jpg > > [7] > > > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/labelPower.jpg > > [8] > > > http://weberp-accounting.1478800.n4.nabble.com/For-Consideration-Added-qrcode-for-part-labeling-tp4658077.html > > [9] http://goparallel.sourceforge.net/ > > [10] https://lists.sourceforge.net/lists/listinfo/web-erp-developers > > [11] http://www.tcpdf.org/ > > > > > ------------------------------------------------------------------------------ > > 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 > -- gilberto dos santos alves +55(11)9-8646-5049 sao paulo - sp - brasil |
From: gilberto d. s. a. <gs...@gm...> - 2015-02-12 03:28:05
|
hummm. thanks. i will read this Labels and make tests to understand how this work and what is going on. regards. 2015-02-12 0:22 GMT-02:00 <ph...@lo...>: > Well it looks like there is some problem with this script... > > http://www.weberp.org/weberp/Labels.php > > Should allow you to define labels with a number of fields - with one > option a barcode > > > On 2015-02-11 19:10, gilberto dos santos alves wrote: > > Please could some one point me one single example o barcode (ean13, > > code 39, upc-a, QR) inside weberp available on sourceforce? thanks for > > you time. > > > > 2015-02-11 20:15 GMT-02:00 Rafael Chacón > > <raf...@gm...>: > > > >> 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/ [11]). > >> > >> 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 [1] > >>> > >>> 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/ [2] > >>>> > >>>> http://phpqrcode.sourceforge.net/examples/index.php [3] > >>>> > >>>> > >>>> * 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 > >>> [4]> > >>>> > >>>> > >>>> > >>>> 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 > >>> [5]> > >>>> > >>>> 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 > >>> [6]> > >>>> > >>>> which opens the label in its own page. > >>>> > >>>> > >>> > >> > > < > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/labelPower.jpg > >>> [7]> > >>>> > >>>> > >>>> 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/ [2] 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 > >>> [8] > >>>> 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/ [9] > >>>> _______________________________________________ > >>>> Web-erp-developers mailing list > >>>> Web...@li... > >>>> https://lists.sourceforge.net/lists/listinfo/web-erp-developers > >>> [10] > >>> > >>> > >> > > > ------------------------------------------------------------------------------ > >>> 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/ [9] > >>> _______________________________________________ > >>> Web-erp-developers mailing list > >>> Web...@li... > >>> https://lists.sourceforge.net/lists/listinfo/web-erp-developers > >>> [10] > >> > >> > > > ------------------------------------------------------------------------------ > >> 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/ [9] > >> _______________________________________________ > >> Web-erp-developers mailing list > >> Web...@li... > >> https://lists.sourceforge.net/lists/listinfo/web-erp-developers > >> [10] > > > > -- > > > > gilberto dos santos alves > > +55(11)9-8646-5049 > > sao paulo - sp - brasil > > > > > > > > Links: > > ------ > > [1] http://www.barcodepack.com > > [2] http://phpqrcode.sourceforge.net/ > > [3] http://phpqrcode.sourceforge.net/examples/index.php > > [4] > > > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/GoodsReceived.jpg > > [5] > > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/label.jpg > > [6] > > > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/SelectProduct.jpg > > [7] > > > http://weberp-accounting.1478800.n4.nabble.com/file/n4658077/labelPower.jpg > > [8] > > > http://weberp-accounting.1478800.n4.nabble.com/For-Consideration-Added-qrcode-for-part-labeling-tp4658077.html > > [9] http://goparallel.sourceforge.net/ > > [10] https://lists.sourceforge.net/lists/listinfo/web-erp-developers > > [11] http://www.tcpdf.org/ > > > > > ------------------------------------------------------------------------------ > > 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 > -- gilberto dos santos alves +55(11)9-8646-5049 sao paulo - sp - brasil |
From: wertthey <jp...@nu...> - 2015-02-12 05:25:25
|
It does work, although not pretty. That being said,... I am not coder...I have hacked it and it works. Any help in proper implementation would be nice. When I added the picture to the SelectProduct.php years back, I sent that in and someone who could code well cleaned it up for us. That worked as well, but it was a hack too. At that same time I tried to make it as clean as someone with my skills could make it.... If you have any questions I will do my best to help. ----- 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-tp4658077p4658090.html Sent from the web-ERP-developers mailing list archive at Nabble.com. |
From: gilberto d. s. a. <gs...@gm...> - 2015-02-11 18:35:55
|
+1 from me. Good Explanation. IMO this could be usable for: barcode (for example [1] we have modified this code and use inside weberp) too. regards. [1] http://www.barcodephp.com/ 2015-02-11 13:40 GMT-02:00 wertthey <jp...@nu...>: > 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 me. When I send people out on a job, they where > loosing (not accounting) for product that they installed. So when we > receive the product we add a label that allows us to quickly identify the > product, and have something that our field people's cell phones can record > (bar-code box scan app works well) as a list as they use the product which > allows us to quickly to invoice. > > > So during our receiving processes. > > > As shipping receives the product. We have them count the items Enter the > "This Delivery Quantity" > > then click on the Item code, which opens a new target window to show the > label. > > < > http://weberp-accounting.1478800.n4.nabble.com/file/n4658072/GoodsReceived.jpg > > > > > > ----- > 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-tp4658072.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 > -- gilberto dos santos alves +55(11)9-8646-5049 sao paulo - sp - brasil |