This commit is contained in:
root 2023-05-25 18:16:16 +03:00
commit 7d1b84a372
2 changed files with 20 additions and 0 deletions

BIN
export.epf Executable file

Binary file not shown.

20
import.py Executable file
View File

@ -0,0 +1,20 @@
import sqlite3, csv
con = sqlite3.connect("C:\Users\Public\database.db")
cur = con.cursor()
with open('c:\obmen\import.csv', newline='') as csvfile:
spamreader = csv.reader(csvfile, delimiter=';', quotechar='|')
for row in spamreader:
marka=row[0]
sp2=row[1]
alkokode=row[2]
if (sp2):
res = cur.execute("SELECT * FROM excise_stamp WHERE number='" + marka +"'")
#if (res.fetchone() is None):
massiv=res.fetchall()
try:
print(massiv[0])
except:
cur.execute("INSERT INTO excise_stamp (number, inform_f2_reg_id, alc_code, piece) VALUES ('" + marka + "', '" + sp2 + "', '" + alkokode + "', 1)")
cur.execute("INSERT INTO excise_stamp_transaction (number, state, action, stamp, note, status) VALUES ('" + marka + "', 1, 1, '2023-05-19T17:09:00', 'На основании документа запроса марок №20230519170004-SR-9290', 16)")
con.commit()