服务器之家

服务器之家 > 正文

python实现超市扫码仪计费

时间:2021-02-27 00:27     来源/作者:_从未止步

python实现超市扫码仪计费的程序主要是使用超市扫码仪扫商品的条形码,读取商品信息,实现计费功能。主要用到的技术是串口通信,数据库的操作,需要的环境包括:python环境,mysql,python库(serial,mysqldb)等等。

这个程序的主要过程是:使用扫码仪扫描商品条形码,通过串口通信获取商品条形码,通过该条形码获取商品信息,显示该商品信息并统计总费用。其中商品信息保存在数据库中,可事先导入或者手动导入商品信息,而我的在这里是事先导入的(也可以边扫边倒入信息),导入到数据库中的信息如下:

python实现超市扫码仪计费

程序代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#coding:utf8
 
import serial
import mysqldb
 
ser = serial.serial('com5',9600)
 
 
#获取一行信息
def recv(serial):
 data = ''
 while serial.inwaiting() > 0:
  data += serial.read(1)
  
 return data
 
 
def getinfo(db,data):
 data = data[0:-1] #最后面有一个空格,需要去掉,否则会影响读数据库
 print data
 ret = 0.0
 try:
  cur = db.cursor()
  sql="set names utf8" #这一条语句是告诉数据库编码方式为 utf8
  cur.execute(sql)
 
  sql = "select * from productinfo where code=%s"%(data)
  #print sql
  cur.execute(sql)
  #sql = "select * from productinfo where(code=%s)"
  #cur.execute(sql,data)  
  results = cur.fetchall()
  #print results
  for row in results:
   code = row[0]
   #print code
   price = row[1]
   #print price
   info = row[2]
   #print info
   ret = price
   #解析出来的信息可能为中文,直接print肯定是不行的,需要转化为windows下的gbk编码
   print 'coding=',row[0],'price=',row[1],'info=',info.decode('utf-8').encode('gbk')   
 except:
  print 'it has no infomation about %s'%(data)
 
 return ret
 
 
db = mysqldb.connect('localhost','root','',"zou",3306,'utf8')
cursor = db.cursor()
 
#cursor.execute("drop table if exists productinfo")
 
'''''
sql="""create table productinfo(
  code char(18),
  price double(9,2),
  info char(25))"""
cursor.execute(sql)
'''
   
sum = 0.0  
while true:
 data = recv(ser)
 if data != '':
  #print data
  sum += getinfo(db,data)
  print '总付款:',sum
  
 
db.close()
ser.close()

由于刚刚开始学习python,所以代码规范上做的还不是很好,希望大家多多指出,最后程序的运行如下:

python实现超市扫码仪计费

其中我的程序中可以使用中文(刚刚开始不是显示?就是显示乱码),这个问题我在前面的博客中谈论过,需要处理数据库以及从数据库读取的数据的编码方式。若是大家看出什么错误或是有意见的话,欢饮大家留言。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/zr1076311296/article/details/51759480

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部