can SC be used to create POS

Hi, i have one project in mind and i need to know if anyone has ever done it: can SC be used to create a Point Of sale system? like for a supermarket or retail shop?
Is possible to create a finger print scanner inside SC for login or validation?

I have already developed commercial restaurant management system with POS.

also developed another application using Fingerprint scanning for user authentication. Your choice of fingerprint sdk’s determine the level of integration you require though.

[QUOTE=luckyelms;26548]Hi, i have one project in mind and i need to know if anyone has ever done it: can SC be used to create a Point Of sale system? like for a supermarket or retail shop?
Is possible to create a finger print scanner inside SC for login or validation?[/QUOTE]

It’s possible, but you need to code.
We are developing a POS window using blanks apps.
For finger print didn’t tried, you need to use a device and his SDK to validate. If POS app will run on a machine with an independent apache, probably you will can communicate with the device. If not, Not sure if SDK will allow to communicate via JS. Other option is to develop a simple external application just to validate the user

hmmmmm why don’t you guys share your projects? even if not free, this is also good! after-all you’ve done your project for a customer and that was over, why don’t you earn more, financially or even by helping other?

I don’t have problem to share some piece of code, but understand thath I can’t show all I do. Some of our projects are own projects, and others are under outsourcing contracts. An you can understand, I can’t share/show projects thath are not “us” due to NDA

That is appreciated Giu, offcouse nobody will tell you to share specific projects or customers projects/contracts… that is 100% understood, i was thinking to have more examples like the documents library, the training project… and those which comes with SC, Im sure it will help a lot of people

you Giu are famous already, help people, so like other people who each one has specific need, then you are there to help, that is more than appreciated boss
meanwhile: i think you missed this one :smiley:
http://www.scriptcase.net/forum/showthread.php?6648-Multi-Upload-(Size-Limit)/page3

Giu,

Can you give hints, how to create button for pos using script case.
I might be working on car park system, but not sure whether to use straight html+php or Scriptcase.

Thank’s

First of all, this is a work in progress.It’s not finished, and we don’t worried yet about design, juts functionality.

Here are a link to a gif file showing POS.
http://1drv.ms/1nBRQYb

It’s composed mainly by 3 hardcoded files (2 blank apps, and a JS file) and other third party libs.
First blank app renders POS window and is responsible of layout. Second blank app, receives data via AJAX and acts as a “restful” API. JS file communicate the 2 blank apps between.

First blankapp, is mainly HTML + loading all JS libs.
Second blank app, it’s called via AJAX, and for example, when a petition loadDepartments is do it, returns all departments and paint it, with links ready, to call again the JS responsible to load products of this department

function cargaDepartamentos(){
	
	$ruta_imagenes = $_SESSION['scriptcase']['TPV']['glo_nm_path_imagens'] . "/departamentos/";
	$consulta = "SELECT * FROM departamentos";
	sc_lookup(datos, $consulta);
	
	$estructura='';
	
	foreach({datos} as $indice => $fila){
		if($fila[2]!='') {
			$imagen = '<img src="'.$ruta_imagenes.$fila[2].'"height=75px width=75px><br>';
			$estructura .= '<a href=# onclick="cargaProductos('.$fila[0].');return false;"><div class="cajasombra departamentos">'. $imagen .'</div></a>';
		} else {
			$imagen = '';
			$estructura .= '<a href=# onclick="cargaProductos('.$fila[0].');return false;"><div class="cajasombra departamentos" style="background-color:'.$fila[3].'"><p class="texto-vertical-align">'. $fila[1].'</p></div></a>';
		}
		
		
	}
	
	echo $estructura;
}

EDIT:
I forgot to mention that I record this GIF from my house, connecting to POS on remote location :wink:

Captura.JPG

looks cool.

Thank you

Its good, the calculator is Javacript?

yes, but we changed for other JS plugin, because doesn’t worked as we expected,and we changed for this: http://www.codeproject.com/Articles/13748/JavaScript-Virtual-Keyboard

[QUOTE=Giu;26807]First of all, this is a work in progress.It’s not finished, and we don’t worried yet about design, juts functionality.

Here are a link to a gif file showing POS.
http://1drv.ms/1nBRQYb

It’s composed mainly by 3 hardcoded files (2 blank apps, and a JS file) and other third party libs.
First blank app renders POS window and is responsible of layout. Second blank app, receives data via AJAX and acts as a “restful” API. JS file communicate the 2 blank apps between.

First blankapp, is mainly HTML + loading all JS libs.
Second blank app, it’s called via AJAX, and for example, when a petition loadDepartments is do it, returns all departments and paint it, with links ready, to call again the JS responsible to load products of this department

function cargaDepartamentos(){
	
	$ruta_imagenes = $_SESSION['scriptcase']['TPV']['glo_nm_path_imagens'] . "/departamentos/";
	$consulta = "SELECT * FROM departamentos";
	sc_lookup(datos, $consulta);
	
	$estructura='';
	
	foreach({datos} as $indice => $fila){
		if($fila[2]!='') {
			$imagen = '<img src="'.$ruta_imagenes.$fila[2].'"height=75px width=75px><br>';
			$estructura .= '<a href=# onclick="cargaProductos('.$fila[0].');return false;"><div class="cajasombra departamentos">'. $imagen .'</div></a>';
		} else {
			$imagen = '';
			$estructura .= '<a href=# onclick="cargaProductos('.$fila[0].');return false;"><div class="cajasombra departamentos" style="background-color:'.$fila[3].'"><p class="texto-vertical-align">'. $fila[1].'</p></div></a>';
		}
		
		
	}
	
	echo $estructura;
}

EDIT:
I forgot to mention that I record this GIF from my house, connecting to POS on remote location ;)[/QUOTE]

Hi Giuseppe!

i got an POS in the V7 with the ticket print with the report pdf… but now with the V8 the footer prints wrong, at the last line all in one line… do you have problems with the new TCPDF to print to PDF? i put in the footer section in the v7 all the totals etc… but on the TCPDF appears this. We try with differents methods but in the configuration screen nothing helps…

With a bit of immagination you can build all you want… ok add a shit ton of work too but… mostly immagination lol.

hi sempai,
we need a drink to imagine this far boss, it is still morning over here :smiley:

lol I would love to have a beer righ tnow but… =( gotta work… stupid life with the stupid bills and the stupid hunger lol

we share same vsion bro, we should meet ASAP :cool:

[QUOTE=adrian.arreola;35112]Hi Giuseppe!

i got an POS in the V7 with the ticket print with the report pdf… but now with the V8 the footer prints wrong, at the last line all in one line… do you have problems with the new TCPDF to print to PDF? i put in the footer section in the v7 all the totals etc… but on the TCPDF appears this. We try with differents methods but in the configuration screen nothing helps…[/QUOTE]

Hi Adrian,

Sorry, but we don’t print using PDF Report. We created our own lib as companion to escpos-php

Alguien tiene alguna experiencia con WebClintPrint.php ? que pueda compartir. lo tengo instalado pero no consigo implementar en el esciptcase

Thanks for your info - very interesting!

This link does not work for me!
Can you send again?
Thanks.

I will search on my HD, don’t know If I still have the file. If not I will try to post some screenshots