-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathScriptV8.sql
3364 lines (3059 loc) · 102 KB
/
ScriptV8.sql
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
use master
if exists(select * from sys.databases where name='TECA')-- solo existen los objetos sys.databases y sys.sysdatabases
drop database TECA
PRINT N'1.base eliminada'
go
create database TECA
PRINT N'2.base creada '
go
--crear los esquemas respectivos para cada Modulo
use TECA
go
create schema Seguridad
go
create schema Compras
go
create schema Facturacion
go
create schema CuentaxPagar
go
create schema CuentasPorCobrar
go
create schema Inventario
go
create schema Contabilidad
go
create schema RecursosHumanos
go
create schema ActivoFijo
go
create schema Taller
go
--crear las tablas y anadirlas al esquema de su repectivo modulo
--seguridad
create table Seguridad.Estado
(
IdEstado int primary key,
Descripcion varchar(220)
)
go
--Estado usados en procesos de compras
Create table Compras.Estado
(
idEstado int primary key,
Descripcion varchar (100)
)
go
create table Seguridad.Imagen
(
IdImagen int primary key,
Descripcion varchar(50),
Imagen image
)
go
create table Seguridad.Empresa
(
IdEmpresa int primary key,
RazonSocial varchar (50),
NombreComercial varchar (50),
Ruc varchar (20),
Direccion varchar (200),
Logotipo image,
FechaInicioSistema datetime,
Correo varchar (70),
SitioWeb varchar (70),
Sector varchar (15),
Descripcion varchar (250),
IdEstado int foreign key references Seguridad.Estado on delete cascade
)
go
/**************************Recursos humanos******************************
************************************************************************/
/*TIPO PERSONA*/
create table RecursosHumanos.TipoPersona
(
IdTipoPersona int not null primary key,
Descripcion varchar(50) not null,
IdEmpresa int not null,
IdEstado int not null,
foreign key (IdEmpresa) references Seguridad.Empresa ,
foreign key (IdEstado) references Seguridad.Estado
)
go
/*TIPO IDENTIFICACION*/
create table RecursosHumanos.TipoIdentificacion
(
IdTipoIdentificacion int not null primary key,
descripcion varchar (50) not null,
IdEmpresa int not null,
IdEstado int not null,
foreign key (IdEmpresa) references Seguridad.Empresa,
)
go
/*PERSONA*/
create table RecursosHumanos.Persona
(
IdPersona int not null primary key,
Identificacion numeric(14,0) not null,
IdTipoPersona int not null,
IdEmpresa int not null,
NombreRazonSocial varchar(100) not null,
Apellido varchar(50)null,
FechaNacimiento datetime null,
genero char(1) null,
TipoIdentificacion int not null,
direccion varchar (100) not null,
TelefonoGneral numeric(14,0)null,
TelefonoMovil numeric(14,0)not null,
TelefonoCasa numeric (14,0) not null,
TelefonoOtros numeric (14,0) null,
mail varchar (50) not null,
IdEstado int not null,
foreign key (IdEmpresa) references Seguridad.Empresa,
foreign key (IdTipoPersona)references RecursosHumanos.TipoPersona,
foreign key (TipoIdentificacion)references RecursosHumanos.TipoIdentificacion
)
go
/*CLIENTE*/
--create table RecursosHumanos.Cliente
--(
-- IdCliente int not null primary key,
-- IdPersona int not null,
-- IdEmpresa int not null,
-- IdEstado int not null,
-- foreign key (IdEmpresa) references Seguridad.Empresa,
-- foreign key (IdEstado) references Seguridad.Estado,
-- foreign key (IdPersona) references RecursosHumanos.Persona
--)
--go
/*EMPLEADO*/
create table RecursosHumanos.Empleado
(
IdEmpresa int not null,
IdEmpleado int not null,
IdPersona int not null,
IdEstado int not null,
Sueldo money not null,
primary key (IdEmpresa,IdPersona),
foreign key (IdEstado)references Seguridad.Estado,
foreign key (IdEmpresa)references Seguridad.Empresa,
foreign key (IdPersona)references RecursosHumanos.Persona
)
go
/*MATERNIDAD*/
create table RecursosHumanos.Maternidad
(
NumMaternidad int not null primary key,
IdEmpleado int not null,
IdEmpresa int not null,
FechaParto datetime not null,
FechaInicio datetime not null,
FechaFin datetime not null,
FechaModificacion datetime,
IdEstado int not null,
foreign key (IdEstado)references Seguridad.Estado,
foreign key (IdEmpleado,IdEmpresa)references RecursosHumanos.Empleado
)
go
/*DEPARTAMENTO*/
create table RecursosHumanos.Departamento
(
IdDepartamento int not null primary key,
Descripcion varchar(50)not null,
IdEstado int not null,
)
go
/*PERFIL*/
create table Seguridad.Perfil
(
IdPerfil int primary key,
Descripcion varchar (70),
IdEstado int references Seguridad.Estado on delete cascade,
)
go
/*USUARIO*/
create table Seguridad.Usuario
(
IdUsuario int,
NombreUsuario varchar(20) not null unique,
Contrasena varchar(220) not null,
IdEstado int references Seguridad.Estado on delete cascade,
IdImagen int references Seguridad.Imagen on delete cascade,
IdPerfil int ,
primary key(IdUsuario),
-- foreign key(IdPerfil) references Seguridad.Perfil,
foreign key (IdUsuario) references RecursosHumanos.Persona on delete cascade --el id usuario es el mismo q id persona
)
go
create table Seguridad.Historial(
IdHistorial int primary key,
IdUsuario int not null,
FechaInicioSesion datetime not null
foreign key(IdUsuario) references Seguridad.Usuario
)
go
/*PROVEEDOR REasignado a Compras.Proveedor hasta que RRHH tome la batuta*/
create table RecursosHumanos.Proveedor
(
IdProveedor int not null primary key,
IdPersona int not null,
foreign key (IdPersona)references RecursosHumanos.Persona
)
go
/*CURSO*/
create table RecursosHumanos.Curso
(
IdCurso int primary key,
IdEmpresa int not null,
FechaInicio date not null,
FechaFinal date not null,
foreign key (IdEmpresa)references Seguridad.Empresa
)
go
/*UNIVERSIDAD*/
create table RecursosHumanos.Universidad
(
IdUniversidad int primary key,
IdEmpresa int not null,
Nombre varchar(30) not null,
foreign key (IdEmpresa)references Seguridad.Empresa
)
go
/*PERSONAxCURSO*/
create table RecursosHumanos.PersonaxCurso
(
IdPersonaxCurso int not null primary key,
IdPersona int not null,
IdEmpresa int not null,
IdCurso int not null,
foreign key (IdEmpresa) references Seguridad.Empresa,
foreign key (IdPersona)references RecursosHumanos.Persona,
foreign key (IdCurso)references RecursosHumanos.Curso
)
go
/*TIPO TELEFONO*/
create table RecursosHumanos.TipoTelefono
(
IdTipoTelefono int not null primary key,
Descripcion varchar(30) not null,
IdEmpresa int not null,
IdEstado int not null,
foreign key (IdEstado) references Seguridad.Estado,
foreign key (IdEmpresa) references Seguridad.Empresa
)
go
/*TELEFONO*/
create table RecursosHumanos.Telefono
(
IdTelefono int not null primary key,
Numero int not null,
IdTipoTelefono int not null,
foreign key (IdTipoTelefono) references RecursosHumanos.TipoTelefono
)
go
/*TITULO*/
create table RecursosHumanos.Titulo
(
IdTitulo int primary key,
Nombre varchar(50),
FechaInicio date not null,
FechaFinal date not null,
IdEstado int not null,
IdUniversidad int not null,
IdEmpresa int not null,
foreign key (IdEmpresa) references Seguridad.Empresa,
foreign key (IdUniversidad)references RecursosHumanos.Universidad,
)
go
/*TIPO JORNADA*/
create Table RecursosHumanos.TipoJornada
(
IdTipoJornada int primary key,
Descripcion varchar(45),
IdEmpresa int not null,
foreign key (IdEmpresa) references Seguridad.Empresa
)
go
/*JORNADA*/
create table RecursosHumanos.Jornada
(
IdJornada int not null primary key,
Fecha datetime not null,
FechaModificacion datetime,
HoraInicio time not null,
HoraFinal time not null,
IdEmpresa int not null,
IdTipoJornada int not null,
IdPersona int not null,
foreign key (IdTipoJornada) references RecursosHumanos.TipoJornada,
foreign key (IdEmpresa) references Seguridad.Empresa,
foreign key (IdPersona) references RecursosHumanos.Persona
)
go
/*MULTA*/
create table RecursosHumanos.Multa
(
IdMulta int primary key,
Descripcion varchar(45),
Porcentaje float not null,
IdEmpresa int not null,
IdEstado int not null,
foreign key (IdEmpresa) references Seguridad.Empresa,
)
go
/*MULTAxPERSONA*/
create table RecursosHumanos.MultaxPersona
(
IdPersona int not null,
IdMulta int not null,
FechaEmision date not null,
FechaModificacion datetime,
IdEmpresa int not null,
IdEstado int not null,
primary key (idpersona,idmulta),
foreign key (IdMulta) references RecursosHumanos.Multa,
foreign key (IdEmpresa) references Seguridad.Empresa,
foreign key (IdPersona) references RecursosHumanos.Persona
)
go
/*PERSONAxDEPARTAMENTO*/
create table RecursosHumanos.PersonaxDepartamento
(
IdEmpresa int not null,
IdPersona int not null,
IdDepartamento int not null,
IdEstado int not null,
primary key (idpersona,iddepartamento),
foreign key (IdDepartamento) references RecursosHumanos.Departamento,
foreign key (IdEmpresa)references Seguridad.Empresa,
foreign key (IdPersona) references RecursosHumanos.Persona
)
go
/*CARGO*/
create table RecursosHumanos.Cargo
(
IdCargo int not null primary key,
Descripcion varchar(45) not null,
Sueldo numeric(10,2) not null,
IdEstado int not null,
)
go
/*CARGOxDEPARTAMENTO*/
create table RecursosHumanos.CargoxDepartamento
(
IdDepartamento int not null,
IdCargo int not null,
FechaCreacion date not null,
FechaModificacion datetime null,
IdEstado int not null,
primary key (idCargo,idDepartamento),
foreign key (IdCargo) references RecursosHumanos.Cargo,
foreign key (IdDepartamento) references RecursosHumanos.Departamento
)
go
/*RUBRO*/
create table RecursosHumanos.Rubro
(
IdRubro int not null primary key,
Descripcion varchar(45) not null,
Porcentaje float not null,
IdEstado int not null,
IdEmpresa int not null,
IdCargo int not null,
IdDepartamento int not null,
foreign key (IdCargo,IdDepartamento) references RecursosHumanos.CargoxDepartamento,
foreign key (IdEmpresa) references Seguridad.Empresa
)
go
/*PERSONAxTITULO*/
create table RecursosHumanos.PersonaxTitulo
(
IdTitulo int not null,
IdEmpresa int not null,
IdPersona int not null,
IdEstado int not null,
primary key (idpersona,idtitulo),
foreign key (IdTitulo) references RecursosHumanos.Titulo,
foreign key (IdEmpresa) references Seguridad.Empresa,
foreign key (IdPersona) references RecursosHumanos.Persona
)
go
/*ACADEMICO*/
create table RecursosHumanos.Academico
(
IdAcademico int not null,
IdPersona int not null,
IdTitulo int not null,
IdEmpresa int not null,
IdUniversidad int not null,
IdEstado int not null,
primary key (IdAcademico),
foreign key (IdPersona) references RecursosHumanos.Persona,
foreign key (IdTitulo) references RecursosHumanos.Titulo,
foreign key (IdEmpresa) references Seguridad.Empresa,
foreign key (IdUniversidad) references RecursosHumanos.Universidad,
)
go
/*PERSONAxCARGO*/
create table RecursosHumanos.PersonaxCargo
(
IdPersona int not null,
IdEmpresa int not null,
IdCargo int not null,
FechaIngreso datetime not null,
FechaModificacion datetime null,
IdEstado int not null,
primary key (idPersona,IdCargo),
foreign key (IdPersona) references RecursosHumanos.Persona,
foreign key (IdEmpresa) references Seguridad.Empresa,
foreign key (Idcargo) references RecursosHumanos.Cargo
)
go
/*PARENTESCO*/
create table RecursosHumanos.Parentesco
(
IdParentesco int not null primary key,
Descripcion varchar(50) not null,
IdEmpresa int not null,
IdEstado int not null,
foreign key (IdEmpresa) references Seguridad.Empresa
)
go
/*CARGA FAMILIAR*/
create table RecursosHumanos.CargaFamiliar
(
IdPersona int not null,
IdParentesco int not null,
IdEmpresa int not null,
FechaNacimiento date not null,
FechaRegistro date not null,
FechaModificacion datetime,
IdEstado int not null,
primary key (idpersona,idparentesco),
foreign key (IdEmpresa) references Seguridad.Empresa,
foreign key (IdPersona) references RecursosHumanos.Persona,
foreign key (IdParentesco) references RecursosHumanos.Parentesco
)
go
/*ANTICIPO CABECERA*/
create table RecursosHumanos.AnticipoCab
(
NumAnticipo int not null,
Fecha date not null,
FechaModificacion datetime,
Total numeric(10,2) not null,
Observacion varchar(50) null,
IdEmpresa int not null,
IdEstado int not null,
Porcentaje int not null,
foreign key (IdEmpresa) references Seguridad.Empresa,
primary key (NumAnticipo, IdEmpresa)
)
go
/*ANTICIPO DETALLE*/
create table RecursosHumanos.AnticipoDet
(
NumLinea int not null,
NumAnticipo int not null,
IdPersona int not null,
ValorLiquido money not null,
IdEmpresa int not null references Seguridad.Empresa,
foreign key (NumAnticipo, IdEmpresa) references RecursosHumanos.AnticipoCab,
foreign key (IdPersona) references RecursosHumanos.Persona,
primary key (NumLinea,IdEmpresa)
)
go
/*BENEFICIOS*/
create table RecursosHumanos.Beneficios
(
IdBeneficios int primary key,
Descripcion varchar(50) not null,
Porcentaje numeric(10,2) not null,
IdEmpresa int not null,
foreign key (IdEmpresa)references Seguridad.Empresa
)
go
/*NOMINA CABECERA*/
create table RecursosHumanos.NominaCab
(
NumNomina int not null,
Fecha date not null,
FechaModificacion datetime,
Periodo int not null,
Total money not null,
IdEstado int not null,
IdEmpresa int not null,
Observacion varchar(50) null,
foreign key (IdEmpresa) references Seguridad.Empresa,
primary key (NumNomina,IdEmpresa)
)
go
/*NOMINA DETALLE*/
create table RecursosHumanos.NominaDet
(
NumLinea int not null,
NumNomina int not null,
IdPersona int not null,
SueldoNominal money not null,
SueldoGanado money not null,
Iess money not null,
Prestamo money null,
Anticipo money null,
ValorLiquido money not null,
IdEmpresa int not null,
foreign key (NumNomina,IdEmpresa)references RecursosHumanos.NominaCab,
primary key (NumLinea)
)
go
/*TIPO CONTRATO*/
create table RecursosHumanos.TipoContrato
(
IdTipoContrato int not null primary key,
Descripcion varchar(50) not null,
Periodo varchar(50) not null,
IdEmpresa int not null,
IdEstado int not null,
foreign key (IdEmpresa) references Seguridad.Empresa
)
go
/*CONTRATO*/
create table RecursosHumanos.Contrato
(
NumContrato int not null,
IdPersona int not null,
IdTipoContrato int not null,
IdCargo int not null,
IdEmpresa int not null,
Fecha datetime not null,
FechaModificacion datetime,
Remuneracion numeric(10,2) not null,
IdJornada int not null,
PeriodoPrueba bit not null,
Discapacidad bit,
grado int,
TipoDiscapacidad int,
Carnet numeric(29,0),
IdEstado int not null,
primary key (IdPersona,NumContrato,idEmpresa),
foreign key (IdEmpresa) references Seguridad.Empresa,
foreign key (IdPersona) references RecursosHumanos.Persona,
foreign key (IdTipoContrato) references RecursosHumanos.TipoContrato,
foreign key (IdCargo) references RecursosHumanos.Cargo,
foreign key (IdJornada) references RecursosHumanos.Jornada
)
go
/*TIPO PERMISO*/
create table RecursosHumanos.TipoPermiso
(
IdTipoPermiso int not null primary key,
Descripcion varchar(50) not null,
IdEmpresa int not null,
IdEstado int not null,
foreign key (IdEmpresa) references Seguridad.Empresa
)
go
/*PERMISO*/
create table RecursosHumanos.Permiso
(
NumPermiso int primary key,
IdUsuario int not null,
IdEmpleado int not null,
IdTipoPermiso int not null,
FechaInicio datetime not null,
FechaFinal datetime not null,
FechaModificacion datetime,
IdEstado int not null,
IdEmpresa int not null,
foreign key (IdUsuario) references Seguridad.Usuario,
foreign key (IdEmpleado) references RecursosHumanos.Persona,
foreign key (IdTipoPermiso) references RecursosHumanos.TipoPermiso,
foreign key (IdEmpresa) references Seguridad.Empresa
)
go
/*LIQUIDACION*/
create table RecursosHumanos.Liquidacion
(
NumLiquidacion int not null,
IdPersona int not null,
NumContrato int not null,
IdEmpresa int not null,
Fecha datetime not null,
FechaModificacion datetime,
Causa varchar(150) not null,
FechaSalida datetime not null,
Ingresos numeric(10,2) not null,
Egresos numeric(10,2) not null,
Total numeric(10,2) not null,
IdEstado int not null,
primary key (NumLiquidacion,IdEmpresa,Idpersona),
foreign key (IdPersona,NumContrato,IdEmpresa) references RecursosHumanos.Contrato,
foreign key (IdPersona) references RecursosHumanos.persona,
foreign key (IdEmpresa) references Seguridad.Empresa,
)
go
/*VACACION*/
create table RecursosHumanos.Vacacion
(
NumVacacion int not null primary key,
IdEmpleado int not null,
FechaModificacion datetime,
FechaInicio date not null,
FechaFin date not null,
IdEmpresa int not null,
IdEstado int not null,
foreign key (IdEmpleado) references RecursosHumanos.Persona,
foreign key (IdEmpresa) references Seguridad.Empresa,
)
go
/*TIPO PRESTAMO*/
create table RecursosHumanos.TipoPrestamo
(
IdTipoPrestamo int not null primary key,
Nombre varchar(50) not null,
IdEmpresa int not null,
IdEstado int not null,
foreign key (IdEmpresa) references Seguridad.Empresa
)
go
/*PRESTAMO*/
create table RecursosHumanos.Prestamo
(
IdPrestamo int not null primary key,
IdPersona int not null,
FechaModificacion datetime,
Monto money not null,
Pago money not null,
Interes decimal not null,
Total money not null,
TotalPagado money not null,
Periodos int not null,
IdEstado int not null,
IdEmpresa int not null,
foreign key (IdPersona) references RecursosHumanos.Persona,
foreign key (IdEmpresa) references Seguridad.Empresa,
)
go
/*TRABAJO DIARIO CABECERA*/
create table RecursosHumanos.TrabajoDiario
(
NumTrabajo int not null,
IdPersna int not null,
FechaDesde datetime not null,
FechaHasta datetime not null,
NDias int not null,
HoraEntrada varchar(50) not null,
HoraSalida varchar(50) not null,
HoraTrabajada int not null,
HoraExtraM int null,
HoraExtraT int null,
HoraRango int not null,
IdEstado int not null,
IdEmpresa int not null,
Observacion varchar(50) null,
foreign key (IdEmpresa) references Seguridad.Empresa,
primary key (NumTrabajo,IdEmpresa)
)
go
/****************************SEGURIDAD****************************/
/*USUARIO POR EMPRESA*/
create table Seguridad.UsuarioPorEmpresa
(
IdUsuario int,
IdEmpresa int,
Descripcion varchar(1),
foreign key(IdUsuario)references Seguridad.Usuario on delete cascade,
foreign key(IdEmpresa)references Seguridad.Empresa,
primary key(IdUsuario,IdEmpresa)
)
go
/*MODULO*/
create table Seguridad.Modulo
(
IdModulo int primary key,
Nombre varchar(50),
IdEstado int references Seguridad.Estado on delete cascade,
Logo varchar(50)
)
go
/*MENU*/
create table Seguridad.Menu
(
IdMenu int primary key,
IdModulo int references Seguridad.Modulo on delete cascade,
IdPadre int references Seguridad.Menu,
Descripcion varchar (255),
NombreFormulario varchar (255),
NombreAssembly varchar (200),
IdEstado int references Seguridad.Estado,
)
go
/*MENU POR EMPRESA*/
--create table Seguridad.MenuPorEmpresa
--(
-- IdEmpresa int references Seguridad.Empresa on delete cascade,
-- IdMenu int references Seguridad.Menu,
-- NombreAsamblyPorEmpresa varchar (200),
-- NomFormularioPorEmpresa varchar (200),
-- IdEstado int references Seguridad.Estado,
-- primary key(IdMenu,IdEmpresa)
--)
--go
create table Seguridad.Horario
(
IdHorario int,
IdPerfil int references Seguridad.Perfil on delete cascade,
Secuencia int ,
dia varchar(10),
H00 bit not null,
H01 bit not null,
H02 bit not null,
H03 bit not null,
H04 bit not null,
H05 bit not null,
H06 bit not null,
H07 bit not null,
H08 bit not null,
H09 bit not null,
H10 bit not null,
H11 bit not null,
H12 bit not null,
H13 bit not null,
H14 bit not null,
H15 bit not null,
H16 bit not null,
H17 bit not null,
H18 bit not null,
H19 bit not null,
H20 bit not null,
H21 bit not null,
H22 bit not null,
H23 bit not null,
primary key (IdHorario,IdPerfil,Secuencia)
)
go
/*PERMISO*/
create table Seguridad.Permiso
(
IdPerfil int references Seguridad.Perfil on delete cascade,
IdPermiso int,
IdMenu int references Seguridad.Menu,
IdModulo int references Seguridad.Modulo,
Lectura bit not null,
Escritura bit not null,
Eliminacion bit not null,
primary key (IdPerfil,IdPermiso)
)
go
/*TELEFONO POR EMPRESA*/
create table Seguridad.TelefonoEmpresa --E editada agregado
(
IdEmpresa int references Seguridad.Empresa on delete cascade,
IdTelefono int references RecursosHumanos.Telefono on delete cascade,
primary key (IdEmpresa,IdTelefono)
)
go
/*************************************contabilidad***********************************/
create table Contabilidad.TipoCuenta
(
IdTipoCuenta numeric(2,0) primary key,
nombre varchar(20) not null
)
go
/*tabla de seguridad*/
create table Contabilidad.AnoFiscal
(
IdAnoFiscal numeric(4) primary key,
inicio_periodo date not null,
IdUsuario int,
FechaModificacion datetime,
)
go
create table Contabilidad.NivelCuenta
(
IdNivelCuenta numeric(2,0) primary key,
descripcion varchar(20),
digitos numeric(1) not null,
IdEstado int not null references Seguridad.Estado
)
go
create table Contabilidad.PeriodoContable
(
IdEmpresa int references Seguridad.Empresa,
IdPeriodoContable numeric(6),
IdAFiscal numeric(4) references Contabilidad.AnoFiscal,
FechaInicio date not null,
FechaFin date not null,
IdEstado int not null references Seguridad.Estado,
IdUsuario int not null references Seguridad.Usuario,
FechaModificacion datetime,
PRIMARY KEY(IdEmpresa,IdPeriodoContable,IdAFiscal)
)
go
create table Contabilidad.Cuenta
(
IdEmpresa int references Seguridad.Empresa,
IdCuenta varchar(50),
codigo_padre varchar(50), --E codigo_padre
nombre varchar(50) not null,
descripcion varchar(80) not null,
IdNivelCuenta numeric(2,0)not null references Contabilidad.NivelCuenta,
IdTipoCuenta numeric(2,0) not null references Contabilidad.TipoCuenta,
naturaleza_cuenta varchar(50) not null,
IdUsuario int not null references Seguridad.Usuario,
FechaModificacion datetime,
PRIMARY KEY(IdEmpresa, IdCuenta)
)
go
create table Contabilidad.TipoTransaccion
(
IdTransaccion int primary key,
modulo int references Seguridad.Modulo not null,
TipoDocumento varchar(50),
descripcion varchar(50) not null
)
go
create table Contabilidad.CabeceraComprobante
(
IdEmpresa int ,
numero_comprobante numeric(4) ,
fecha date not null,
glosa varchar(500) not null,
periodo_contable numeric(6,0) ,
periodo_contable_IdAFiscal numeric(4,0),
IdUsuario int,
FechaModificacion datetime,
TipoTransaccion int,
primary key(IdEmpresa, numero_comprobante),
foreign key(IdEmpresa,periodo_contable,periodo_contable_IdAFiscal) references Contabilidad.PeriodoContable,
foreign key(TipoTransaccion) references Contabilidad.TipoTransaccion,
foreign key(IdEmpresa) references Seguridad.Empresa
)
create table Contabilidad.DetalleComprobante
(
IdEmpresa int,
cabecera_comprobante numeric (4),
linea_comprobante numeric(2,0) not null,
cuenta varchar(50) not null,
debe decimal(14,2) not null,
haber decimal(14,2) not null,
foreign key (IdEmpresa)references Seguridad.Empresa,
foreign key (IdEmpresa,cuenta)references Contabilidad.Cuenta,
foreign key (IdEmpresa,cabecera_comprobante)references Contabilidad.CabeceraComprobante,
primary key (IdEmpresa,cabecera_comprobante, linea_comprobante)
)
go
create table Contabilidad.Saldo
(
IdEmpresa int,
cuenta varchar(50) not null,
fecha date,
saldo_deudor decimal(14,2) not null,
saldo_acreedor decimal(14,2) not null,
IdUsuario int,
FechaModificacion datetime,
foreign key (IdEmpresa)references Seguridad.Empresa,
foreign key (IdEmpresa,cuenta)references Contabilidad.Cuenta,
primary key (IdEmpresa,cuenta,fecha)
)
go
create table Contabilidad.ModeloAsiento
(
IdEmpresa int references Seguridad.Empresa,
modulo int references Seguridad.Modulo,
IdTransaccion int references Contabilidad.TipoTransaccion,
secuencia int ,
descripcion varchar(50) not null,
debe varchar(50),
haber varchar(50),
IdUsuario int,
FechaModificacion datetime,
PRIMARY KEY(IdEmpresa,secuencia,IdTransaccion)
)
go
--Inventario
create table Inventario.TipoArticulo
(
IdEmpresa int,
IdTipoArticulo int not null,
Descripcion varchar(500)not null,
IdEstado int,
primary key (IdTipoArticulo),
foreign key (IdEmpresa) references Seguridad.Empresa,
foreign key (IdEstado) references Seguridad.Estado,
)
go
create table Inventario.Grupo
(
IdEmpresa int,
IdGrupo int not null,
Descripcion varchar(100) not null,
IdTipoArticulo int,
IdEstado int,
primary key (IdGrupo),