@aldiokta/protocgen 1.0.69 → 1.0.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prisca/v1/account_assignment/account_assignment_grpc_pb.js +177 -0
- package/prisca/v1/account_assignment/account_assignment_pb.js +2522 -0
- package/prisca/v1/account_group/account_group_grpc_pb.js +178 -0
- package/prisca/v1/account_group/account_group_pb.js +2755 -0
- package/prisca/v1/chart_of_account/chart_of_account_grpc_pb.js +177 -0
- package/prisca/v1/chart_of_account/chart_of_account_pb.js +2522 -0
- package/prisca/v1/document_type/document_type_grpc_pb.js +178 -0
- package/prisca/v1/document_type/document_type_pb.js +2746 -0
- package/prisca/v1/general_ledger_account/general_ledger_account_grpc_pb.js +181 -0
- package/prisca/v1/general_ledger_account/general_ledger_account_pb.js +3276 -0
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +454 -0
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +11152 -0
- package/prisca/v1/purchasing_group/purchasing_group_grpc_pb.js +178 -0
- package/prisca/v1/purchasing_group/purchasing_group_pb.js +2875 -0
- package/prisca/v1/purchasing_organization/purchasing_organization_grpc_pb.js +145 -0
- package/prisca/v1/purchasing_organization/purchasing_organization_pb.js +2139 -0
- package/prisca/v1/purchasing_organization_assignment/purchasing_organization_assignment_grpc_pb.js +146 -0
- package/prisca/v1/purchasing_organization_assignment/purchasing_organization_assignment_pb.js +2183 -0
- package/prisca/v1/purchasing_organization_plant/purchasing_organization_plant_grpc_pb.js +145 -0
- package/prisca/v1/purchasing_organization_plant/purchasing_organization_plant_pb.js +2543 -0
- package/prisca/v1/account_assignment/account_assignment.proto +0 -75
- package/prisca/v1/account_group/account_group.proto +0 -81
- package/prisca/v1/chart_of_account/chart_of_account.proto +0 -75
- package/prisca/v1/document_type/document_type.proto +0 -80
- package/prisca/v1/general_ledger_account/general_ledger_account.proto +0 -98
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx.proto +0 -343
- package/prisca/v1/purchasing_group/purchasing_group.proto +0 -87
- package/prisca/v1/purchasing_organization/purchasing_organization.proto +0 -68
- package/prisca/v1/purchasing_organization_assignment/purchasing_organization_assignment.proto +0 -70
- package/prisca/v1/purchasing_organization_plant/purchasing_organization_plant.proto +0 -80
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
option go_package = "gitlab.com/integra_sm/prisca-v2-purchase-requisition-domain/protocgen/prisca/v1/account_assignment;account_assignment";
|
|
4
|
-
|
|
5
|
-
import "prisca/v1/global/meta/meta.proto";
|
|
6
|
-
|
|
7
|
-
service AccountAssignmentService {
|
|
8
|
-
rpc CreateAccountAssignment(CreateAccountAssignmentRequest)
|
|
9
|
-
returns (CreateAccountAssignmentResponse);
|
|
10
|
-
rpc UpdateAccountAssignment(UpdateAccountAssignmentRequest)
|
|
11
|
-
returns (UpdateAccountAssignmentResponse);
|
|
12
|
-
rpc GetAccountAssignmentById(GetAccountAssignmentByIdRequest)
|
|
13
|
-
returns (GetAccountAssignmentByIdResponse);
|
|
14
|
-
rpc GetListAccountAssignment(GetListAccountAssignmentRequest)
|
|
15
|
-
returns (GetListAccountAssignmentResponse);
|
|
16
|
-
rpc DeleteAccountAssignment(DeleteAccountAssignmentRequest)
|
|
17
|
-
returns (DeleteAccountAssignmentResponse);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
message AccountAssignment {
|
|
21
|
-
int64 id = 1;
|
|
22
|
-
string category = 2;
|
|
23
|
-
string category_description = 3;
|
|
24
|
-
string references_id = 4;
|
|
25
|
-
string created_at = 5; // Use ISO 8601 format for date strings
|
|
26
|
-
string updated_at = 6; // Optional, nullable
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
message BaseAccountAssignment {
|
|
30
|
-
string category = 1;
|
|
31
|
-
string category_description = 2;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
message CreateAccountAssignmentRequest {
|
|
35
|
-
BaseAccountAssignment base_account_assignment = 1;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
message CreateAccountAssignmentResponse {
|
|
39
|
-
AccountAssignment account_assignment = 1;
|
|
40
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
message UpdateAccountAssignmentRequest {
|
|
44
|
-
string references_id = 1;
|
|
45
|
-
BaseAccountAssignment base_account_assignment = 2;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
message UpdateAccountAssignmentResponse {
|
|
49
|
-
AccountAssignment account_assignment = 1;
|
|
50
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
message GetAccountAssignmentByIdRequest { string references_id = 1; }
|
|
54
|
-
|
|
55
|
-
message GetAccountAssignmentByIdResponse {
|
|
56
|
-
AccountAssignment account_assignment = 1;
|
|
57
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
message GetListAccountAssignmentRequest {
|
|
61
|
-
prisca.v1.global.meta.PaginationRequest pagination = 1;
|
|
62
|
-
prisca.v1.global.meta.FilterRequest query = 2;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
message GetListAccountAssignmentResponse {
|
|
66
|
-
repeated AccountAssignment account_assignments = 1;
|
|
67
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
message DeleteAccountAssignmentRequest { string references_id = 1; }
|
|
71
|
-
|
|
72
|
-
message DeleteAccountAssignmentResponse {
|
|
73
|
-
string references_id = 1;
|
|
74
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
75
|
-
}
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
option go_package = "gitlab.com/integra_sm/prisca-v2-purchase-requisition-domain/protocgen/prisca/v1/account_group;account_group";
|
|
4
|
-
|
|
5
|
-
import "prisca/v1/global/meta/meta.proto";
|
|
6
|
-
import "prisca/v1/chart_of_account/chart_of_account.proto";
|
|
7
|
-
|
|
8
|
-
service AccountGroupService {
|
|
9
|
-
rpc CreateAccountGroup(CreateAccountGroupRequest)
|
|
10
|
-
returns (CreateAccountGroupResponse);
|
|
11
|
-
rpc UpdateAccountGroup(UpdateAccountGroupRequest)
|
|
12
|
-
returns (UpdateAccountGroupResponse);
|
|
13
|
-
rpc GetAccountGroupById(GetAccountGroupByIdRequest)
|
|
14
|
-
returns (GetAccountGroupByIdResponse);
|
|
15
|
-
rpc GetListAccountGroup(GetListAccountGroupRequest)
|
|
16
|
-
returns (GetListAccountGroupResponse);
|
|
17
|
-
rpc DeleteAccountGroup(DeleteAccountGroupRequest)
|
|
18
|
-
returns (DeleteAccountGroupResponse);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
message AccountGroup {
|
|
22
|
-
int64 id = 1;
|
|
23
|
-
string code = 2;
|
|
24
|
-
string name = 3;
|
|
25
|
-
string from_account = 4;
|
|
26
|
-
string to_account = 5;
|
|
27
|
-
string chart_of_account_ref = 6;
|
|
28
|
-
string references_id = 7;
|
|
29
|
-
string created_at = 8; // Use ISO 8601 format for date strings
|
|
30
|
-
string updated_at = 9; // Optional, nullable
|
|
31
|
-
optional ChartOfAccount chart_of_account = 10;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
message BaseAccountGroup {
|
|
35
|
-
string code = 1;
|
|
36
|
-
string name = 2;
|
|
37
|
-
string from_account = 3;
|
|
38
|
-
string to_account = 4;
|
|
39
|
-
string chart_of_account_ref = 5;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
message CreateAccountGroupRequest { BaseAccountGroup base_account_group = 1; }
|
|
43
|
-
|
|
44
|
-
message CreateAccountGroupResponse {
|
|
45
|
-
AccountGroup account_group = 1;
|
|
46
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
message UpdateAccountGroupRequest {
|
|
50
|
-
string references_id = 1;
|
|
51
|
-
BaseAccountGroup base_account_group = 2;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
message UpdateAccountGroupResponse {
|
|
55
|
-
AccountGroup account_group = 1;
|
|
56
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
message GetAccountGroupByIdRequest { string references_id = 1; }
|
|
60
|
-
|
|
61
|
-
message GetAccountGroupByIdResponse {
|
|
62
|
-
AccountGroup account_group = 1;
|
|
63
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
message GetListAccountGroupRequest {
|
|
67
|
-
prisca.v1.global.meta.PaginationRequest pagination = 1;
|
|
68
|
-
prisca.v1.global.meta.FilterRequest query = 2;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
message GetListAccountGroupResponse {
|
|
72
|
-
repeated AccountGroup account_groups = 1;
|
|
73
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
message DeleteAccountGroupRequest { string references_id = 1; }
|
|
77
|
-
|
|
78
|
-
message DeleteAccountGroupResponse {
|
|
79
|
-
string references_id = 1;
|
|
80
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
81
|
-
}
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
option go_package = "gitlab.com/integra_sm/prisca-v2-purchase-requisition-domain/protocgen/prisca/v1/chart_of_account;chart_of_account";
|
|
4
|
-
|
|
5
|
-
import "prisca/v1/global/meta/meta.proto";
|
|
6
|
-
|
|
7
|
-
service ChartOfAccountService {
|
|
8
|
-
rpc CreateChartOfAccount(CreateChartOfAccountRequest)
|
|
9
|
-
returns (CreateChartOfAccountResponse);
|
|
10
|
-
rpc UpdateChartOfAccount(UpdateChartOfAccountRequest)
|
|
11
|
-
returns (UpdateChartOfAccountResponse);
|
|
12
|
-
rpc GetChartOfAccountById(GetChartOfAccountByIdRequest)
|
|
13
|
-
returns (GetChartOfAccountByIdResponse);
|
|
14
|
-
rpc GetListChartOfAccount(GetListChartOfAccountRequest)
|
|
15
|
-
returns (GetListChartOfAccountResponse);
|
|
16
|
-
rpc DeleteChartOfAccount(DeleteChartOfAccountRequest)
|
|
17
|
-
returns (DeleteChartOfAccountResponse);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
message ChartOfAccount {
|
|
21
|
-
int64 id = 1;
|
|
22
|
-
string code = 2;
|
|
23
|
-
string code_description = 3;
|
|
24
|
-
string references_id = 4;
|
|
25
|
-
string created_at = 5; // Use ISO 8601 format for date strings
|
|
26
|
-
string updated_at = 6; // Optional, nullable
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
message BaseChartOfAccount {
|
|
30
|
-
string code = 1;
|
|
31
|
-
string code_description = 2;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
message CreateChartOfAccountRequest {
|
|
35
|
-
BaseChartOfAccount base_chart_of_account = 1;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
message CreateChartOfAccountResponse {
|
|
39
|
-
ChartOfAccount chart_of_account = 1;
|
|
40
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
message UpdateChartOfAccountRequest {
|
|
44
|
-
string references_id = 1;
|
|
45
|
-
BaseChartOfAccount base_chart_of_account = 2;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
message UpdateChartOfAccountResponse {
|
|
49
|
-
ChartOfAccount chart_of_account = 1;
|
|
50
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
message GetChartOfAccountByIdRequest { string references_id = 1; }
|
|
54
|
-
|
|
55
|
-
message GetChartOfAccountByIdResponse {
|
|
56
|
-
ChartOfAccount chart_of_account = 1;
|
|
57
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
message GetListChartOfAccountRequest {
|
|
61
|
-
prisca.v1.global.meta.PaginationRequest pagination = 1;
|
|
62
|
-
prisca.v1.global.meta.FilterRequest query = 2;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
message GetListChartOfAccountResponse {
|
|
66
|
-
repeated ChartOfAccount chart_of_accounts = 1;
|
|
67
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
message DeleteChartOfAccountRequest { string references_id = 1; }
|
|
71
|
-
|
|
72
|
-
message DeleteChartOfAccountResponse {
|
|
73
|
-
string references_id = 1;
|
|
74
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
75
|
-
}
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
option go_package = "gitlab.com/integra_sm/prisca-v2-purchase-requisition-domain/protocgen/prisca/v1/document_type;document_type";
|
|
4
|
-
|
|
5
|
-
import "prisca/v1/global/meta/meta.proto";
|
|
6
|
-
import "prisca/v1/core/number_range/number_range.proto";
|
|
7
|
-
|
|
8
|
-
service DocumentTypeService {
|
|
9
|
-
rpc CreateDocumentType(CreateDocumentTypeRequest)
|
|
10
|
-
returns (CreateDocumentTypeResponse);
|
|
11
|
-
rpc UpdateDocumentType(UpdateDocumentTypeRequest)
|
|
12
|
-
returns (UpdateDocumentTypeResponse);
|
|
13
|
-
rpc GetDocumentTypeById(GetDocumentTypeByIdRequest)
|
|
14
|
-
returns (GetDocumentTypeByIdResponse);
|
|
15
|
-
rpc GetListDocumentTypes(GetListDocumentTypeRequest)
|
|
16
|
-
returns (GetListDocumentTypeResponse);
|
|
17
|
-
rpc DeleteDocumentType(DeleteDocumentTypeRequest)
|
|
18
|
-
returns (DeleteDocumentTypeResponse);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
message DocumentType {
|
|
22
|
-
int32 id = 1;
|
|
23
|
-
string references_id = 2;
|
|
24
|
-
string code = 3;
|
|
25
|
-
string code_description = 4;
|
|
26
|
-
int32 integer_increment = 5;
|
|
27
|
-
string number_range_ref = 6;
|
|
28
|
-
string created_at = 7;
|
|
29
|
-
string updated_at = 8;
|
|
30
|
-
optional NumberRange number_range = 9;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
message BaseDocumentType {
|
|
34
|
-
string code = 1;
|
|
35
|
-
string code_description = 2;
|
|
36
|
-
int32 integer_increment = 3;
|
|
37
|
-
string number_range_ref = 4;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
message CreateDocumentTypeRequest { BaseDocumentType base_document_type = 1; }
|
|
41
|
-
|
|
42
|
-
message CreateDocumentTypeResponse {
|
|
43
|
-
DocumentType document_type = 1;
|
|
44
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
message UpdateDocumentTypeRequest {
|
|
48
|
-
string references_id = 1;
|
|
49
|
-
BaseDocumentType base_document_type = 2;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
message UpdateDocumentTypeResponse {
|
|
53
|
-
DocumentType document_type = 1;
|
|
54
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
message GetDocumentTypeByIdRequest { string references_id = 1; }
|
|
58
|
-
|
|
59
|
-
message GetDocumentTypeByIdResponse {
|
|
60
|
-
DocumentType document_type = 1;
|
|
61
|
-
optional NumberRange number_range = 2;
|
|
62
|
-
prisca.v1.global.meta.Meta meta = 3;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
message GetListDocumentTypeRequest {
|
|
66
|
-
prisca.v1.global.meta.PaginationRequest pagination = 1;
|
|
67
|
-
prisca.v1.global.meta.FilterRequest query = 2;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
message GetListDocumentTypeResponse {
|
|
71
|
-
repeated DocumentType document_types = 1;
|
|
72
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
message DeleteDocumentTypeRequest { string references_id = 1; }
|
|
76
|
-
|
|
77
|
-
message DeleteDocumentTypeResponse {
|
|
78
|
-
string references_id = 1;
|
|
79
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
80
|
-
}
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
option go_package = "gitlab.com/integra_sm/prisca-v2-purchase-requisition-domain/protocgen/prisca/v1/general_ledger_account;general_ledger_account";
|
|
4
|
-
|
|
5
|
-
import "prisca/v1/global/meta/meta.proto";
|
|
6
|
-
import "prisca/v1/account_group/account_group.proto";
|
|
7
|
-
import "prisca/v1/chart_of_account/chart_of_account.proto";
|
|
8
|
-
import "prisca/v1/core/company/company.proto";
|
|
9
|
-
import "prisca/v1/core/currency/currency.proto";
|
|
10
|
-
|
|
11
|
-
service GeneralLedgerAccountService {
|
|
12
|
-
rpc CreateGeneralLedgerAccount(CreateGeneralLedgerAccountRequest)
|
|
13
|
-
returns (CreateGeneralLedgerAccountResponse);
|
|
14
|
-
rpc UpdateGeneralLedgerAccount(UpdateGeneralLedgerAccountRequest)
|
|
15
|
-
returns (UpdateGeneralLedgerAccountResponse);
|
|
16
|
-
rpc GetGeneralLedgerAccountById(GetGeneralLedgerAccountByIdRequest)
|
|
17
|
-
returns (GetGeneralLedgerAccountByIdResponse);
|
|
18
|
-
rpc GetListGeneralLedgerAccount(GetListGeneralLedgerAccountRequest)
|
|
19
|
-
returns (GetListGeneralLedgerAccountResponse);
|
|
20
|
-
rpc DeleteGeneralLedgerAccount(DeleteGeneralLedgerAccountRequest)
|
|
21
|
-
returns (DeleteGeneralLedgerAccountResponse);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
message GeneralLedgerAccount {
|
|
25
|
-
int64 id = 1;
|
|
26
|
-
string account_type = 2;
|
|
27
|
-
repeated GeneralLedgerLanguage language_description = 3;
|
|
28
|
-
string chart_of_account_ref = 4;
|
|
29
|
-
string account_group_ref = 5;
|
|
30
|
-
string references_id = 6;
|
|
31
|
-
string created_at = 7; // Use ISO 8601 format for date strings
|
|
32
|
-
string updated_at = 8; // Optional, nullable
|
|
33
|
-
string companies_references_id = 9;
|
|
34
|
-
string account_id = 10;
|
|
35
|
-
string currency_ref = 11;
|
|
36
|
-
optional AccountGroup account_group = 12;
|
|
37
|
-
optional ChartOfAccount chart_of_account = 13;
|
|
38
|
-
optional Company companies = 14;
|
|
39
|
-
optional Currency currency = 15;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
message GeneralLedgerLanguage {
|
|
43
|
-
string language_key = 1;
|
|
44
|
-
string short_text = 2;
|
|
45
|
-
string long_text = 3;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
message BaseGeneralLedgerAccount {
|
|
49
|
-
string account_type = 1;
|
|
50
|
-
repeated GeneralLedgerLanguage language_description = 2;
|
|
51
|
-
string chart_of_account_ref = 3;
|
|
52
|
-
string account_group_ref = 4;
|
|
53
|
-
string account_id = 5;
|
|
54
|
-
string currency_ref = 6;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
message CreateGeneralLedgerAccountRequest {
|
|
58
|
-
BaseGeneralLedgerAccount base_general_ledger_account = 1;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
message CreateGeneralLedgerAccountResponse {
|
|
62
|
-
GeneralLedgerAccount general_ledger_account = 1;
|
|
63
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
message UpdateGeneralLedgerAccountRequest {
|
|
67
|
-
string references_id = 1;
|
|
68
|
-
BaseGeneralLedgerAccount base_general_ledger_account = 2;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
message UpdateGeneralLedgerAccountResponse {
|
|
72
|
-
GeneralLedgerAccount general_ledger_account = 1;
|
|
73
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
message GetGeneralLedgerAccountByIdRequest { string references_id = 1; }
|
|
77
|
-
|
|
78
|
-
message GetGeneralLedgerAccountByIdResponse {
|
|
79
|
-
GeneralLedgerAccount general_ledger_account = 1;
|
|
80
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
message GetListGeneralLedgerAccountRequest {
|
|
84
|
-
prisca.v1.global.meta.PaginationRequest pagination = 1;
|
|
85
|
-
prisca.v1.global.meta.FilterRequest query = 2;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
message GetListGeneralLedgerAccountResponse {
|
|
89
|
-
repeated GeneralLedgerAccount general_ledger_accounts = 1;
|
|
90
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
message DeleteGeneralLedgerAccountRequest { string references_id = 1; }
|
|
94
|
-
|
|
95
|
-
message DeleteGeneralLedgerAccountResponse {
|
|
96
|
-
string references_id = 1;
|
|
97
|
-
prisca.v1.global.meta.Meta meta = 2;
|
|
98
|
-
}
|