SqlReports

+

8/27/2020 10:22:47 AM

Changes

Details

diff --git a/GetTotalEncashmentsStats.sql b/GetTotalEncashmentsStats.sql
new file mode 100644
index 0000000..c7a814a
--- /dev/null
+++ b/GetTotalEncashmentsStats.sql
@@ -0,0 +1,29 @@
+
+set noexec off
+go
+if object_id('GetTotalEncashmentsStats') is not null
+begin
+	set noexec on
+end	
+go
+-- ������� ������ ������
+-- ���������� ������� �������� ���������
+create procedure dbo.GetTotalEncashmentsStats as
+raiserror ('������ ������. ������ ��� ��������� �������', -- Message text.
+				16, -- Severity.
+				1 -- State.
+			);
+go
+set noexec off
+go
+alter procedure dbo.GetTotalEncashmentsStats
+(
+	@CompanyID int,
+	@DateFrom DateTime,
+	@DateTo DateTime,
+) 
+as
+
+begin
+
+end
\ No newline at end of file