Retail_manager/RMData/dbo/Stored Procedures/spSaleLookUp.sql
s459315 f0bea75284 Add Saving Cart to the DB
All the changes necessary to save shopping cart to DB
2022-07-25 17:02:36 +02:00

12 lines
204 B
Transact-SQL

CREATE PROCEDURE [dbo].[spSaleLookUp]
@CashierId nvarchar(128),
@SaleDate datetime2
AS
BEGIN
SET NOCOUNT ON;
Select Id
from dbo.Sale
where CashierId = @CashierId and SaleDate = @SaleDate;
END