Spaces:
Running
Running
File size: 22,692 Bytes
e2876c9 60ad812 830abe8 fff872d e1998b1 fff872d e1998b1 830abe8 e2876c9 77b52b6 e2876c9 fff872d 830abe8 77b52b6 e2876c9 3864576 e2876c9 4200f05 e2876c9 4a07d88 e2876c9 3864576 e2876c9 3864576 e2876c9 60ad812 cf89e57 e40b433 3b0bfca e40b433 3b0bfca cf89e57 e2876c9 4200f05 e2876c9 4200f05 4a07d88 e2876c9 2a46e2b 4200f05 2a46e2b 4a07d88 e256951 e40b433 cf89e57 e256951 2a46e2b fb83dd0 e256951 e40b433 3b0bfca 830abe8 3b0bfca e40b433 4200f05 830abe8 3b0bfca 830abe8 3b0bfca 4200f05 3b0bfca ad7b8c2 bc54026 4200f05 3b0bfca 96d309a 3b0bfca 96d309a 3b0bfca 96d309a cf89e57 96d309a fb83dd0 96d309a a64efe0 311bae6 96d309a 77b52b6 31ee7e7 bc54026 4200f05 77b52b6 3b0bfca 2165ac9 3b0bfca 6da199c bc54026 6da199c e54f3bc bc54026 e54f3bc bc54026 e54f3bc 77b52b6 3b0bfca 77b52b6 aa75c22 77b52b6 aa75c22 77b52b6 3b0bfca 99f280c 77b52b6 a64efe0 77b52b6 3b0bfca 77b52b6 bc54026 4200f05 77b52b6 3b0bfca 77b52b6 3b0bfca 99f280c a50d805 77b52b6 3b0bfca 2165ac9 a50d805 31ee7e7 a50d805 2165ac9 3b0bfca 58b4907 aa75c22 58b4907 3b0bfca |
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 |
document.addEventListener('DOMContentLoaded', function () {
const productForm = document.getElementById('productForm');
const productTable = document.getElementById('productTable').getElementsByTagName('tbody')[0];
const searchInput = document.getElementById('searchInput');
const cartTable = document.getElementById('cartTable').getElementsByTagName('tbody')[0];
const totalSoldElement = document.getElementById('totalSold');
const totalRevenueElement = document.getElementById('totalRevenue');
const totalProfitElement = document.getElementById('totalProfit');
let totalSold = 0; // Общее количество проданных товаров
let totalRevenue = 0; // Общая выручка
let totalProfit = 0; // Общая прибыль
let cart = []; // Корзина
// Массив для хранения чеков
let receipts = JSON.parse(localStorage.getItem('receipts')) || [];
// Загрузка данных из localStorage при загрузке страницы
loadProducts();
loadStats();
loadCart();
updateReceiptsList();
// Обработка добавления товара
productForm.addEventListener('submit', function (e) {
e.preventDefault();
const productName = document.getElementById('productName').value.trim();
const purchasePrice = parseFloat(document.getElementById('purchasePrice').value);
const wholesalePrice = parseFloat(document.getElementById('wholesalePrice').value) || null;
const retailPrice = parseFloat(document.getElementById('retailPrice').value) || null;
const quantity = parseInt(document.getElementById('quantity').value);
const itemsPerPack = parseInt(document.getElementById('itemsPerPack').value);
// Проверка обязательных полей
if (!productName || isNaN(purchasePrice) || isNaN(quantity) || isNaN(itemsPerPack)) {
alert('Пожалуйста, заполните все обязательные поля корректно.');
return;
}
// Добавляем товар
addProduct(productName, purchasePrice, wholesalePrice, retailPrice, quantity, itemsPerPack);
productForm.reset(); // Очистка формы после добавления
});
// Поиск по товарам
searchInput.addEventListener('input', function () {
const searchTerm = searchInput.value.toLowerCase();
const rows = productTable.getElementsByTagName('tr');
for (let row of rows) {
const name = row.getElementsByTagName('td')[0]?.textContent.toLowerCase();
if (name) {
row.style.display = name.includes(searchTerm) ? '' : 'none';
}
}
});
// Делегирование событий для кнопок в таблице товаров
productTable.addEventListener('click', function (e) {
const target = e.target;
const row = target.closest('tr');
const productId = parseInt(row.getAttribute('data-id'));
if (target.classList.contains('add-to-cart-btn')) {
const quantityInput = row.querySelector('.quantity-input');
const quantity = parseInt(quantityInput.value);
const isWholesale = row.querySelector('.wholesale-checkbox').checked; // Проверяем галочку
if (quantity && quantity > 0) {
addToCart(productId, quantity, isWholesale);
} else {
alert('Пожалуйста, введите корректное количество.');
}
} else if (target.classList.contains('add-stock-btn')) {
addStock(productId);
} else if (target.classList.contains('delete-btn')) {
deleteProduct(productId);
}
});
// Делегирование событий для кнопок в корзине
cartTable.addEventListener('click', function (e) {
const target = e.target;
if (target.classList.contains('delete-btn')) {
const row = target.closest('tr');
const productId = parseInt(row.getAttribute('data-id'));
removeFromCart(productId);
}
});
// Функция добавления товара
function addProduct(name, purchasePrice, wholesalePrice, retailPrice, quantity, itemsPerPack) {
const product = {
id: Date.now(), // Уникальный ID на основе времени
name,
purchasePrice,
wholesalePrice,
retailPrice,
quantity,
itemsPerPack
};
// Получаем текущие товары из localStorage
let products = JSON.parse(localStorage.getItem('products')) || [];
products.push(product); // Добавляем новый товар
localStorage.setItem('products', JSON.stringify(products)); // Сохраняем в localStorage
// Добавляем товар в таблицу
addProductToTable(product);
}
// Функция добавления товара в таблицу
function addProductToTable(product) {
const row = productTable.insertRow();
row.setAttribute('data-id', product.id);
row.innerHTML = `
<td>${product.name}</td>
<td>${product.purchasePrice}</td>
<td>${product.wholesalePrice || '—'}</td>
<td>${product.retailPrice || '—'}</td>
<td>${product.quantity}</td>
<td>${product.itemsPerPack}</td>
<td class="actions">
<input type="number" min="1" max="${product.quantity}" class="quantity-input" placeholder="Количество">
<label>
<input type="checkbox" class="wholesale-checkbox"> Опт
</label>
<button class="add-to-cart-btn">Добавить в корзину</button>
<button class="add-stock-btn">Приход</button>
<button class="delete-btn">Удалить</button>
</td>
`;
}
// Функция загрузки товаров из localStorage
function loadProducts() {
const products = JSON.parse(localStorage.getItem('products')) || [];
productTable.innerHTML = ''; // Очищаем таблицу перед загрузкой
products.forEach(product => addProductToTable(product));
}
// Функция загрузки статистики из localStorage
function loadStats() {
const stats = JSON.parse(localStorage.getItem('stats')) || { totalSold: 0, totalRevenue: 0, totalProfit: 0 };
totalSold = stats.totalSold;
totalRevenue = stats.totalRevenue;
totalProfit = stats.totalProfit;
updateStatsDisplay();
}
// Функция загрузки корзины из localStorage
function loadCart() {
cart = JSON.parse(localStorage.getItem('cart')) || [];
updateCartDisplay();
}
// Функция обновления отображения статистики
function updateStatsDisplay() {
totalSoldElement.textContent = totalSold;
totalRevenueElement.textContent = totalRevenue.toFixed(2);
totalProfitElement.textContent = totalProfit.toFixed(2);
}
// Функция обновления отображения корзины
function updateCartDisplay() {
cartTable.innerHTML = ''; // Очищаем корзину перед обновлением
cart.forEach(item => {
const row = cartTable.insertRow();
row.setAttribute('data-id', item.id);
row.innerHTML = `
<td>${item.name}</td>
<td>${item.quantity}</td>
<td>${item.salePrice}</td>
<td>${item.saleType}</td>
<td>${item.quantity * item.salePrice}</td>
<td><button class="delete-btn">Удалить</button></td>
`;
});
}
// Функция добавления товара в корзину
function addToCart(productId, quantity, isWholesale) {
const products = JSON.parse(localStorage.getItem('products')) || [];
const product = products.find(p => p.id === productId);
if (product && product.quantity >= quantity) {
const saleType = isWholesale ? 'опт' : 'розница';
const price = isWholesale ? product.wholesalePrice : product.retailPrice;
if (!price) {
alert(`Цена для типа продажи "${saleType}" не указана.`);
return;
}
const cartItem = cart.find(item => item.id === productId && item.saleType === saleType);
if (cartItem) {
cartItem.quantity += quantity;
} else {
cart.push({
id: productId,
name: product.name,
salePrice: price,
purchasePrice: product.purchasePrice,
quantity: quantity,
itemsPerPack: product.itemsPerPack, // Добавляем количество штук в пачке
saleType: saleType
});
}
localStorage.setItem('cart', JSON.stringify(cart));
updateCartDisplay();
} else {
alert('Недостаточно товара на складе.');
}
}
// Функция удаления товара из корзины
function removeFromCart(productId) {
cart = cart.filter(item => item.id !== productId);
localStorage.setItem('cart', JSON.stringify(cart));
updateCartDisplay();
}
// Функция продажи товаров из корзины
window.sellCart = function () {
if (cart.length === 0) {
alert('Корзина пуста.');
return;
}
// Получаем сумму скидки
const discountInput = document.getElementById('discountInput');
const discount = parseFloat(discountInput.value) || 0; // Если скидка не указана, считаем её равной 0
// Получаем текущую дату и время по бишкекскому времени
const now = new Date();
const options = { timeZone: 'Asia/Bishkek', year: 'numeric', month: 'long', day: 'numeric', hour: '2-digit', minute: '2-digit', second: '2-digit' };
const receiptDateTime = now.toLocaleString('ru-RU', options);
// Создаем чек
const receipt = {
dateTime: receiptDateTime,
items: cart.map(item => ({
name: item.name,
quantity: item.quantity,
salePrice: item.salePrice,
purchasePrice: item.purchasePrice,
itemsPerPack: item.itemsPerPack, // Добавляем количество штук в пачке
saleType: item.saleType
})),
discount: discount
};
// Отображаем чек в модальном окне
openReceiptForConfirmation(receipt);
};
// Функция для открытия модального окна с подтверждением продажи
function openReceiptForConfirmation(receipt) {
const modal = document.getElementById('receiptModal');
const receiptTable = document.getElementById('receiptTable').getElementsByTagName('tbody')[0];
// Заполняем дату и время
document.getElementById('receiptDateTime').textContent = receipt.dateTime;
// Заполняем таблицу товаров
receiptTable.innerHTML = '';
let totalAmount = 0;
receipt.items.forEach(item => {
const row = receiptTable.insertRow();
row.innerHTML = `
<td>${item.name}</td>
<td>${item.quantity} (${item.itemsPerPack} шт/уп)</td>
<td>${item.salePrice} (${item.saleType})</td>
<td>${item.quantity * item.salePrice}</td>
`;
totalAmount += item.quantity * item.salePrice;
});
// Отображаем общую сумму, скидку и итоговую сумму
document.getElementById('receiptTotal').textContent = totalAmount.toFixed(2);
document.getElementById('receiptDiscount').textContent = receipt.discount.toFixed(2);
document.getElementById('receiptFinalTotal').textContent = (totalAmount - receipt.discount).toFixed(2);
// Показываем кнопку "Подтвердить" для завершения продажи
document.getElementById('confirmSaleBtn').style.display = 'inline-block';
// Показываем модальное окно
modal.style.display = 'flex';
// Обработчик для кнопки "Подтвердить"
document.getElementById('confirmSaleBtn').onclick = function () {
// Обновляем остатки на складе
updateStockAfterSale(receipt);
// Обновляем статистику
updateStatistics(receipt);
// Сохраняем чек
saveReceipt(receipt);
// Очищаем корзину
cart = [];
localStorage.setItem('cart', JSON.stringify(cart));
updateCartDisplay();
// Скрываем модальное окно
modal.style.display = 'none';
alert('Продажа успешно завершена!');
};
// Обработчик для кнопки "Отмена"
document.getElementById('cancelSaleBtn').onclick = function () {
modal.style.display = 'none'; // Скрываем модальное окно
};
// Обработчик для закрытия модального окна (крестик)
document.querySelector('.modal .close').onclick = function () {
modal.style.display = 'none'; // Скрываем модальное окно
};
}
// Функция для уменьшения остатков на складе после продажи
function updateStockAfterSale(receipt) {
let products = JSON.parse(localStorage.getItem('products')) || [];
receipt.items.forEach(item => {
const product = products.find(p => p.name === item.name);
if (product) {
product.quantity -= item.quantity; // Уменьшаем количество товара на складе
// Если остаток стал меньше 0, устанавливаем его в 0
if (product.quantity < 0) {
product.quantity = 0;
}
}
});
// Сохраняем обновленные товары
localStorage.setItem('products', JSON.stringify(products));
// Обновляем таблицу товаров
productTable.innerHTML = '';
loadProducts();
}
// Функция для сохранения чека
function saveReceipt(receipt) {
receipts.push(receipt);
localStorage.setItem('receipts', JSON.stringify(receipts));
updateReceiptsList();
}
// Функция для обновления списка чеков
function updateReceiptsList(receiptsToShow = receipts) {
const receiptsList = document.getElementById('receiptsList');
receiptsList.innerHTML = ''; // Очищаем список перед обновлением
receiptsToShow.forEach((receipt, index) => {
const receiptItem = document.createElement('div');
receiptItem.className = 'receipt-item';
receiptItem.textContent = `Чек от ${receipt.dateTime}`;
receiptItem.onclick = () => openReceipt(index);
receiptsList.appendChild(receiptItem);
});
}
// Функция для открытия чека (из отчетов)
function openReceipt(index) {
const receipt = receipts[index];
const modal = document.getElementById('receiptModal');
const receiptTable = document.getElementById('receiptTable').getElementsByTagName('tbody')[0];
// Заполняем дату и время
document.getElementById('receiptDateTime').textContent = receipt.dateTime;
// Заполняем таблицу товаров
receiptTable.innerHTML = '';
let totalAmount = 0;
receipt.items.forEach(item => {
const row = receiptTable.insertRow();
row.innerHTML = `
<td>${item.name}</td>
<td>${item.quantity} (${item.itemsPerPack} шт/уп)</td>
<td>${item.salePrice} (${item.saleType})</td>
<td>${item.quantity * item.salePrice}</td>
`;
totalAmount += item.quantity * item.salePrice;
});
// Отображаем общую сумму, скидку и итоговую сумму
document.getElementById('receiptTotal').textContent = totalAmount.toFixed(2);
document.getElementById('receiptDiscount').textContent = receipt.discount.toFixed(2);
document.getElementById('receiptFinalTotal').textContent = (totalAmount - receipt.discount).toFixed(2);
// Убираем кнопку "Подтвердить" при просмотре чека (для отчетов)
document.getElementById('confirmSaleBtn').style.display = 'none';
// Показываем модальное окно
modal.style.display = 'flex';
}
// Функция для обновления статистики
function updateStatistics(receipt) {
receipt.items.forEach(item => {
totalSold += item.quantity;
totalRevenue += item.quantity * item.salePrice;
// Прибыль = (отпускная цена - приходная цена) * количество
const purchasePrice = item.purchasePrice || 0; // Если purchasePrice отсутствует, считаем его равным 0
totalProfit += item.quantity * (item.salePrice - purchasePrice);
});
// Вычитаем скидку из прибыли
totalProfit -= receipt.discount;
// Сохраняем обновленные данные
localStorage.setItem('stats', JSON.stringify({ totalSold, totalRevenue, totalProfit }));
updateStatsDisplay();
}
// Функция добавления остатков
function addStock(productId) {
const quantityToAdd = prompt('Введите количество для прихода:');
if (quantityToAdd && !isNaN(quantityToAdd) && quantityToAdd > 0) {
let products = JSON.parse(localStorage.getItem('products')) || [];
const productIndex = products.findIndex(p => p.id === productId);
if (productIndex !== -1) {
products[productIndex].quantity += parseInt(quantityToAdd);
localStorage.setItem('products', JSON.stringify(products));
// Обновляем таблицу
productTable.innerHTML = '';
loadProducts();
}
} else {
alert('Пожалуйста, введите корректное количество.');
}
}
// Функция удаления товара
function deleteProduct(productId) {
if (confirm('Вы уверены, что хотите удалить этот товар?')) {
let products = JSON.parse(localStorage.getItem('products')) || [];
products = products.filter(p => p.id !== productId);
localStorage.setItem('products', JSON.stringify(products));
// Обновляем таблицу
productTable.innerHTML = '';
loadProducts();
}
}
// Функция для переключения бургер-меню
window.toggleMenu = function () {
const menuItems = document.querySelector('.menu-items');
menuItems.style.display = menuItems.style.display === 'block' ? 'none' : 'block';
};
// Функция для отображения выбранного раздела
window.showSection = function (sectionId) {
// Скрываем все колонки
document.querySelectorAll('.column').forEach(column => {
column.classList.remove('active');
});
// Показываем выбранную колонку
document.getElementById(sectionId).classList.add('active');
// Скрываем меню после выбора
document.querySelector('.menu-items').style.display = 'none';
};
// Функция для фильтрации чеков по дате
window.filterReceiptsByDate = function () {
const filterDateInput = document.getElementById('filterDateInput');
const filterDate = filterDateInput.value; // Получаем выбранную дату
if (!filterDate) {
alert('Пожалуйста, выберите дату для фильтрации.');
return;
}
// Фильтруем чеки по выбранной дате
const filteredReceipts = receipts.filter(receipt => {
const receiptDate = new Date(receipt.dateTime).toISOString().split('T')[0]; // Получаем дату чека
return receiptDate === filterDate; // Сравниваем с выбранной датой
});
// Обновляем список чеков
updateReceiptsList(filteredReceipts);
};
// Функция для сброса фильтрации
window.clearDateFilter = function () {
document.getElementById('filterDateInput').value = ''; // Очищаем поле ввода даты
updateReceiptsList(receipts); // Показываем все чеки
};
// Показываем Инвентарь по умолчанию
showSection('inventory');
}); |