SqlReports
Changes
GetTotalEncashmentsStats.sql 29(+29 -0)
Details
GetTotalEncashmentsStats.sql 29(+29 -0)
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