From: Mark B. <ma...@ga...> - 2006-12-04 16:04:46
|
Is anybody stored scanned images of receipts and associating them with customer invoices? I bill for expenses sometimes and would like to have a complete record on file. If not, any clever ideas for a way to do this without much fuss? I'd like to put images in the db, so the built-in backup function really get's me backup of all data. Thanks, m |
From: Mark L. <mar...@in...> - 2006-12-04 16:28:34
|
I just suggested almost the exact same thing on the feature request part of the SL website. I'd like to store PDFs of received POs from our customers and have them linked to our sales order.. Dieter didn't sound too interested. He said that would take up too much space in the db. He also suggested that you can store the scanned images on the server in the HTTP tree and put a hyperlink in the notes section of your transaction. Then, when you do a report, include the notes and you'll have a link to the scanned image. I agree with you though. I'd like it in the database with the safeguards the db provides above and beyond what the file system gives you (including backup). Mark On Dec 4, 2006, at 10:04 AM, Mark Bucciarelli wrote: > Is anybody stored scanned images of receipts and associating them > with customer invoices? I bill for expenses sometimes and would > like to have a complete record on file. > > If not, any clever ideas for a way to do this without much fuss? > > I'd like to put images in the db, so the built-in backup function > really get's me backup of all data. > > Thanks, > > m > > ---------------------------------------------------------------------- > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php? > page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > |
From: C. D. H. <Du...@Du...> - 2006-12-04 19:36:08
|
Mark Lubratt wrote: > I just suggested almost the exact same thing on the feature request > part of the SL website. I'd like to store PDFs of received POs from > our customers and have them linked to our sales order.. > > Dieter didn't sound too interested. He said that would take up too > much space in the db. He also suggested that you can store the > scanned images on the server in the HTTP tree and put a hyperlink in > the notes section of your transaction. Then, when you do a report, > include the notes and you'll have a link to the scanned image. > > I agree with you though. I'd like it in the database with the > safeguards the db provides above and beyond what the file system > gives you (including backup). > > Mark > > On Dec 4, 2006, at 10:04 AM, Mark Bucciarelli wrote: > > >> Is anybody stored scanned images of receipts and associating them >> with customer invoices? I bill for expenses sometimes and would >> like to have a complete record on file. >> >> If not, any clever ideas for a way to do this without much fuss? >> >> I'd like to put images in the db, so the built-in backup function >> really get's me backup of all data. >> >> Thanks >> I never understand the argument about storing images / blobs in the database. Yes, they are big. Yes, they do take up alot of space. But if you don't store them in the database, and you end up storing them on a share somewhere what are you saving? Just the overhead of the indices? Maybe a little more. And you're having to add more software into the mix to manage them. I'd gladly trade a little extra space to make something easier or to manage. While I don't want to store scanned images of receipts my vote would be to put them in the database. While we're at it allow images of parts, and explosion diagrams / parts lists for assemblies! Dunc |
From: Jason R. <jas...@gm...> - 2006-12-04 16:57:40
|
On Monday 04 December 2006 11:27, Mark Lubratt wrote: > On Dec 4, 2006, at 10:04 AM, Mark Bucciarelli wrote: > > Is anybody stored scanned images of receipts and associating them > > with customer invoices? I bill for expenses sometimes and would > > like to have a complete record on file. > > > > If not, any clever ideas for a way to do this without much fuss? If your server is linux, and your scanner is supported by sane (http://www.sane-project.org/), and connected to a linux machine, and you can get it all setup then a script with: scanimage | pnmtopng > /path/to/httpd-root/receipts/$sonum.png Could do the trick for you. (without much fuss :) ) Simply put the document on the scanner bed, associate a button in SL with that script, and will put the image anywhere you need. For most receipts, you'll probably want to add "--brightness=-25" to scanimage to darken it a bit. (depending on scanner model) Jason |
From: Ed W <li...@wi...> - 2006-12-05 18:26:58
|
Hi > associate a button in SL with that script, Do you have an example of how to do this without simply hacking the code? I wanted to do this via the various hooks provided, but couldn't quite figure out how to do it? Cheers Ed W |