Initial commit

This commit is contained in:
user
2026-07-12 13:56:05 +04:00
commit 04bf3a4b58
850 changed files with 9057 additions and 0 deletions
@@ -0,0 +1,18 @@
USE [Database]
IF OBJECT_ID('[Procedures].[update_barcode]', 'P') IS NOT NULL
DROP PROCEDURE [Procedures].[update_barcode];
GO
CREATE PROCEDURE [Procedures].[update_barcode]
@product_id INT,
@barcode BIGINT
AS
BEGIN TRANSACTION;
SET NOCOUNT ON;
UPDATE [Tables].[products]
SET [barcode] = @barcode
WHERE [id] = @product_id
COMMIT TRANSACTION;
GO