Compare commits
12 Commits
08393f6685
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d686b26465 | ||
|
|
08e979ecb2 | ||
|
|
72f1d53051 | ||
|
|
b1e0693131 | ||
|
|
86713fc75f | ||
|
|
c24a1fa8c6 | ||
|
|
f108e013c2 | ||
| 1c33775f92 | |||
| 43ab114e1a | |||
| 946ad5c31f | |||
|
|
7b956d89bf | ||
| 0891abc0e1 |
28
.gitignore
vendored
28
.gitignore
vendored
@@ -1,17 +1,21 @@
|
|||||||
*.csv
|
|
||||||
.vscode
|
.vscode
|
||||||
instance
|
.idea
|
||||||
venv/
|
venv/
|
||||||
|
instance/
|
||||||
|
|
||||||
123
|
# Ignore Python bytecode caches everywhere
|
||||||
|
__pycache__/
|
||||||
|
**/__pycache__/
|
||||||
|
|
||||||
|
# Migrations and DB files
|
||||||
|
migrations/
|
||||||
|
*.db
|
||||||
|
|
||||||
|
# Data and temp files
|
||||||
*.csv
|
*.csv
|
||||||
project.db
|
|
||||||
c*.txt
|
c*.txt
|
||||||
migrations/__pycache__/*
|
|
||||||
migrations/versions/__pycache__/*
|
# Legacy specific ignores (if present)
|
||||||
__pycache__
|
backend/venv
|
||||||
migrations/versions/__pycache__
|
backend/__pycache__
|
||||||
migrations/__pycache__
|
backend/routeres/__pycache__
|
||||||
migrations/versions/__pycache__/6fc3d1adb061_.cpython-312.pyc
|
|
||||||
migrations/versions/__pycache__/6fc3d1adb061_.cpython-312.pyc
|
|
||||||
migrations/versions/__pycache__/885bdd7b5161_.cpython-312.pyc
|
|
||||||
|
|||||||
BIN
VedomostMOL.xls
Normal file
BIN
VedomostMOL.xls
Normal file
Binary file not shown.
BIN
VedomostMOL.xlsx
Normal file
BIN
VedomostMOL.xlsx
Normal file
Binary file not shown.
171
app.py
171
app.py
@@ -7,10 +7,6 @@ from datetime import *
|
|||||||
import csv
|
import csv
|
||||||
import random
|
import random
|
||||||
from urllib.parse import unquote
|
from urllib.parse import unquote
|
||||||
from flask_httpauth import HTTPBasicAuth
|
|
||||||
from werkzeug.security import generate_password_hash, check_password_hash
|
|
||||||
from openpyxl import load_workbook
|
|
||||||
|
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
|
|
||||||
@@ -26,13 +22,12 @@ migrate = Migrate(app, db)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
@app.route("/login", methods=['GET', 'POST'])
|
@app.route("/login", methods=['GET', 'POST'])
|
||||||
def login():
|
def login():
|
||||||
return render_template('login.html')
|
return render_template('login.html')
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/", methods=['GET', 'POST'])
|
||||||
@app.route("/", methods=['GET', 'POST'])
|
|
||||||
def index():
|
def index():
|
||||||
results = []
|
results = []
|
||||||
results1 = []
|
results1 = []
|
||||||
@@ -56,7 +51,7 @@ def index():
|
|||||||
results1.append(s.nazvanie)
|
results1.append(s.nazvanie)
|
||||||
aud = db.session.get(Auditory, s.aud_id)
|
aud = db.session.get(Auditory, s.aud_id)
|
||||||
results1.append(aud.audnazvanie)
|
results1.append(aud.audnazvanie)
|
||||||
return render_template('index.html', aud=all_aud, results=results, res1=results1)
|
return render_template('index.html', aud=all_aud, results=results, res1=results1)
|
||||||
return render_template('index.html', aud=all_aud, results=results, res1=results1)
|
return render_template('index.html', aud=all_aud, results=results, res1=results1)
|
||||||
|
|
||||||
|
|
||||||
@@ -101,7 +96,7 @@ def searchonaud():
|
|||||||
return render_template('searchonaud.html', aud=all_aud, res=res)
|
return render_template('searchonaud.html', aud=all_aud, res=res)
|
||||||
|
|
||||||
|
|
||||||
@app.route("/addaudtodb", methods=['GET', 'POST'])
|
@app.route("/addaudtodb", methods=['GET', 'POST'])
|
||||||
def addaudtodb():
|
def addaudtodb():
|
||||||
if request.method == 'POST':
|
if request.method == 'POST':
|
||||||
aud = request.form.get('auditory')
|
aud = request.form.get('auditory')
|
||||||
@@ -132,30 +127,28 @@ def getall():
|
|||||||
oborud = db.session.query(Oboruds).order_by(Oboruds.invNumber).all()
|
oborud = db.session.query(Oboruds).order_by(Oboruds.invNumber).all()
|
||||||
|
|
||||||
results = []
|
results = []
|
||||||
for oboruds in oborud :
|
for oboruds in oborud:
|
||||||
if oboruds.aud_id is None:
|
if oboruds.aud_id is None:
|
||||||
results.append({
|
results.append({
|
||||||
'invNumber': oboruds.invNumber,
|
'invNumber': oboruds.invNumber,
|
||||||
'nazvanie': oboruds.nazvanie,
|
'nazvanie': oboruds.nazvanie,
|
||||||
'raspologenie': oboruds.raspologenie,
|
'raspologenie': oboruds.raspologenie,
|
||||||
'balancenumber': oboruds.balancenumber,
|
'balancenumber': oboruds.balancenumber,
|
||||||
'kolichestvo': oboruds.kolichestvo,
|
'kolichestvo': oboruds.kolichestvo,
|
||||||
'numberppasu': oboruds.numberppasu,
|
'numberppasu': oboruds.numberppasu,
|
||||||
'numberved': oboruds.numberved,
|
'numberved': oboruds.numberved,
|
||||||
'aud': "" })
|
'aud': ""})
|
||||||
else:
|
else:
|
||||||
aud = db.session.query(Auditory).filter_by(id=oboruds.aud_id).first()
|
aud = db.session.query(Auditory).filter_by(id=oboruds.aud_id).first()
|
||||||
results.append({
|
results.append({
|
||||||
'invNumber': oboruds.invNumber,
|
'invNumber': oboruds.invNumber,
|
||||||
'nazvanie': oboruds.nazvanie,
|
'nazvanie': oboruds.nazvanie,
|
||||||
'raspologenie': oboruds.raspologenie,
|
'raspologenie': oboruds.raspologenie,
|
||||||
'balancenumber': oboruds.balancenumber,
|
'balancenumber': oboruds.balancenumber,
|
||||||
'kolichestvo': oboruds.kolichestvo,
|
'kolichestvo': oboruds.kolichestvo,
|
||||||
'numberppasu': oboruds.numberppasu,
|
'numberppasu': oboruds.numberppasu,
|
||||||
'numberved': oboruds.numberved,
|
'numberved': oboruds.numberved,
|
||||||
'aud': aud.audnazvanie })
|
'aud': aud.audnazvanie})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return jsonify(results)
|
return jsonify(results)
|
||||||
|
|
||||||
@@ -168,12 +161,12 @@ def vneaud():
|
|||||||
ak = db.session.query(Oboruds).all()
|
ak = db.session.query(Oboruds).all()
|
||||||
|
|
||||||
for dt in data:
|
for dt in data:
|
||||||
res.append([dt.invNumber, dt.nazvanie, dt.typeBalanse])
|
res.append([dt.invNumber, dt.nazvanie])
|
||||||
|
|
||||||
return render_template('vneaud.html', res=res, kolvo=len(data), all_kol=len(ak))
|
return render_template('vneaud.html', res=res, kolvo=len(data), all_kol=len(ak))
|
||||||
|
|
||||||
|
|
||||||
@app.route('/zametki', methods=['GET', 'POST'])
|
@app.route('/zametki', methods=['GET', 'POST'])
|
||||||
def zametki():
|
def zametki():
|
||||||
zam = db.session.query(Zametki).filter(Zametki.rmdt == None).all()
|
zam = db.session.query(Zametki).filter(Zametki.rmdt == None).all()
|
||||||
if request.method == 'POST':
|
if request.method == 'POST':
|
||||||
@@ -196,7 +189,7 @@ def js2():
|
|||||||
return jsonify({'success': True}), 200, {'ContentType': 'application/json'}
|
return jsonify({'success': True}), 200, {'ContentType': 'application/json'}
|
||||||
|
|
||||||
|
|
||||||
@app.route('/zamsearch', methods=['GET', 'POST'])
|
@app.route('/zamsearch', methods=['GET', 'POST'])
|
||||||
def zamsearch():
|
def zamsearch():
|
||||||
p = request.form.get('srch')
|
p = request.form.get('srch')
|
||||||
|
|
||||||
@@ -204,66 +197,61 @@ def zamsearch():
|
|||||||
Zametki.txtzam.contains(p)).ll()
|
Zametki.txtzam.contains(p)).ll()
|
||||||
zam = []
|
zam = []
|
||||||
for item in searchedZam:
|
for item in searchedZam:
|
||||||
zam.append([item.txtzam, item.created_date])
|
zam.append([item.txtzam, item.created_date])
|
||||||
return render_template('zametki.html', zam=zam)
|
return render_template('zametki.html', zam=zam)
|
||||||
|
|
||||||
|
|
||||||
@app.route('/addraspved', methods=['GET', 'POST'])
|
@app.route('/addraspved', methods=['GET', 'POST'])
|
||||||
def addraspved():
|
def addraspved():
|
||||||
if request.method == 'POST':
|
if request.method == 'POST':
|
||||||
|
|
||||||
query_string = request.data.decode()
|
query_string = request.data.decode()
|
||||||
|
|
||||||
un_query_string = unquote(unquote(query_string)).split(',')
|
un_query_string = unquote(unquote(query_string)).split(',')
|
||||||
|
|
||||||
|
|
||||||
ob = db.session.query(Oboruds).filter_by(invNumber=un_query_string[0]).first()
|
ob = db.session.query(Oboruds).filter_by(invNumber=un_query_string[0]).first()
|
||||||
|
|
||||||
ob.numberved=un_query_string[1]
|
ob.numberved = un_query_string[1]
|
||||||
ob.kolichestvo = un_query_string[2]
|
ob.kolichestvo = un_query_string[2]
|
||||||
ob.balancenumber = un_query_string[3]
|
ob.balancenumber = un_query_string[3]
|
||||||
ob.raspologenie=un_query_string[4]
|
ob.raspologenie = un_query_string[4]
|
||||||
|
|
||||||
|
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
db.session.close()
|
db.session.close()
|
||||||
|
|
||||||
|
|
||||||
return jsonify({'success': True}, 200, {'ContentType': 'application/json'})
|
return jsonify({'success': True}, 200, {'ContentType': 'application/json'})
|
||||||
|
|
||||||
|
|
||||||
@app.route('/addoborudasu', methods=['GET', 'POST'])
|
@app.route('/addoborudasu', methods=['GET', 'POST'])
|
||||||
def addoborud():
|
def addoborud():
|
||||||
if request.method == 'POST':
|
if request.method == 'POST':
|
||||||
|
|
||||||
query_string = request.data.decode()
|
query_string = request.data.decode()
|
||||||
|
|
||||||
un_query_string = unquote(unquote(query_string)).split(',')
|
un_query_string = unquote(unquote(query_string)).split(',')
|
||||||
db.session.add(
|
db.session.add(
|
||||||
Oboruds(invNumber=un_query_string[0],
|
Oboruds(invNumber=un_query_string[0],
|
||||||
nazvanie=un_query_string[5],
|
nazvanie=un_query_string[5],
|
||||||
raspologenie= un_query_string[4],
|
raspologenie=un_query_string[4],
|
||||||
numberved=un_query_string[1],
|
numberved=un_query_string[1],
|
||||||
kolichestvo=un_query_string[2],
|
kolichestvo=un_query_string[2],
|
||||||
balancenumber=un_query_string[3]
|
balancenumber=un_query_string[3]
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
db.session.commit()
|
|
||||||
|
|
||||||
|
db.session.commit()
|
||||||
|
|
||||||
return jsonify({'success': True}, 200, {'ContentType': 'application/json'})
|
return jsonify({'success': True}, 200, {'ContentType': 'application/json'})
|
||||||
|
|
||||||
|
|
||||||
# ==================================================================================
|
# ==================================================================================
|
||||||
|
|
||||||
|
|
||||||
def ranomraspr():
|
def ranomraspr():
|
||||||
with app.app_context():
|
with app.app_context():
|
||||||
while len(db.session.query(Oboruds).filter(Oboruds.aud_id == None).all()) > 0:
|
while len(db.session.query(Oboruds).filter(Oboruds.aud_id is None).all()) > 0:
|
||||||
audid = random.choice(db.session.query(Auditory).all())
|
audid = random.choice(db.session.query(Auditory).all())
|
||||||
oborud = random.choice(db.session.query(Oboruds).filter(Oboruds.aud_id == None).all())
|
oborud = random.choice(db.session.query(Oboruds).filter(Oboruds.aud_id is None).all())
|
||||||
oborud.aud_id = audid.id
|
oborud.aud_id = audid.id
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
|
|
||||||
|
|
||||||
def createdb():
|
def createdb():
|
||||||
@@ -305,35 +293,52 @@ def createdb():
|
|||||||
for row in csv_reader:
|
for row in csv_reader:
|
||||||
db.session.add(
|
db.session.add(
|
||||||
Oboruds(invNumber=row[0], nazvanie=row[1], typeBalanse='баланс'))
|
Oboruds(invNumber=row[0], nazvanie=row[1], typeBalanse='баланс'))
|
||||||
|
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
|
|
||||||
|
|
||||||
def write2excell():
|
def write2excell():
|
||||||
wb = load_workbook("VedomostMOL.xlsx")
|
wb = xlrd.open_workbook("VedIsh.xls")
|
||||||
sheet = wb.worksheets[0]
|
sheet = wb.sheet_by_index(0)
|
||||||
|
|
||||||
x=19314
|
newFile = copy(wb)
|
||||||
|
newSheet = newFile.get_sheet(0)
|
||||||
|
invNomerColum = 6
|
||||||
|
|
||||||
with app.app_context():
|
column_index = 1
|
||||||
joinQuery = db.session.query(Oboruds, Auditory).filter(
|
for row_idx in range(sheet.nrows):
|
||||||
Oboruds.aud_id == Auditory.id).filter(
|
cell_value = sheet.cell(row_idx, column_index)
|
||||||
Oboruds.invNumber==x)
|
|
||||||
|
if cell_value:
|
||||||
print(joinQuery.all())
|
|
||||||
|
tmp_inv_number = str(cell_value).split(':')[1]
|
||||||
|
|
||||||
|
try:
|
||||||
|
a = tmp_inv_number[1:-1]
|
||||||
|
|
||||||
|
inv_number = int(tmp_inv_number[1:-1])
|
||||||
|
|
||||||
|
with app.app_context():
|
||||||
|
auditory_obj = db.session.query(Auditory).join(Oboruds, Oboruds.aud_id == Auditory.id).filter(
|
||||||
|
Oboruds.invNumber == inv_number).first()
|
||||||
|
|
||||||
|
print(auditory_obj.audnazvanie)
|
||||||
|
|
||||||
|
# cur.execute("SELECT aud.audnazvanie FROM oboruds AS ob JOIN auditory AS aud ON ob.aud_id = aud.id WHERE ob.invNumber = ?", (inv_number,))
|
||||||
|
|
||||||
|
|
||||||
for i in range(10):
|
except:
|
||||||
cell = 'B'+str(i+6)
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
"""
|
||||||
|
else:
|
||||||
|
#newSheet.write(row_idx, invNomerColum, "Нет инв номера")
|
||||||
|
pass
|
||||||
|
newFile.save("Ved31.xls")
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
#write2excell()
|
#write2excell()
|
||||||
#ranomraspr()
|
|
||||||
#createdb()
|
app.run(debug=True, host='0.0.0.0', port='3800')
|
||||||
app.run(debug=True, host='0.0.0.0', port='3800')
|
|
||||||
|
|||||||
2
backend/__init__.py
Normal file
2
backend/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
"""Backend package initializer."""
|
||||||
|
|
||||||
5
backend/create_new_db.py
Normal file
5
backend/create_new_db.py
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
from backend.models import Base
|
||||||
|
from backend.database import engine
|
||||||
|
|
||||||
|
Base.metadata.drop_all(bind=engine) # Опционально, если вдруг есть
|
||||||
|
Base.metadata.create_all(bind=engine)
|
||||||
15
backend/database.py
Normal file
15
backend/database.py
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
# backend/database.py
|
||||||
|
from sqlalchemy import create_engine
|
||||||
|
from sqlalchemy.orm import sessionmaker, scoped_session
|
||||||
|
|
||||||
|
SQLALCHEMY_DATABASE_URL = "sqlite:///./app.db" # или PostgreSQL URL
|
||||||
|
|
||||||
|
engine = create_engine(SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False})
|
||||||
|
SessionLocal = scoped_session(sessionmaker(autocommit=False, autoflush=False, bind=engine))
|
||||||
|
|
||||||
|
def get_db():
|
||||||
|
db = SessionLocal()
|
||||||
|
try:
|
||||||
|
yield db
|
||||||
|
finally:
|
||||||
|
db.close()
|
||||||
43
backend/main.py
Normal file
43
backend/main.py
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
# backend/main.py
|
||||||
|
from fastapi import FastAPI
|
||||||
|
from fastapi.responses import RedirectResponse
|
||||||
|
from fastapi.middleware.cors import CORSMiddleware
|
||||||
|
|
||||||
|
from backend.routers.equipment_types import equipment_types
|
||||||
|
from backend.routers.auditories import auditories
|
||||||
|
from backend.routers.oboruds import oboruds
|
||||||
|
from backend.routers.components import components
|
||||||
|
from backend.routers.rashodniki import consumables
|
||||||
|
from backend.routers.zametki import zametki
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
app = FastAPI()
|
||||||
|
|
||||||
|
# Для фронтенда Vue.js
|
||||||
|
app.add_middleware(
|
||||||
|
CORSMiddleware,
|
||||||
|
allow_origins=["*"], # заменить на ['http://localhost:5173'] для безопасности
|
||||||
|
allow_credentials=True,
|
||||||
|
allow_methods=["*"],
|
||||||
|
allow_headers=["*"],
|
||||||
|
)
|
||||||
|
|
||||||
|
@app.get("/ping")
|
||||||
|
def ping():
|
||||||
|
return {"message": "pong"}
|
||||||
|
|
||||||
|
|
||||||
|
@app.get("/")
|
||||||
|
def root():
|
||||||
|
return RedirectResponse(url="/docs")
|
||||||
|
|
||||||
|
|
||||||
|
# Подключение роутов
|
||||||
|
app.include_router(equipment_types)
|
||||||
|
app.include_router(auditories)
|
||||||
|
app.include_router(oboruds)
|
||||||
|
app.include_router(components)
|
||||||
|
app.include_router(consumables)
|
||||||
|
app.include_router(zametki)
|
||||||
69
backend/migrate_data.py
Normal file
69
backend/migrate_data.py
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
import sys
|
||||||
|
from sqlalchemy import create_engine, text
|
||||||
|
from sqlalchemy.orm import sessionmaker
|
||||||
|
from backend.database import SessionLocal as NewSession
|
||||||
|
from backend import models
|
||||||
|
|
||||||
|
OLD_DB_URL = "sqlite:///./backend/old_app.db"
|
||||||
|
old_engine = create_engine(OLD_DB_URL, connect_args={"check_same_thread": False})
|
||||||
|
OldSession = sessionmaker(bind=old_engine)
|
||||||
|
old_db = OldSession()
|
||||||
|
|
||||||
|
new_db = NewSession()
|
||||||
|
|
||||||
|
def log(msg: str):
|
||||||
|
print(f"[INFO] {msg}", file=sys.stderr)
|
||||||
|
|
||||||
|
def migrate():
|
||||||
|
log("Запуск переноса данных из old_app.db → app.db")
|
||||||
|
|
||||||
|
# Тип оборудования по умолчанию
|
||||||
|
log("Добавление типа оборудования по умолчанию: 'Неизвестно'")
|
||||||
|
default_type = models.EquipmentType(name="Неизвестно")
|
||||||
|
new_db.add(default_type)
|
||||||
|
new_db.commit()
|
||||||
|
|
||||||
|
# Перенос аудиторий
|
||||||
|
log("Перенос аудиторий...")
|
||||||
|
auditory_map = {}
|
||||||
|
aud_rows = old_db.execute(text("SELECT id, audnazvanie FROM auditory")).fetchall()
|
||||||
|
for aud in aud_rows:
|
||||||
|
new_aud = models.Auditory(audnazvanie=aud.audnazvanie)
|
||||||
|
new_db.add(new_aud)
|
||||||
|
new_db.flush()
|
||||||
|
auditory_map[aud.id] = new_aud.id
|
||||||
|
log(f" → перенесено: {len(aud_rows)}")
|
||||||
|
|
||||||
|
# Перенос оборудования
|
||||||
|
log("Перенос оборудования...")
|
||||||
|
ob_rows = old_db.execute(text("SELECT * FROM oboruds")).fetchall()
|
||||||
|
for ob in ob_rows:
|
||||||
|
new_ob = models.Oboruds(
|
||||||
|
invNumber=ob.invNumber,
|
||||||
|
nazvanie=ob.nazvanie,
|
||||||
|
raspologenie=ob.raspologenie,
|
||||||
|
numberppasu=ob.numberppasu,
|
||||||
|
kolichestvo=ob.kolichestvo,
|
||||||
|
aud_id=auditory_map.get(ob.aud_id),
|
||||||
|
type_id=default_type.id
|
||||||
|
)
|
||||||
|
new_db.add(new_ob)
|
||||||
|
log(f" → перенесено: {len(ob_rows)}")
|
||||||
|
|
||||||
|
# Перенос заметок
|
||||||
|
log("Перенос заметок...")
|
||||||
|
z_rows = old_db.execute(text("SELECT * FROM zametki")).fetchall()
|
||||||
|
for z in z_rows:
|
||||||
|
new_z = models.Zametki(
|
||||||
|
txtzam=z.txtzam,
|
||||||
|
created_date=z.created_date,
|
||||||
|
rmdt=z.rmdt
|
||||||
|
)
|
||||||
|
new_db.add(new_z)
|
||||||
|
log(f" → перенесено: {len(z_rows)}")
|
||||||
|
|
||||||
|
new_db.commit()
|
||||||
|
log("✅ Перенос завершён успешно.")
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
migrate()
|
||||||
80
backend/models.py
Normal file
80
backend/models.py
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
# backend/models.py
|
||||||
|
|
||||||
|
from sqlalchemy import Column, Integer, String, ForeignKey, DateTime
|
||||||
|
from sqlalchemy.orm import relationship, declarative_base
|
||||||
|
import datetime
|
||||||
|
|
||||||
|
Base = declarative_base()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class Auditory(Base):
|
||||||
|
__tablename__ = 'auditories'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
audnazvanie = Column(String)
|
||||||
|
|
||||||
|
oboruds = relationship("Oboruds", back_populates="auditory")
|
||||||
|
|
||||||
|
|
||||||
|
class EquipmentType(Base):
|
||||||
|
__tablename__ = 'equipment_types'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
name = Column(String, unique=True, nullable=False)
|
||||||
|
|
||||||
|
oboruds = relationship("Oboruds", back_populates="type")
|
||||||
|
|
||||||
|
|
||||||
|
class Oboruds(Base):
|
||||||
|
__tablename__ = 'oboruds'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
invNumber = Column(Integer)
|
||||||
|
nazvanie = Column(String(500))
|
||||||
|
raspologenie = Column(String(200))
|
||||||
|
numberppasu = Column(String(100))
|
||||||
|
kolichestvo = Column(Integer)
|
||||||
|
|
||||||
|
aud_id = Column(Integer, ForeignKey("auditories.id"))
|
||||||
|
auditory = relationship("Auditory", back_populates="oboruds")
|
||||||
|
|
||||||
|
type_id = Column(Integer, ForeignKey("equipment_types.id"))
|
||||||
|
type = relationship("EquipmentType", back_populates="oboruds")
|
||||||
|
|
||||||
|
components = relationship("Component", back_populates="oborud")
|
||||||
|
consumables = relationship("Consumable", back_populates="oborud")
|
||||||
|
|
||||||
|
|
||||||
|
class Component(Base):
|
||||||
|
__tablename__ = 'components'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
name = Column(String, nullable=False)
|
||||||
|
description = Column(String)
|
||||||
|
|
||||||
|
oborud_id = Column(Integer, ForeignKey("oboruds.id"))
|
||||||
|
oborud = relationship("Oboruds", back_populates="components")
|
||||||
|
|
||||||
|
|
||||||
|
class Consumable(Base):
|
||||||
|
__tablename__ = 'consumables'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
name = Column(String, nullable=False)
|
||||||
|
description = Column(String)
|
||||||
|
|
||||||
|
oborud_id = Column(Integer, ForeignKey("oboruds.id"))
|
||||||
|
oborud = relationship("Oboruds", back_populates="consumables")
|
||||||
|
|
||||||
|
|
||||||
|
class Zametki(Base):
|
||||||
|
__tablename__ = 'zametki'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
txtzam = Column(String(10000))
|
||||||
|
created_date = Column(DateTime, default=datetime.datetime.utcnow)
|
||||||
|
rmdt = Column(DateTime)
|
||||||
BIN
backend/requirements.txt
Normal file
BIN
backend/requirements.txt
Normal file
Binary file not shown.
2
backend/routers/__init__.py
Normal file
2
backend/routers/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
"""Routers package initializer."""
|
||||||
|
|
||||||
18
backend/routers/auditories.py
Normal file
18
backend/routers/auditories.py
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
from fastapi import APIRouter, Depends
|
||||||
|
from sqlalchemy.orm import Session
|
||||||
|
from .. import models, schemas, database
|
||||||
|
|
||||||
|
auditories = APIRouter(prefix="/auditories", tags=["auditories"])
|
||||||
|
|
||||||
|
@auditories.post("/", response_model=schemas.AuditoryRead)
|
||||||
|
def create_auditory(item: schemas.AuditoryCreate, db: Session = Depends(database.get_db)):
|
||||||
|
obj = models.Auditory(**item.dict())
|
||||||
|
db.add(obj)
|
||||||
|
db.commit()
|
||||||
|
db.refresh(obj)
|
||||||
|
return obj
|
||||||
|
|
||||||
|
@auditories.get("/", response_model=list[schemas.AuditoryRead])
|
||||||
|
def list_auditories(db: Session = Depends(database.get_db)):
|
||||||
|
return db.query(models.Auditory).all()
|
||||||
|
|
||||||
18
backend/routers/components.py
Normal file
18
backend/routers/components.py
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
from fastapi import APIRouter, Depends
|
||||||
|
from sqlalchemy.orm import Session
|
||||||
|
from .. import models, schemas, database
|
||||||
|
|
||||||
|
|
||||||
|
components = APIRouter(prefix="/components", tags=["components"])
|
||||||
|
|
||||||
|
@components.post("/", response_model=schemas.ComponentRead)
|
||||||
|
def create_component(item: schemas.ComponentCreate, db: Session = Depends(database.get_db)):
|
||||||
|
obj = models.Component(**item.dict())
|
||||||
|
db.add(obj)
|
||||||
|
db.commit()
|
||||||
|
db.refresh(obj)
|
||||||
|
return obj
|
||||||
|
|
||||||
|
@components.get("/", response_model=list[schemas.ComponentRead])
|
||||||
|
def list_components(db: Session = Depends(database.get_db)):
|
||||||
|
return db.query(models.Component).all()
|
||||||
17
backend/routers/equipment_types.py
Normal file
17
backend/routers/equipment_types.py
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
from fastapi import APIRouter, Depends
|
||||||
|
from sqlalchemy.orm import Session
|
||||||
|
from .. import models, schemas, database
|
||||||
|
|
||||||
|
equipment_types = APIRouter(prefix="/equipment-types", tags=["equipment_types"])
|
||||||
|
|
||||||
|
@equipment_types.post("/", response_model=schemas.EquipmentTypeRead)
|
||||||
|
def create_equipment_type(item: schemas.EquipmentTypeCreate, db: Session = Depends(database.get_db)):
|
||||||
|
obj = models.EquipmentType(**item.dict())
|
||||||
|
db.add(obj)
|
||||||
|
db.commit()
|
||||||
|
db.refresh(obj)
|
||||||
|
return obj
|
||||||
|
|
||||||
|
@equipment_types.get("/", response_model=list[schemas.EquipmentTypeRead])
|
||||||
|
def list_equipment_types(db: Session = Depends(database.get_db)):
|
||||||
|
return db.query(models.EquipmentType).all()
|
||||||
28
backend/routers/oboruds.py
Normal file
28
backend/routers/oboruds.py
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
from fastapi import APIRouter, Depends, HTTPException
|
||||||
|
from typing import Optional
|
||||||
|
from sqlalchemy.orm import Session
|
||||||
|
from .. import models, schemas, database
|
||||||
|
|
||||||
|
oboruds = APIRouter(prefix="/oboruds", tags=["oboruds"])
|
||||||
|
|
||||||
|
@oboruds.post("/", response_model=schemas.OborudRead)
|
||||||
|
def create_oborud(item: schemas.OborudCreate, db: Session = Depends(database.get_db)):
|
||||||
|
obj = models.Oboruds(**item.dict())
|
||||||
|
db.add(obj)
|
||||||
|
db.commit()
|
||||||
|
db.refresh(obj)
|
||||||
|
return obj
|
||||||
|
|
||||||
|
@oboruds.get("/", response_model=list[schemas.OborudRead])
|
||||||
|
def list_oboruds(aud_id: Optional[int] = None, db: Session = Depends(database.get_db)):
|
||||||
|
query = db.query(models.Oboruds)
|
||||||
|
if aud_id is not None:
|
||||||
|
query = query.filter(models.Oboruds.aud_id == aud_id)
|
||||||
|
return query.all()
|
||||||
|
|
||||||
|
@oboruds.get("/{oborud_id}", response_model=schemas.OborudRead)
|
||||||
|
def get_oborud(oborud_id: int, db: Session = Depends(database.get_db)):
|
||||||
|
obj = db.query(models.Oboruds).filter(models.Oboruds.id == oborud_id).first()
|
||||||
|
if not obj:
|
||||||
|
raise HTTPException(status_code=404, detail="Oborud not found")
|
||||||
|
return obj
|
||||||
17
backend/routers/rashodniki.py
Normal file
17
backend/routers/rashodniki.py
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
from fastapi import APIRouter, Depends
|
||||||
|
from sqlalchemy.orm import Session
|
||||||
|
from .. import models, schemas, database
|
||||||
|
|
||||||
|
consumables = APIRouter(prefix="/consumables", tags=["consumables"])
|
||||||
|
|
||||||
|
@consumables.post("/", response_model=schemas.ConsumableRead)
|
||||||
|
def create_consumable(item: schemas.ConsumableCreate, db: Session = Depends(database.get_db)):
|
||||||
|
obj = models.Consumable(**item.dict())
|
||||||
|
db.add(obj)
|
||||||
|
db.commit()
|
||||||
|
db.refresh(obj)
|
||||||
|
return obj
|
||||||
|
|
||||||
|
@consumables.get("/", response_model=list[schemas.ConsumableRead])
|
||||||
|
def list_consumables(db: Session = Depends(database.get_db)):
|
||||||
|
return db.query(models.Consumable).all()
|
||||||
17
backend/routers/zametki.py
Normal file
17
backend/routers/zametki.py
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
from fastapi import APIRouter, Depends
|
||||||
|
from sqlalchemy.orm import Session
|
||||||
|
from .. import models, schemas, database
|
||||||
|
|
||||||
|
zametki = APIRouter(prefix="/zametki", tags=["zametki"])
|
||||||
|
|
||||||
|
@zametki.post("/", response_model=schemas.ZametkaRead)
|
||||||
|
def create_zametka(item: schemas.ZametkaCreate, db: Session = Depends(database.get_db)):
|
||||||
|
obj = models.Zametki(**item.dict())
|
||||||
|
db.add(obj)
|
||||||
|
db.commit()
|
||||||
|
db.refresh(obj)
|
||||||
|
return obj
|
||||||
|
|
||||||
|
@zametki.get("/", response_model=list[schemas.ZametkaRead])
|
||||||
|
def list_zametki(db: Session = Depends(database.get_db)):
|
||||||
|
return db.query(models.Zametki).all()
|
||||||
102
backend/schemas.py
Normal file
102
backend/schemas.py
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
# backend/schemas.py
|
||||||
|
|
||||||
|
from pydantic import BaseModel
|
||||||
|
from typing import Optional, List
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
|
||||||
|
# === Equipment Type ===
|
||||||
|
class EquipmentTypeBase(BaseModel):
|
||||||
|
name: str
|
||||||
|
|
||||||
|
class EquipmentTypeCreate(EquipmentTypeBase):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class EquipmentTypeRead(EquipmentTypeBase):
|
||||||
|
id: int
|
||||||
|
|
||||||
|
class Config:
|
||||||
|
orm_mode = True
|
||||||
|
|
||||||
|
|
||||||
|
# === Component ===
|
||||||
|
class ComponentBase(BaseModel):
|
||||||
|
name: str
|
||||||
|
description: Optional[str] = None
|
||||||
|
|
||||||
|
class ComponentCreate(ComponentBase):
|
||||||
|
oborud_id: int
|
||||||
|
|
||||||
|
class ComponentRead(ComponentBase):
|
||||||
|
id: int
|
||||||
|
|
||||||
|
class Config:
|
||||||
|
orm_mode = True
|
||||||
|
|
||||||
|
|
||||||
|
# === Consumable ===
|
||||||
|
class ConsumableBase(BaseModel):
|
||||||
|
name: str
|
||||||
|
description: Optional[str] = None
|
||||||
|
|
||||||
|
class ConsumableCreate(ConsumableBase):
|
||||||
|
oborud_id: int
|
||||||
|
|
||||||
|
class ConsumableRead(ConsumableBase):
|
||||||
|
id: int
|
||||||
|
|
||||||
|
class Config:
|
||||||
|
orm_mode = True
|
||||||
|
|
||||||
|
|
||||||
|
# === Oborud ===
|
||||||
|
class OborudBase(BaseModel):
|
||||||
|
invNumber: Optional[int]
|
||||||
|
nazvanie: str
|
||||||
|
raspologenie: Optional[str] = None
|
||||||
|
numberppasu: Optional[str] = None
|
||||||
|
kolichestvo: Optional[int] = None
|
||||||
|
aud_id: int
|
||||||
|
type_id: int
|
||||||
|
|
||||||
|
class OborudCreate(OborudBase):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class OborudRead(OborudBase):
|
||||||
|
id: int
|
||||||
|
type: EquipmentTypeRead
|
||||||
|
components: List[ComponentRead] = []
|
||||||
|
consumables: List[ConsumableRead] = []
|
||||||
|
|
||||||
|
class Config:
|
||||||
|
orm_mode = True
|
||||||
|
|
||||||
|
|
||||||
|
# === Auditory ===
|
||||||
|
class AuditoryBase(BaseModel):
|
||||||
|
audnazvanie: str
|
||||||
|
|
||||||
|
class AuditoryCreate(AuditoryBase):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class AuditoryRead(AuditoryBase):
|
||||||
|
id: int
|
||||||
|
|
||||||
|
class Config:
|
||||||
|
orm_mode = True
|
||||||
|
|
||||||
|
|
||||||
|
# === Zametka ===
|
||||||
|
class ZametkaBase(BaseModel):
|
||||||
|
txtzam: str
|
||||||
|
rmdt: Optional[datetime] = None
|
||||||
|
|
||||||
|
class ZametkaCreate(ZametkaBase):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class ZametkaRead(ZametkaBase):
|
||||||
|
id: int
|
||||||
|
created_date: datetime
|
||||||
|
|
||||||
|
class Config:
|
||||||
|
orm_mode = True
|
||||||
54
migrations/versions/8e5efc4de919_.py
Normal file
54
migrations/versions/8e5efc4de919_.py
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
"""empty message
|
||||||
|
|
||||||
|
Revision ID: 8e5efc4de919
|
||||||
|
Revises: c208cbc25232
|
||||||
|
Create Date: 2024-04-03 22:36:46.208266
|
||||||
|
|
||||||
|
"""
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '8e5efc4de919'
|
||||||
|
down_revision = 'c208cbc25232'
|
||||||
|
branch_labels = None
|
||||||
|
depends_on = None
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
with op.batch_alter_table('oboruds', schema=None) as batch_op:
|
||||||
|
batch_op.add_column(sa.Column('numberved', sa.String(length=100), nullable=True))
|
||||||
|
batch_op.add_column(sa.Column('numberppasu', sa.String(length=100), nullable=True))
|
||||||
|
batch_op.add_column(sa.Column('balancenumber', sa.Integer(), nullable=True))
|
||||||
|
batch_op.alter_column('nazvanie',
|
||||||
|
existing_type=sa.TEXT(length=500),
|
||||||
|
type_=sa.String(length=500),
|
||||||
|
existing_nullable=True)
|
||||||
|
batch_op.alter_column('raspologenie',
|
||||||
|
existing_type=sa.TEXT(length=200),
|
||||||
|
type_=sa.String(length=200),
|
||||||
|
existing_nullable=True)
|
||||||
|
batch_op.drop_column('buhnumberpp')
|
||||||
|
|
||||||
|
# ### end Alembic commands ###
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
with op.batch_alter_table('oboruds', schema=None) as batch_op:
|
||||||
|
batch_op.add_column(sa.Column('buhnumberpp', sa.TEXT(length=100), nullable=True))
|
||||||
|
batch_op.alter_column('raspologenie',
|
||||||
|
existing_type=sa.String(length=200),
|
||||||
|
type_=sa.TEXT(length=200),
|
||||||
|
existing_nullable=True)
|
||||||
|
batch_op.alter_column('nazvanie',
|
||||||
|
existing_type=sa.String(length=500),
|
||||||
|
type_=sa.TEXT(length=500),
|
||||||
|
existing_nullable=True)
|
||||||
|
batch_op.drop_column('balancenumber')
|
||||||
|
batch_op.drop_column('numberppasu')
|
||||||
|
batch_op.drop_column('numberved')
|
||||||
|
|
||||||
|
# ### end Alembic commands ###
|
||||||
24
migrations/versions/d4a8e4c9e65a_.py
Normal file
24
migrations/versions/d4a8e4c9e65a_.py
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
"""empty message
|
||||||
|
|
||||||
|
Revision ID: d4a8e4c9e65a
|
||||||
|
Revises: 10da3140ab2e, 8e5efc4de919
|
||||||
|
Create Date: 2024-05-06 08:27:39.088982
|
||||||
|
|
||||||
|
"""
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = 'd4a8e4c9e65a'
|
||||||
|
down_revision = ('10da3140ab2e', '8e5efc4de919')
|
||||||
|
branch_labels = None
|
||||||
|
depends_on = None
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
pass
|
||||||
90
models.py
90
models.py
@@ -1,32 +1,76 @@
|
|||||||
|
# backend/models.py
|
||||||
|
|
||||||
from flask_sqlalchemy import SQLAlchemy
|
from sqlalchemy import Column, Integer, String, ForeignKey, DateTime
|
||||||
|
from sqlalchemy.orm import relationship, declarative_base
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
db = SQLAlchemy()
|
Base = declarative_base()
|
||||||
|
|
||||||
|
|
||||||
class Auditory(db.Model):
|
class Auditory(Base):
|
||||||
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
|
__tablename__ = 'auditories'
|
||||||
audnazvanie=db.Column(db.String)
|
|
||||||
oboruds = db.relationship('Oboruds')
|
|
||||||
|
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
class Oboruds(db.Model):
|
audnazvanie = Column(String)
|
||||||
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
|
|
||||||
invNumber=db.Column(db.Integer)
|
oboruds = relationship("Oboruds", back_populates="auditory")
|
||||||
nazvanie=db.Column(db.String(500))
|
|
||||||
raspologenie = db.Column(db.String(200))
|
|
||||||
numberved = db.Column(db.String(100))
|
|
||||||
numberppasu = db.Column(db.String(100))
|
|
||||||
kolichestvo = db.Column(db.Integer)
|
|
||||||
balancenumber = db.Column(db.Integer)
|
|
||||||
aud_id = db.Column(db.Integer, db.ForeignKey(Auditory.id))
|
|
||||||
|
|
||||||
|
|
||||||
class Zametki(db.Model):
|
class EquipmentType(Base):
|
||||||
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
|
__tablename__ = 'equipment_types'
|
||||||
txtzam=db.Column(db.String(10000))
|
|
||||||
created_date = db.Column(db.DateTime, default=datetime.datetime.utcnow)
|
|
||||||
rmdt = db.Column(db.DateTime)
|
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
name = Column(String, unique=True, nullable=False)
|
||||||
|
|
||||||
|
oboruds = relationship("Oboruds", back_populates="type")
|
||||||
|
|
||||||
|
|
||||||
|
class Oboruds(Base):
|
||||||
|
__tablename__ = 'oboruds'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
invNumber = Column(Integer)
|
||||||
|
nazvanie = Column(String(500))
|
||||||
|
raspologenie = Column(String(200))
|
||||||
|
numberppasu = Column(String(100))
|
||||||
|
kolichestvo = Column(Integer)
|
||||||
|
|
||||||
|
aud_id = Column(Integer, ForeignKey("auditories.id"))
|
||||||
|
auditory = relationship("Auditory", back_populates="oboruds")
|
||||||
|
|
||||||
|
type_id = Column(Integer, ForeignKey("equipment_types.id"))
|
||||||
|
type = relationship("EquipmentType", back_populates="oboruds")
|
||||||
|
|
||||||
|
components = relationship("Component", back_populates="oborud")
|
||||||
|
consumables = relationship("Consumable", back_populates="oborud")
|
||||||
|
|
||||||
|
|
||||||
|
class Component(Base):
|
||||||
|
__tablename__ = 'components'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
name = Column(String, nullable=False)
|
||||||
|
description = Column(String)
|
||||||
|
|
||||||
|
oborud_id = Column(Integer, ForeignKey("oboruds.id"))
|
||||||
|
oborud = relationship("Oboruds", back_populates="components")
|
||||||
|
|
||||||
|
|
||||||
|
class Consumable(Base):
|
||||||
|
__tablename__ = 'consumables'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
name = Column(String, nullable=False)
|
||||||
|
description = Column(String)
|
||||||
|
|
||||||
|
oborud_id = Column(Integer, ForeignKey("oboruds.id"))
|
||||||
|
oborud = relationship("Oboruds", back_populates="consumables")
|
||||||
|
|
||||||
|
|
||||||
|
class Zametki(Base):
|
||||||
|
__tablename__ = 'zametki'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
txtzam = Column(String(10000))
|
||||||
|
created_date = Column(DateTime, default=datetime.datetime.utcnow)
|
||||||
|
rmdt = Column(DateTime)
|
||||||
|
|||||||
BIN
requirements.txt
BIN
requirements.txt
Binary file not shown.
@@ -8,7 +8,7 @@ body {
|
|||||||
min-width: 580px;
|
min-width: 580px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row{
|
.row {
|
||||||
|
|
||||||
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@@ -24,7 +24,7 @@ body {
|
|||||||
header {
|
header {
|
||||||
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
background-color: #6A90B6;
|
background-color: #6A90B6;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
@@ -35,7 +35,7 @@ a:hover {
|
|||||||
color: #041322;
|
color: #041322;
|
||||||
}
|
}
|
||||||
|
|
||||||
a{
|
a {
|
||||||
|
|
||||||
color: #041322;
|
color: #041322;
|
||||||
|
|
||||||
@@ -54,7 +54,7 @@ button {
|
|||||||
|
|
||||||
.card {
|
.card {
|
||||||
|
|
||||||
width: 200px;
|
/*width: 200px; */
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
border-color: #E07D54;
|
border-color: #E07D54;
|
||||||
@@ -67,54 +67,62 @@ h5 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.hidden-column {
|
||||||
.hidden-column{
|
display: none;
|
||||||
display: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
nav{
|
nav {
|
||||||
|
|
||||||
width:100%;
|
width: 100%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
table{
|
table {
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
border-collapse: separate!important;
|
border-collapse: separate !important;
|
||||||
}
|
}
|
||||||
td{
|
|
||||||
|
.table td {
|
||||||
|
font-size: 14px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
max-width: 10rem;
|
||||||
|
word-break: break-all;
|
||||||
|
border-collapse: separate !important;
|
||||||
}
|
}
|
||||||
.aud{
|
|
||||||
|
.aud {
|
||||||
width: 110px;
|
width: 110px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inv{
|
.inv {
|
||||||
width: 400px;
|
width: 400px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rasp{
|
.rasp {
|
||||||
max-width: 200px;
|
width: 200px;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
#modal_matcenn{
|
#modal_matcenn {
|
||||||
|
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.datatable{
|
.datatable {
|
||||||
background-color: whitesmoke;
|
background-color: whitesmoke;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.datatable th:nth-child(7) {
|
||||||
|
width: 200px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
|
|
||||||
*{
|
* {
|
||||||
font-family: "Times New Roman", Times, serif;
|
font-family: "Times New Roman", Times, serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -122,7 +130,7 @@ td{
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -142,29 +150,30 @@ td{
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.no-print {
|
.no-print {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.rs-table-bordered{
|
table.rs-table-bordered {
|
||||||
border:1px solid #000000;
|
border: 1px solid #000000;
|
||||||
margin-top:20px;
|
margin-top: 20px;
|
||||||
font-size: 14pt;
|
font-size: 14pt;
|
||||||
|
|
||||||
}
|
}
|
||||||
table.rs-table-bordered > thead > tr > th{
|
|
||||||
border:1px solid #000000;
|
table.rs-table-bordered > thead > tr > th {
|
||||||
|
border: 1px solid #000000;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
font-size: 14pt;
|
font-size: 14pt;
|
||||||
}
|
}
|
||||||
table.rs-table-bordered > tbody > tr > td{
|
|
||||||
border:1px solid #000000;
|
table.rs-table-bordered > tbody > tr > td {
|
||||||
|
border: 1px solid #000000;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
font-size: 14pt;
|
font-size: 14pt;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,109 +1,108 @@
|
|||||||
function clearTable() {
|
function clearTable() {
|
||||||
var table = document.getElementById("alldatatable");
|
var table = document.getElementById("alldatatable");
|
||||||
var rowCount = table.rows.length;
|
var rowCount = table.rows.length;
|
||||||
|
|
||||||
// Iterate through each row and remove it
|
// Iterate through each row and remove it
|
||||||
for (var i = rowCount - 1; i > 0; i--) {
|
for (var i = rowCount - 1; i > 0; i--) {
|
||||||
table.deleteRow(i);
|
table.deleteRow(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function getAllData(){
|
function getAllData() {
|
||||||
console.log('12321321')
|
|
||||||
clearTable();
|
|
||||||
|
|
||||||
let tableBody = document.getElementById('alldatatable').getElementsByTagName("tbody")[0];
|
clearTable();
|
||||||
i = 0;
|
|
||||||
$.getJSON("/getall", function(data) {
|
|
||||||
$.each(data, function(index, item) {
|
|
||||||
let newRow = tableBody.insertRow(tableBody.rows.length);
|
|
||||||
let cell1 = newRow.insertCell(0);
|
|
||||||
let cell2 = newRow.insertCell(1);
|
|
||||||
let cell3 = newRow.insertCell(2);
|
|
||||||
let cell4 = newRow.insertCell(3);
|
|
||||||
let cell5 = newRow.insertCell(4);
|
|
||||||
let cell6 = newRow.insertCell(5);
|
|
||||||
let cell7 = newRow.insertCell(6);
|
|
||||||
let cell8 = newRow.insertCell(7);
|
|
||||||
|
|
||||||
i++;
|
let tableBody = document.getElementById('alldatatable').getElementsByTagName("tbody")[0];
|
||||||
|
i = 0;
|
||||||
|
$.getJSON("/getall", function (data) {
|
||||||
|
$.each(data, function (index, item) {
|
||||||
|
let newRow = tableBody.insertRow(tableBody.rows.length);
|
||||||
|
let cell1 = newRow.insertCell(0);
|
||||||
|
let cell2 = newRow.insertCell(1);
|
||||||
|
let cell3 = newRow.insertCell(2);
|
||||||
|
let cell4 = newRow.insertCell(3);
|
||||||
|
let cell5 = newRow.insertCell(4);
|
||||||
|
let cell6 = newRow.insertCell(5);
|
||||||
|
let cell7 = newRow.insertCell(6);
|
||||||
|
let cell8 = newRow.insertCell(7);
|
||||||
|
|
||||||
cell1.innerText = i;
|
i++;
|
||||||
cell2.innerText = item.numberved;
|
|
||||||
cell3.innerText = item.invNumber;
|
|
||||||
cell4.innerText = item.nazvanie;
|
|
||||||
cell5.innerText = item.kolichestvo;
|
|
||||||
cell6.innerText = item.balancenumber;
|
|
||||||
cell7.innerText= item.aud;
|
|
||||||
cell8.innerText = item.raspologenie;
|
|
||||||
|
|
||||||
|
cell1.innerText = i;
|
||||||
$(newRow).data('itemData', i);
|
cell2.innerText = item.numberved;
|
||||||
|
cell3.innerText = item.invNumber;
|
||||||
|
cell4.innerText = item.nazvanie;
|
||||||
|
cell5.innerText = item.kolichestvo;
|
||||||
|
cell6.innerText = item.balancenumber;
|
||||||
|
cell7.innerText = item.aud;
|
||||||
|
cell8.innerText = item.raspologenie;
|
||||||
|
|
||||||
|
|
||||||
$(newRow).on("click", function() {
|
$(newRow).data('itemData', i);
|
||||||
|
|
||||||
let vednumbertxt = newRow.cells[1].innerText;
|
|
||||||
let invnomertxt = newRow.cells[2].innerText;
|
|
||||||
let nazvanietxt = newRow.cells[3].innerText;
|
|
||||||
let kolvotxt = newRow.cells[4].innerText;
|
|
||||||
let schettxt = newRow.cells[5].innerText;
|
|
||||||
let raspologtxt = newRow.cells[7].innerText;
|
|
||||||
|
|
||||||
|
|
||||||
$('#getmodal').modal('show');
|
$(newRow).on("click", function () {
|
||||||
|
|
||||||
|
|
||||||
let vedomost = document.getElementById('modal_vednumber')
|
|
||||||
let invnom = document.getElementById('modal_invnom')
|
|
||||||
let matcen = document.getElementById('modal_matcenn')
|
|
||||||
let kolvo = document.getElementById('modal_kolvo')
|
|
||||||
let balancenumber = document.getElementById('modal_balance')
|
|
||||||
let rasp = document.getElementById('modal_rapolog')
|
|
||||||
|
|
||||||
invnom.innerText = invnomertxt
|
let vednumbertxt = newRow.cells[1].innerText;
|
||||||
matcen.innerText = nazvanietxt.substring(0,20)
|
let invnomertxt = newRow.cells[2].innerText;
|
||||||
|
let nazvanietxt = newRow.cells[3].innerText;
|
||||||
|
let kolvotxt = newRow.cells[4].innerText;
|
||||||
|
let schettxt = newRow.cells[5].innerText;
|
||||||
|
let raspologtxt = newRow.cells[7].innerText;
|
||||||
|
|
||||||
if (vednumbertxt.length>0){
|
|
||||||
vedomost.value = vednumbertxt;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (kolvotxt.length>0){
|
|
||||||
kolvo.value = kolvotxt;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (schettxt.length>0){
|
|
||||||
balancenumber.value = schettxt;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (raspologtxt.length>0){
|
|
||||||
rasp.value = raspologtxt;
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
$('#getmodal').modal('show');
|
||||||
|
|
||||||
|
|
||||||
|
let vedomost = document.getElementById('modal_vednumber')
|
||||||
|
let invnom = document.getElementById('modal_invnom')
|
||||||
|
let matcen = document.getElementById('modal_matcenn')
|
||||||
|
let kolvo = document.getElementById('modal_kolvo')
|
||||||
|
let balancenumber = document.getElementById('modal_balance')
|
||||||
|
let rasp = document.getElementById('modal_rapolog')
|
||||||
|
|
||||||
|
invnom.innerText = invnomertxt
|
||||||
|
matcen.innerText = nazvanietxt.substring(0, 20)
|
||||||
|
|
||||||
|
if (vednumbertxt.length > 0) {
|
||||||
|
vedomost.value = vednumbertxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (kolvotxt.length > 0) {
|
||||||
|
kolvo.value = kolvotxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (schettxt.length > 0) {
|
||||||
|
balancenumber.value = schettxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (raspologtxt.length > 0) {
|
||||||
|
rasp.value = raspologtxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$(document).ready(function () {
|
||||||
|
|
||||||
getAllData();
|
getAllData();
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$('#modalclose').click(function () {
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
$('#modalclose').click(function(){
|
|
||||||
|
|
||||||
|
|
||||||
let vednumber = document.getElementById('modal_vednumber')
|
let vednumber = document.getElementById('modal_vednumber')
|
||||||
let kolvo = document.getElementById('modal_kolvo')
|
let kolvo = document.getElementById('modal_kolvo')
|
||||||
let balancenumber = document.getElementById('modal_balance')
|
let balancenumber = document.getElementById('modal_balance')
|
||||||
let matcen = document.getElementById('modal_matcenn')
|
let matcen = document.getElementById('modal_matcenn')
|
||||||
let rasp = document.getElementById('modal_rapolog')
|
let rasp = document.getElementById('modal_rapolog')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
vednumber.value = '';
|
vednumber.value = '';
|
||||||
@@ -113,11 +112,10 @@ $('#modalclose').click(function(){
|
|||||||
rasp.value = '';
|
rasp.value = '';
|
||||||
$('#getmodal').modal('hide')
|
$('#getmodal').modal('hide')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} )
|
})
|
||||||
|
|
||||||
$('#modalsavetodb').click(function(){
|
$('#modalsavetodb').click(function () {
|
||||||
|
|
||||||
let invnom = document.getElementById('modal_invnom')
|
let invnom = document.getElementById('modal_invnom')
|
||||||
let vednumber = document.getElementById('modal_vednumber')
|
let vednumber = document.getElementById('modal_vednumber')
|
||||||
@@ -126,8 +124,6 @@ $('#modalsavetodb').click(function(){
|
|||||||
let matcen = document.getElementById('modal_matcenn')
|
let matcen = document.getElementById('modal_matcenn')
|
||||||
let rasp = document.getElementById('modal_rapolog')
|
let rasp = document.getElementById('modal_rapolog')
|
||||||
let nazv = document.getElementById('modal_nazvanie')
|
let nazv = document.getElementById('modal_nazvanie')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
let changeddata = new Array()
|
let changeddata = new Array()
|
||||||
@@ -137,124 +133,150 @@ $('#modalsavetodb').click(function(){
|
|||||||
changeddata[2] = kolvo.value;
|
changeddata[2] = kolvo.value;
|
||||||
changeddata[3] = balancenumber.value;
|
changeddata[3] = balancenumber.value;
|
||||||
changeddata[4] = rasp.value;
|
changeddata[4] = rasp.value;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
let sendData = changeddata.join(',')
|
let sendData = changeddata.join(',')
|
||||||
console.log(sendData)
|
console.log(sendData)
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
|
|
||||||
url: "/addraspved",
|
url: "/addraspved",
|
||||||
type: "POST",
|
type: "POST",
|
||||||
contentType: "application/json;charset=utf-8",
|
contentType: "application/json;charset=utf-8",
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
data: sendData,
|
data: sendData,
|
||||||
|
|
||||||
success: function(){
|
success: function () {
|
||||||
$('#getmodal').modal('hide')
|
$('#getmodal').modal('hide')
|
||||||
|
|
||||||
vednumber.value = '';
|
|
||||||
kolvo.value = '';
|
|
||||||
balancenumber.value = '';
|
|
||||||
matcen.value = '';
|
|
||||||
rasp.value = '';
|
|
||||||
changeddata = [];
|
|
||||||
window.location.reload();
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
|
vednumber.value = '';
|
||||||
})
|
kolvo.value = '';
|
||||||
|
balancenumber.value = '';
|
||||||
|
matcen.value = '';
|
||||||
$('#addoborud').click(function(){
|
rasp.value = '';
|
||||||
|
changeddata = [];
|
||||||
$('#addmodal').modal('show');
|
window.location.reload();
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
$('#modal2savetodb').click(function(){
|
|
||||||
|
|
||||||
let invnomer = document.getElementById('modal2_invnom')
|
|
||||||
let vednumber = document.getElementById('modal2_vednumber')
|
|
||||||
let kolvo = document.getElementById('modal2_kolvo')
|
|
||||||
let balancenumber = document.getElementById('modal2_balance')
|
|
||||||
let matcen = document.getElementById('modal2_matcenn')
|
|
||||||
let rasp = document.getElementById('modal2_rapolog')
|
|
||||||
let nazv = document.getElementById('modal2_nazvanie')
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
let changeddata = new Array()
|
|
||||||
|
|
||||||
changeddata[0] = invnomer.value;
|
|
||||||
changeddata[1] = vednumber.value;
|
|
||||||
changeddata[2] = kolvo.value;
|
|
||||||
changeddata[3] = balancenumber.value;
|
|
||||||
changeddata[4] = rasp.value;
|
|
||||||
changeddata[5] = nazv.value;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
let sendData = changeddata.join(',')
|
|
||||||
console.log(sendData)
|
|
||||||
|
|
||||||
$.ajax({
|
|
||||||
|
|
||||||
url: "/addoborudasu",
|
|
||||||
type: "POST",
|
|
||||||
contentType: "application/json;charset=utf-8",
|
|
||||||
dataType: "json",
|
|
||||||
data: sendData,
|
|
||||||
|
|
||||||
success: function(){
|
|
||||||
vednumber.value = '';
|
|
||||||
invnomer.value= '';
|
|
||||||
nazvanie.value='';
|
|
||||||
kolvo.value = '';
|
|
||||||
balancenumber.value = '';
|
|
||||||
matcen.value = '';
|
|
||||||
rasp.value = '';
|
|
||||||
|
|
||||||
$('#addmodal').modal('hide')
|
|
||||||
window.location.reload()
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
$('#modal2close').click(function(){
|
|
||||||
|
|
||||||
|
$('#addoborud').click(function () {
|
||||||
let vednumber = document.getElementById('modal2_vednumber')
|
|
||||||
let invnomer = document.getElementById('modal2_invnom')
|
$('#addmodal').modal('show');
|
||||||
let nazvanie = document.getElementById('modal2_nazvanie')
|
|
||||||
let kolvo = document.getElementById('modal2_kolvo')
|
})
|
||||||
let balancenumber = document.getElementById('modal2_balance')
|
|
||||||
let matcen = document.getElementById('modal2_matcenn')
|
$('#modal2savetodb').click(function () {
|
||||||
let rasp = document.getElementById('modal2_rapolog')
|
|
||||||
|
let invnomer = document.getElementById('modal2_invnom')
|
||||||
|
let vednumber = document.getElementById('modal2_vednumber')
|
||||||
|
let kolvo = document.getElementById('modal2_kolvo')
|
||||||
|
let balancenumber = document.getElementById('modal2_balance')
|
||||||
|
let matcen = document.getElementById('modal2_matcenn')
|
||||||
|
let rasp = document.getElementById('modal2_rapolog')
|
||||||
|
let nazv = document.getElementById('modal2_nazvanie')
|
||||||
|
|
||||||
|
|
||||||
|
let changeddata = new Array()
|
||||||
|
|
||||||
vednumber.value = '';
|
changeddata[0] = invnomer.value;
|
||||||
invnomer.value= '';
|
changeddata[1] = vednumber.value;
|
||||||
nazvanie.value='';
|
changeddata[2] = kolvo.value;
|
||||||
kolvo.value = '';
|
changeddata[3] = balancenumber.value;
|
||||||
balancenumber.value = '';
|
changeddata[4] = rasp.value;
|
||||||
matcen.value = '';
|
changeddata[5] = nazv.value;
|
||||||
rasp.value = '';
|
|
||||||
|
|
||||||
$('#addmodal').modal('hide')
|
|
||||||
|
|
||||||
|
let sendData = changeddata.join(',')
|
||||||
|
console.log(sendData)
|
||||||
|
|
||||||
} )
|
$.ajax({
|
||||||
|
|
||||||
|
url: "/addoborudasu",
|
||||||
|
type: "POST",
|
||||||
|
contentType: "application/json;charset=utf-8",
|
||||||
|
dataType: "json",
|
||||||
|
data: sendData,
|
||||||
|
|
||||||
|
success: function () {
|
||||||
|
vednumber.value = '';
|
||||||
|
invnomer.value = '';
|
||||||
|
nazvanie.value = '';
|
||||||
|
kolvo.value = '';
|
||||||
|
balancenumber.value = '';
|
||||||
|
matcen.value = '';
|
||||||
|
rasp.value = '';
|
||||||
|
|
||||||
|
$('#addmodal').modal('hide')
|
||||||
|
window.location.reload()
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
$('#modal2close').click(function () {
|
||||||
|
|
||||||
|
|
||||||
|
let vednumber = document.getElementById('modal2_vednumber')
|
||||||
|
let invnomer = document.getElementById('modal2_invnom')
|
||||||
|
let nazvanie = document.getElementById('modal2_nazvanie')
|
||||||
|
let kolvo = document.getElementById('modal2_kolvo')
|
||||||
|
let balancenumber = document.getElementById('modal2_balance')
|
||||||
|
let matcen = document.getElementById('modal2_matcenn')
|
||||||
|
let rasp = document.getElementById('modal2_rapolog')
|
||||||
|
|
||||||
|
|
||||||
|
vednumber.value = '';
|
||||||
|
invnomer.value = '';
|
||||||
|
nazvanie.value = '';
|
||||||
|
kolvo.value = '';
|
||||||
|
balancenumber.value = '';
|
||||||
|
matcen.value = '';
|
||||||
|
rasp.value = '';
|
||||||
|
|
||||||
|
$('#addmodal').modal('hide')
|
||||||
|
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
$('#modal2').on('hidden.bs.modal', function () {
|
$('#modal2').on('hidden.bs.modal', function () {
|
||||||
location.reload();
|
location.reload();
|
||||||
})
|
})
|
||||||
|
|
||||||
|
$(document).ready(function () {
|
||||||
|
// Слушаем событие клика по заголовкам таблицы
|
||||||
|
$('#alldatatable thead th').on('click', function () {
|
||||||
|
var columnIndex = $(this).index(); // Индекс колонки
|
||||||
|
var sortColumn = $(this).text().toLowerCase(); // Текст заголовка колонки
|
||||||
|
|
||||||
|
// Сортируем таблицу по выбранной колонке
|
||||||
|
$('#alldatatable tbody tr').sort(function (a, b) {
|
||||||
|
var valA;
|
||||||
|
var valB;
|
||||||
|
|
||||||
|
if (isNaN(parseFloat($(a).find('td:eq(' + columnIndex + ')').text()))) {
|
||||||
|
// если это текстовая колонка, то сортируем по алфавиту
|
||||||
|
valA = $(a).find('td:eq(' + columnIndex + ')').text().toLowerCase();
|
||||||
|
valB = $(b).find('td:eq(' + columnIndex + ')').text().toLowerCase();
|
||||||
|
} else {
|
||||||
|
// если это числовая колонка, то сортируем по числовому значению
|
||||||
|
valA = parseFloat($(a).find('td:eq(' + columnIndex + ')').text());
|
||||||
|
valB = parseFloat($(b).find('td:eq(' + columnIndex + ')').text());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (valA < valB) return -1;
|
||||||
|
if (valA > valB) return 1;
|
||||||
|
return 0;
|
||||||
|
}).appendTo('#alldatatable tbody');
|
||||||
|
|
||||||
|
// Обновляем классы для активной колонки
|
||||||
|
$('#alldatatable thead th').removeClass('active');
|
||||||
|
$(this).addClass('active');
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -102,22 +102,22 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="row col-12">
|
<div class="row">
|
||||||
<div class=" card col-11">
|
|
||||||
<h3 id ='123' class=" no-print"> Все мат. ценности </h3>
|
<h3 id ='123' class=" no-print"> Все мат. ценности </h3>
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row col-12">
|
<div class="row col-12">
|
||||||
<button class="button" id="printallbutton"> Печать </button>
|
<button class="button" id="printallbutton"> Печать </button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row col-12">
|
<div class="row col-12">
|
||||||
<button class="button" id="addoborud"> Добавить </button>
|
<button class="button" id="addoborud"> Добавить </button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="card col-md-11 table-responsive">
|
<div class="card col-md-11 table-responsive">
|
||||||
<table id="alldatatable" class="alldatable table pagebreak" >
|
<table id="alldatatable" class="alldatable table pagebreak" >
|
||||||
@@ -137,7 +137,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
|
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
147
templates/all_OLD.html
Normal file
147
templates/all_OLD.html
Normal file
@@ -0,0 +1,147 @@
|
|||||||
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
<!-- Modal -->
|
||||||
|
<div class="modal fade" id="getmodal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
|
||||||
|
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-body" id="textarea">
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<a id="modal_invnom"> </a><a id="modal_matcenn"></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
№ из ведомости
|
||||||
|
<input type="text" class="form-control" id ='modal_vednumber' placeholder="Номер из ведомости">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
Количество
|
||||||
|
<input type="text" class="form-control" id ='modal_kolvo' placeholder="Количество">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
Балансовый счёт
|
||||||
|
<input type="text" class="form-control" id ='modal_balance' placeholder="Балансовый счёт">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
Расположение
|
||||||
|
<input type="text" class="form-control" id ='modal_rapolog' placeholder="Введите расположение">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-secondary" data-dismiss="modal" id="modalclose">Закрыть</button>
|
||||||
|
<button type="button" class="btn btn-primary" id="modalsavetodb" >Сохранить изменения</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Modal2 -->
|
||||||
|
<div class="modal fade" id="addmodal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
|
||||||
|
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-body" id="textarea">
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<a id="modal_invnom"> </a><a id="modal2_matcenn"></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
№ из ведомости
|
||||||
|
<input type="text" class="form-control" id ='modal2_vednumber' placeholder="Номер из ведомости">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
Инвентарный номер
|
||||||
|
<input type="text" class="form-control" id ='modal2_invnom' placeholder="Инвентарный номер">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
Название
|
||||||
|
<input type="text" class="form-control" id ='modal2_nazvanie' placeholder="Название">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
Количество
|
||||||
|
<input type="text" class="form-control" id ='modal2_kolvo' placeholder="Количество">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
Балансовый счёт
|
||||||
|
<input type="text" class="form-control" id ='modal2_balance' placeholder="Балансовый счёт">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
Расположение
|
||||||
|
<input type="text" class="form-control" id ='modal2_rapolog' placeholder="Введите расположение">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-secondary" data-dismiss="modal" id="modal2close">Закрыть</button>
|
||||||
|
<button type="button" class="btn btn-primary" id="modal2savetodb" >Сохранить изменения</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
<h3 id ='123' class=" no-print"> Все мат. ценности </h3>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row col-12">
|
||||||
|
<button class="button" id="printallbutton"> Печать </button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row col-12">
|
||||||
|
<button class="button" id="addoborud"> Добавить </button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="card col-md-11 table-responsive">
|
||||||
|
<table id="alldatatable" class="alldatable table pagebreak" >
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">№ <br>п/п <br>АСУ</th>
|
||||||
|
<th scope="col">№ п/п <br>вед</th>
|
||||||
|
<th scope="col">Инв. номер</th>
|
||||||
|
<th scope="col">Название</th>
|
||||||
|
<th scope="col">Кол-во</th>
|
||||||
|
<th scope="col">Счёт</th>
|
||||||
|
<th scope="col">Ауд - я</th>
|
||||||
|
<th scope="col">Расположение</th>
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tr>
|
||||||
|
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script src="{{url_for('static', filename='js/allmatc.js') }}"></script>
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
62
templates/login.html
Normal file
62
templates/login.html
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="card col-4" >
|
||||||
|
<div class="card-body">
|
||||||
|
|
||||||
|
|
||||||
|
<form class="form-horizontal">
|
||||||
|
<fieldset>
|
||||||
|
|
||||||
|
<!-- Form Name -->
|
||||||
|
<legend>Авторизация</legend>
|
||||||
|
|
||||||
|
<!-- Text input-->
|
||||||
|
<div class="form-group">
|
||||||
|
<label control-label" for="logininput">Логин</label>
|
||||||
|
<div>
|
||||||
|
<input id="logininput" name="logininput" type="text" placeholder="Введите логин" class="form-control input-md">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Password input-->
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="control-label" for="passwordinput">Пароль</label>
|
||||||
|
<input id="passwordinput" name="passwordinput" type="password" placeholder="Введите пароль" class="form-control input-md">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
<button id="btn_login" name="btn_login" class="btn btn-primary">Войти</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</fieldset>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
@@ -3,96 +3,98 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
|
||||||
<!-- Modal -->
|
<!-- Modal -->
|
||||||
<div class="modal fade" id="getmodal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
|
<div class="modal fade" id="getmodal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle"
|
||||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
aria-hidden="true">
|
||||||
<div class="modal-content">
|
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||||
<div class="modal-body" id="textarea">
|
<div class="modal-content">
|
||||||
|
<div class="modal-body" id="textarea">
|
||||||
|
|
||||||
|
<input type="text" class="form-control" id='vednumber' placeholder="Номер из веломости">
|
||||||
<input type="text" class="form-control" id ='vednumber' placeholder="Номер из веломости">
|
<input type="text" class="form-control" id='rapolog' placeholder="Введите расположение">
|
||||||
<input type="text" class="form-control" id ='rapolog' placeholder="Введите расположение">
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<a id="modal_invnom"> </a><a id="modal_matcenn"></a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<form method="POST" action="/addraspved">
|
||||||
|
<div class="row">
|
||||||
|
№ из ведомости
|
||||||
|
<input type="text" class="form-control" name="modal_vednumber" id='modal_vednumber'
|
||||||
|
placeholder="Номер из ведомости">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
Расположение
|
||||||
|
<input type="text" class="form-control" name="modal_rapolog" id='modal_rapolog'
|
||||||
|
placeholder="Введите расположение">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</form>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-secondary" data-dismiss="modal" id="modalclose">Закрыть
|
||||||
|
</button>
|
||||||
|
<button type="button" class="btn btn-primary" id="modalsavetodb">Сохранить изменения</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<a id="modal_invnom"> </a><a id="modal_matcenn"></a>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form method="POST" action="/addraspved">
|
|
||||||
<div class="row">
|
|
||||||
№ из ведомости
|
|
||||||
<input type="text" class="form-control" name="modal_vednumber" id ='modal_vednumber' placeholder="Номер из ведомости">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
Расположение
|
|
||||||
<input type="text" class="form-control" name="modal_rapolog" id ='modal_rapolog' placeholder="Введите расположение">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</form>
|
|
||||||
<div class="modal-footer">
|
|
||||||
<button type="button" class="btn btn-secondary" data-dismiss="modal" id="modalclose">Закрыть</button>
|
|
||||||
<button type="button" class="btn btn-primary" id="modalsavetodb" >Сохранить изменения</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="row no-print">
|
<div class="row no-print">
|
||||||
<div class="card col-md-10 col-10">
|
<div class="card col-md-10 col-10">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
|
|
||||||
|
|
||||||
<select name="auditory" id="auditory">
|
|
||||||
|
|
||||||
{% for item in aud: %}
|
<select name="auditory" id="auditory">
|
||||||
<option name="optauditory" value="{{item.id}}">{{ item.audnazvanie }}</option>
|
|
||||||
{% endfor %}
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<button id="searchbutton"> Найти </button>
|
{% for item in aud: %}
|
||||||
<button id="printbutton"> Печать </button>
|
<option name="optauditory" value="{{ item.id }}">{{ item.audnazvanie }}</option>
|
||||||
|
{% endfor %}
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<button id="searchbutton"> Найти</button>
|
||||||
|
<button id="printbutton"> Печать</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="card col-md-10 col-10">
|
<div class="card col-md-10 col-10">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h3 class="card-title no-print"> Поаудиторно </h3>
|
<h3 class="card-title no-print"> Поаудиторно </h3>
|
||||||
|
|
||||||
<table class="table " id="datatable" >
|
|
||||||
|
|
||||||
<th >Номер в Инв. вед</th>
|
|
||||||
<th >Инв. номер</th>
|
|
||||||
<th >Название</th>
|
|
||||||
<th class="no-print">Аудитория</th>
|
|
||||||
<th >Расположение</th>
|
|
||||||
|
|
||||||
|
<table class="table " id="datatable">
|
||||||
{% for item in res: %}
|
|
||||||
|
<th>Номер в Инв. вед</th>
|
||||||
<td> <input type="hidden" name="invnomer" value="{{ item[0] }}"> {{ item[0] }} </td>
|
<th>Инв. номер</th>
|
||||||
<td> {{ item[1] }} </td>
|
<th>Название</th>
|
||||||
<td class="no-print"> {{item[2]}} </td>
|
<th class="no-print">Аудитория</th>
|
||||||
<td id="proverka"> Проверено </td>
|
<th>Расположение</th>
|
||||||
|
|
||||||
{% endfor %}
|
|
||||||
</table>
|
{% for item in res %}
|
||||||
</div>
|
|
||||||
|
<td><input type="hidden" name="invnomer" value="{{ item[0] }}"> {{ item[0] }} </td>
|
||||||
|
<td> {{ item[1] }} </td>
|
||||||
|
<td class="no-print"> {{ item[2] }} </td>
|
||||||
|
<td id="proverka"> Проверено</td>
|
||||||
|
|
||||||
|
{% endfor %}
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{%endblock%}
|
{% endblock %}
|
||||||
Reference in New Issue
Block a user