Project

General

Profile

Actions

Feature #697

open

Work Order #91: WO2025-31

Feature #471: Task 17289: Búsqueda: Pagos (Rol Administrador)

Permisos de búsqueda de aranceles

Added by Cristian López about 2 months ago. Updated 27 days ago.

Status:
Test Internally
Priority:
Normal
Category:
Reported Internally
Target version:
-
Start date:
10/21/2025
Due date:
% Done:

0%

Estimated time:

Description

Añadir permisos para poder manejar la búsqueda de aranceles.

Actions #1

Updated by Cristian López about 2 months ago

Categoría:

BEGIN TRANSACTION
    DECLARE @CurrentDate DATETIME = GETDATE() 
    DECLARE @AdminID UNIQUEIDENTIFIER
        SELECT @AdminID = UserId 
        FROM SUMACUserDetail 
        WHERE UserName = 'ADMINISTRADOR'
		INSERT INTO SUMACCatalogValue (
			Code
			,DescriptionES
			,CatalogTypeCode
			,IsLocked
			,CreatedDate
			,CreatedBy
			,ModifiedDate
			,ModifiedBy
		)
		VALUES (
			56
			,'Búsqueda de Aranceles'
			,1
			,1
			,@CurrentDate
			,@AdminID
			,@CurrentDate
			,@AdminID
		)
COMMIT;

Privilegio (lectura):

BEGIN TRANSACTION
    DECLARE @CurrentDate DATETIME = GETDATE() 
    DECLARE @AdminID UNIQUEIDENTIFIER
        SELECT @AdminID = UserId 
        FROM SUMACUserDetail 
        WHERE UserName = 'ADMINISTRADOR'
		INSERT INTO SUMACPrivilege (
			PrivilegeCode
			,CategoryCode
			,ActionCode
			,CreatedDate
			,CreatedBy
			,ModifiedDate
			,ModifiedBy
		)
		VALUES (
			62
			,56
			,1
			,@CurrentDate
			,@AdminID
			,@CurrentDate
			,@AdminID
		)
COMMIT;
Actions #2

Updated by Cristian López about 2 months ago

  • Parent task set to #471
Actions #3

Updated by Cristian López about 2 months ago

  • Status changed from In Progress to Paused
Actions #4

Updated by Miguel Gonzalez 27 days ago

  • Status changed from Paused to Approved
Actions #5

Updated by Miguel Gonzalez 27 days ago

  • Status changed from Approved to Test Internally
Actions

Also available in: Atom PDF