@aldiokta/protocgen 1.0.71 → 1.0.72
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/core/employee/employee_grpc_pb.js +55 -55
- package/prisca/v1/core/employee/employee_pb.js +540 -540
- package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +4 -4
- package/prisca/v1/core/material/material_pb.js +8 -8
- package/prisca/v1/core/material_group/material_group_pb.js +8 -8
- package/prisca/v1/core/material_type/material_type_pb.js +8 -8
- package/prisca/v1/core/number_range/number_range_pb.js +8 -8
- package/prisca/v1/core/workflow/workflow_pb.js +15 -15
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +1 -0
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +94 -2
|
@@ -686,17 +686,17 @@ proto.LineOfApproval.prototype.setDocumentType = function(value) {
|
|
|
686
686
|
|
|
687
687
|
|
|
688
688
|
/**
|
|
689
|
-
* optional Employee employees = 10;
|
|
690
|
-
* @return {?proto.Employee}
|
|
689
|
+
* optional prisca.v1.core.employee.Employee employees = 10;
|
|
690
|
+
* @return {?proto.prisca.v1.core.employee.Employee}
|
|
691
691
|
*/
|
|
692
692
|
proto.LineOfApproval.prototype.getEmployees = function() {
|
|
693
|
-
return /** @type{?proto.Employee} */ (
|
|
693
|
+
return /** @type{?proto.prisca.v1.core.employee.Employee} */ (
|
|
694
694
|
jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 10));
|
|
695
695
|
};
|
|
696
696
|
|
|
697
697
|
|
|
698
698
|
/**
|
|
699
|
-
* @param {?proto.Employee|undefined} value
|
|
699
|
+
* @param {?proto.prisca.v1.core.employee.Employee|undefined} value
|
|
700
700
|
* @return {!proto.LineOfApproval} returns this
|
|
701
701
|
*/
|
|
702
702
|
proto.LineOfApproval.prototype.setEmployees = function(value) {
|
|
@@ -1289,17 +1289,17 @@ proto.Material.prototype.setCompaniesReferencesId = function(value) {
|
|
|
1289
1289
|
|
|
1290
1290
|
|
|
1291
1291
|
/**
|
|
1292
|
-
* optional Employee created_by_employee = 23;
|
|
1293
|
-
* @return {?proto.Employee}
|
|
1292
|
+
* optional prisca.v1.core.employee.Employee created_by_employee = 23;
|
|
1293
|
+
* @return {?proto.prisca.v1.core.employee.Employee}
|
|
1294
1294
|
*/
|
|
1295
1295
|
proto.Material.prototype.getCreatedByEmployee = function() {
|
|
1296
|
-
return /** @type{?proto.Employee} */ (
|
|
1296
|
+
return /** @type{?proto.prisca.v1.core.employee.Employee} */ (
|
|
1297
1297
|
jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 23));
|
|
1298
1298
|
};
|
|
1299
1299
|
|
|
1300
1300
|
|
|
1301
1301
|
/**
|
|
1302
|
-
* @param {?proto.Employee|undefined} value
|
|
1302
|
+
* @param {?proto.prisca.v1.core.employee.Employee|undefined} value
|
|
1303
1303
|
* @return {!proto.Material} returns this
|
|
1304
1304
|
*/
|
|
1305
1305
|
proto.Material.prototype.setCreatedByEmployee = function(value) {
|
|
@@ -1326,17 +1326,17 @@ proto.Material.prototype.hasCreatedByEmployee = function() {
|
|
|
1326
1326
|
|
|
1327
1327
|
|
|
1328
1328
|
/**
|
|
1329
|
-
* optional Employee updated_by_employee = 24;
|
|
1330
|
-
* @return {?proto.Employee}
|
|
1329
|
+
* optional prisca.v1.core.employee.Employee updated_by_employee = 24;
|
|
1330
|
+
* @return {?proto.prisca.v1.core.employee.Employee}
|
|
1331
1331
|
*/
|
|
1332
1332
|
proto.Material.prototype.getUpdatedByEmployee = function() {
|
|
1333
|
-
return /** @type{?proto.Employee} */ (
|
|
1333
|
+
return /** @type{?proto.prisca.v1.core.employee.Employee} */ (
|
|
1334
1334
|
jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 24));
|
|
1335
1335
|
};
|
|
1336
1336
|
|
|
1337
1337
|
|
|
1338
1338
|
/**
|
|
1339
|
-
* @param {?proto.Employee|undefined} value
|
|
1339
|
+
* @param {?proto.prisca.v1.core.employee.Employee|undefined} value
|
|
1340
1340
|
* @return {!proto.Material} returns this
|
|
1341
1341
|
*/
|
|
1342
1342
|
proto.Material.prototype.setUpdatedByEmployee = function(value) {
|
|
@@ -718,17 +718,17 @@ proto.MaterialGroup.prototype.setCompaniesReferencesId = function(value) {
|
|
|
718
718
|
|
|
719
719
|
|
|
720
720
|
/**
|
|
721
|
-
* optional Employee created_by_employee = 11;
|
|
722
|
-
* @return {?proto.Employee}
|
|
721
|
+
* optional prisca.v1.core.employee.Employee created_by_employee = 11;
|
|
722
|
+
* @return {?proto.prisca.v1.core.employee.Employee}
|
|
723
723
|
*/
|
|
724
724
|
proto.MaterialGroup.prototype.getCreatedByEmployee = function() {
|
|
725
|
-
return /** @type{?proto.Employee} */ (
|
|
725
|
+
return /** @type{?proto.prisca.v1.core.employee.Employee} */ (
|
|
726
726
|
jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 11));
|
|
727
727
|
};
|
|
728
728
|
|
|
729
729
|
|
|
730
730
|
/**
|
|
731
|
-
* @param {?proto.Employee|undefined} value
|
|
731
|
+
* @param {?proto.prisca.v1.core.employee.Employee|undefined} value
|
|
732
732
|
* @return {!proto.MaterialGroup} returns this
|
|
733
733
|
*/
|
|
734
734
|
proto.MaterialGroup.prototype.setCreatedByEmployee = function(value) {
|
|
@@ -755,17 +755,17 @@ proto.MaterialGroup.prototype.hasCreatedByEmployee = function() {
|
|
|
755
755
|
|
|
756
756
|
|
|
757
757
|
/**
|
|
758
|
-
* optional Employee updated_by_employee = 12;
|
|
759
|
-
* @return {?proto.Employee}
|
|
758
|
+
* optional prisca.v1.core.employee.Employee updated_by_employee = 12;
|
|
759
|
+
* @return {?proto.prisca.v1.core.employee.Employee}
|
|
760
760
|
*/
|
|
761
761
|
proto.MaterialGroup.prototype.getUpdatedByEmployee = function() {
|
|
762
|
-
return /** @type{?proto.Employee} */ (
|
|
762
|
+
return /** @type{?proto.prisca.v1.core.employee.Employee} */ (
|
|
763
763
|
jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 12));
|
|
764
764
|
};
|
|
765
765
|
|
|
766
766
|
|
|
767
767
|
/**
|
|
768
|
-
* @param {?proto.Employee|undefined} value
|
|
768
|
+
* @param {?proto.prisca.v1.core.employee.Employee|undefined} value
|
|
769
769
|
* @return {!proto.MaterialGroup} returns this
|
|
770
770
|
*/
|
|
771
771
|
proto.MaterialGroup.prototype.setUpdatedByEmployee = function(value) {
|
|
@@ -864,17 +864,17 @@ proto.MaterialType.prototype.setCompaniesReferencesId = function(value) {
|
|
|
864
864
|
|
|
865
865
|
|
|
866
866
|
/**
|
|
867
|
-
* optional Employee created_by_employee = 15;
|
|
868
|
-
* @return {?proto.Employee}
|
|
867
|
+
* optional prisca.v1.core.employee.Employee created_by_employee = 15;
|
|
868
|
+
* @return {?proto.prisca.v1.core.employee.Employee}
|
|
869
869
|
*/
|
|
870
870
|
proto.MaterialType.prototype.getCreatedByEmployee = function() {
|
|
871
|
-
return /** @type{?proto.Employee} */ (
|
|
871
|
+
return /** @type{?proto.prisca.v1.core.employee.Employee} */ (
|
|
872
872
|
jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 15));
|
|
873
873
|
};
|
|
874
874
|
|
|
875
875
|
|
|
876
876
|
/**
|
|
877
|
-
* @param {?proto.Employee|undefined} value
|
|
877
|
+
* @param {?proto.prisca.v1.core.employee.Employee|undefined} value
|
|
878
878
|
* @return {!proto.MaterialType} returns this
|
|
879
879
|
*/
|
|
880
880
|
proto.MaterialType.prototype.setCreatedByEmployee = function(value) {
|
|
@@ -901,17 +901,17 @@ proto.MaterialType.prototype.hasCreatedByEmployee = function() {
|
|
|
901
901
|
|
|
902
902
|
|
|
903
903
|
/**
|
|
904
|
-
* optional Employee updated_by_employee = 16;
|
|
905
|
-
* @return {?proto.Employee}
|
|
904
|
+
* optional prisca.v1.core.employee.Employee updated_by_employee = 16;
|
|
905
|
+
* @return {?proto.prisca.v1.core.employee.Employee}
|
|
906
906
|
*/
|
|
907
907
|
proto.MaterialType.prototype.getUpdatedByEmployee = function() {
|
|
908
|
-
return /** @type{?proto.Employee} */ (
|
|
908
|
+
return /** @type{?proto.prisca.v1.core.employee.Employee} */ (
|
|
909
909
|
jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 16));
|
|
910
910
|
};
|
|
911
911
|
|
|
912
912
|
|
|
913
913
|
/**
|
|
914
|
-
* @param {?proto.Employee|undefined} value
|
|
914
|
+
* @param {?proto.prisca.v1.core.employee.Employee|undefined} value
|
|
915
915
|
* @return {!proto.MaterialType} returns this
|
|
916
916
|
*/
|
|
917
917
|
proto.MaterialType.prototype.setUpdatedByEmployee = function(value) {
|
|
@@ -808,17 +808,17 @@ proto.NumberRange.prototype.setCompaniesReferencesId = function(value) {
|
|
|
808
808
|
|
|
809
809
|
|
|
810
810
|
/**
|
|
811
|
-
* optional Employee created_by_employee = 14;
|
|
812
|
-
* @return {?proto.Employee}
|
|
811
|
+
* optional prisca.v1.core.employee.Employee created_by_employee = 14;
|
|
812
|
+
* @return {?proto.prisca.v1.core.employee.Employee}
|
|
813
813
|
*/
|
|
814
814
|
proto.NumberRange.prototype.getCreatedByEmployee = function() {
|
|
815
|
-
return /** @type{?proto.Employee} */ (
|
|
815
|
+
return /** @type{?proto.prisca.v1.core.employee.Employee} */ (
|
|
816
816
|
jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 14));
|
|
817
817
|
};
|
|
818
818
|
|
|
819
819
|
|
|
820
820
|
/**
|
|
821
|
-
* @param {?proto.Employee|undefined} value
|
|
821
|
+
* @param {?proto.prisca.v1.core.employee.Employee|undefined} value
|
|
822
822
|
* @return {!proto.NumberRange} returns this
|
|
823
823
|
*/
|
|
824
824
|
proto.NumberRange.prototype.setCreatedByEmployee = function(value) {
|
|
@@ -845,17 +845,17 @@ proto.NumberRange.prototype.hasCreatedByEmployee = function() {
|
|
|
845
845
|
|
|
846
846
|
|
|
847
847
|
/**
|
|
848
|
-
* optional Employee updated_by_employee = 15;
|
|
849
|
-
* @return {?proto.Employee}
|
|
848
|
+
* optional prisca.v1.core.employee.Employee updated_by_employee = 15;
|
|
849
|
+
* @return {?proto.prisca.v1.core.employee.Employee}
|
|
850
850
|
*/
|
|
851
851
|
proto.NumberRange.prototype.getUpdatedByEmployee = function() {
|
|
852
|
-
return /** @type{?proto.Employee} */ (
|
|
852
|
+
return /** @type{?proto.prisca.v1.core.employee.Employee} */ (
|
|
853
853
|
jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 15));
|
|
854
854
|
};
|
|
855
855
|
|
|
856
856
|
|
|
857
857
|
/**
|
|
858
|
-
* @param {?proto.Employee|undefined} value
|
|
858
|
+
* @param {?proto.prisca.v1.core.employee.Employee|undefined} value
|
|
859
859
|
* @return {!proto.NumberRange} returns this
|
|
860
860
|
*/
|
|
861
861
|
proto.NumberRange.prototype.setUpdatedByEmployee = function(value) {
|
|
@@ -1123,17 +1123,17 @@ proto.Workflow.prototype.setCompaniesReferencesId = function(value) {
|
|
|
1123
1123
|
|
|
1124
1124
|
|
|
1125
1125
|
/**
|
|
1126
|
-
* optional Employee created_by_employee = 16;
|
|
1127
|
-
* @return {?proto.Employee}
|
|
1126
|
+
* optional prisca.v1.core.employee.Employee created_by_employee = 16;
|
|
1127
|
+
* @return {?proto.prisca.v1.core.employee.Employee}
|
|
1128
1128
|
*/
|
|
1129
1129
|
proto.Workflow.prototype.getCreatedByEmployee = function() {
|
|
1130
|
-
return /** @type{?proto.Employee} */ (
|
|
1130
|
+
return /** @type{?proto.prisca.v1.core.employee.Employee} */ (
|
|
1131
1131
|
jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 16));
|
|
1132
1132
|
};
|
|
1133
1133
|
|
|
1134
1134
|
|
|
1135
1135
|
/**
|
|
1136
|
-
* @param {?proto.Employee|undefined} value
|
|
1136
|
+
* @param {?proto.prisca.v1.core.employee.Employee|undefined} value
|
|
1137
1137
|
* @return {!proto.Workflow} returns this
|
|
1138
1138
|
*/
|
|
1139
1139
|
proto.Workflow.prototype.setCreatedByEmployee = function(value) {
|
|
@@ -1160,17 +1160,17 @@ proto.Workflow.prototype.hasCreatedByEmployee = function() {
|
|
|
1160
1160
|
|
|
1161
1161
|
|
|
1162
1162
|
/**
|
|
1163
|
-
* optional Employee updated_by_employee = 17;
|
|
1164
|
-
* @return {?proto.Employee}
|
|
1163
|
+
* optional prisca.v1.core.employee.Employee updated_by_employee = 17;
|
|
1164
|
+
* @return {?proto.prisca.v1.core.employee.Employee}
|
|
1165
1165
|
*/
|
|
1166
1166
|
proto.Workflow.prototype.getUpdatedByEmployee = function() {
|
|
1167
|
-
return /** @type{?proto.Employee} */ (
|
|
1167
|
+
return /** @type{?proto.prisca.v1.core.employee.Employee} */ (
|
|
1168
1168
|
jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 17));
|
|
1169
1169
|
};
|
|
1170
1170
|
|
|
1171
1171
|
|
|
1172
1172
|
/**
|
|
1173
|
-
* @param {?proto.Employee|undefined} value
|
|
1173
|
+
* @param {?proto.prisca.v1.core.employee.Employee|undefined} value
|
|
1174
1174
|
* @return {!proto.Workflow} returns this
|
|
1175
1175
|
*/
|
|
1176
1176
|
proto.Workflow.prototype.setUpdatedByEmployee = function(value) {
|
|
@@ -3348,17 +3348,17 @@ proto.WorkflowStepsRecipients.prototype.hasJobPosition = function() {
|
|
|
3348
3348
|
|
|
3349
3349
|
|
|
3350
3350
|
/**
|
|
3351
|
-
* repeated Employee employees = 9;
|
|
3352
|
-
* @return {!Array<!proto.Employee>}
|
|
3351
|
+
* repeated prisca.v1.core.employee.Employee employees = 9;
|
|
3352
|
+
* @return {!Array<!proto.prisca.v1.core.employee.Employee>}
|
|
3353
3353
|
*/
|
|
3354
3354
|
proto.WorkflowStepsRecipients.prototype.getEmployeesList = function() {
|
|
3355
|
-
return /** @type{!Array<!proto.Employee>} */ (
|
|
3355
|
+
return /** @type{!Array<!proto.prisca.v1.core.employee.Employee>} */ (
|
|
3356
3356
|
jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 9));
|
|
3357
3357
|
};
|
|
3358
3358
|
|
|
3359
3359
|
|
|
3360
3360
|
/**
|
|
3361
|
-
* @param {!Array<!proto.Employee>} value
|
|
3361
|
+
* @param {!Array<!proto.prisca.v1.core.employee.Employee>} value
|
|
3362
3362
|
* @return {!proto.WorkflowStepsRecipients} returns this
|
|
3363
3363
|
*/
|
|
3364
3364
|
proto.WorkflowStepsRecipients.prototype.setEmployeesList = function(value) {
|
|
@@ -3367,12 +3367,12 @@ proto.WorkflowStepsRecipients.prototype.setEmployeesList = function(value) {
|
|
|
3367
3367
|
|
|
3368
3368
|
|
|
3369
3369
|
/**
|
|
3370
|
-
* @param {!proto.Employee=} opt_value
|
|
3370
|
+
* @param {!proto.prisca.v1.core.employee.Employee=} opt_value
|
|
3371
3371
|
* @param {number=} opt_index
|
|
3372
|
-
* @return {!proto.Employee}
|
|
3372
|
+
* @return {!proto.prisca.v1.core.employee.Employee}
|
|
3373
3373
|
*/
|
|
3374
3374
|
proto.WorkflowStepsRecipients.prototype.addEmployees = function(opt_value, opt_index) {
|
|
3375
|
-
return jspb.Message.addToRepeatedWrapperField(this, 9, opt_value, proto.Employee, opt_index);
|
|
3375
|
+
return jspb.Message.addToRepeatedWrapperField(this, 9, opt_value, proto.prisca.v1.core.employee.Employee, opt_index);
|
|
3376
3376
|
};
|
|
3377
3377
|
|
|
3378
3378
|
|
|
@@ -6,6 +6,7 @@ var prisca_v1_purchase_requisition_trx_purchase_requisition_trx_pb = require('..
|
|
|
6
6
|
var prisca_v1_global_meta_meta_pb = require('../../../prisca/v1/global/meta/meta_pb.js');
|
|
7
7
|
var prisca_v1_core_transaction_builder_transaction_builder_pb = require('../../../prisca/v1/core/transaction_builder/transaction_builder_pb.js');
|
|
8
8
|
var prisca_v1_document_type_document_type_pb = require('../../../prisca/v1/document_type/document_type_pb.js');
|
|
9
|
+
var prisca_v1_core_employee_employee_pb = require('../../../prisca/v1/core/employee/employee_pb.js');
|
|
9
10
|
|
|
10
11
|
function serialize_CreatePurchaseRequisitionTemplateRequest(arg) {
|
|
11
12
|
if (!(arg instanceof prisca_v1_purchase_requisition_trx_purchase_requisition_trx_pb.CreatePurchaseRequisitionTemplateRequest)) {
|
|
@@ -27,6 +27,8 @@ var prisca_v1_core_transaction_builder_transaction_builder_pb = require('../../.
|
|
|
27
27
|
goog.object.extend(proto, prisca_v1_core_transaction_builder_transaction_builder_pb);
|
|
28
28
|
var prisca_v1_document_type_document_type_pb = require('../../../prisca/v1/document_type/document_type_pb.js');
|
|
29
29
|
goog.object.extend(proto, prisca_v1_document_type_document_type_pb);
|
|
30
|
+
var prisca_v1_core_employee_employee_pb = require('../../../prisca/v1/core/employee/employee_pb.js');
|
|
31
|
+
goog.object.extend(proto, prisca_v1_core_employee_employee_pb);
|
|
30
32
|
goog.exportSymbol('proto.BasePurchaseRequisitionItemDetail', null, global);
|
|
31
33
|
goog.exportSymbol('proto.BasePurchaseRequisitionItemTrx', null, global);
|
|
32
34
|
goog.exportSymbol('proto.BasePurchaseRequisitionTrx', null, global);
|
|
@@ -971,7 +973,8 @@ numberRangeSequence: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
|
|
971
973
|
documentType: (f = msg.getDocumentType()) && prisca_v1_document_type_document_type_pb.DocumentType.toObject(includeInstance, f),
|
|
972
974
|
status: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
973
975
|
createdBy: jspb.Message.getFieldWithDefault(msg, 24, ""),
|
|
974
|
-
updatedBy: jspb.Message.getFieldWithDefault(msg, 25, "")
|
|
976
|
+
updatedBy: jspb.Message.getFieldWithDefault(msg, 25, ""),
|
|
977
|
+
jutification: jspb.Message.getFieldWithDefault(msg, 26, "")
|
|
975
978
|
};
|
|
976
979
|
|
|
977
980
|
if (includeInstance) {
|
|
@@ -1110,6 +1113,10 @@ proto.PurchaseRequisitionTrx.deserializeBinaryFromReader = function(msg, reader)
|
|
|
1110
1113
|
var value = /** @type {string} */ (reader.readString());
|
|
1111
1114
|
msg.setUpdatedBy(value);
|
|
1112
1115
|
break;
|
|
1116
|
+
case 26:
|
|
1117
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1118
|
+
msg.setJutification(value);
|
|
1119
|
+
break;
|
|
1113
1120
|
default:
|
|
1114
1121
|
reader.skipField();
|
|
1115
1122
|
break;
|
|
@@ -1316,6 +1323,13 @@ proto.PurchaseRequisitionTrx.serializeBinaryToWriter = function(message, writer)
|
|
|
1316
1323
|
f
|
|
1317
1324
|
);
|
|
1318
1325
|
}
|
|
1326
|
+
f = message.getJutification();
|
|
1327
|
+
if (f.length > 0) {
|
|
1328
|
+
writer.writeString(
|
|
1329
|
+
26,
|
|
1330
|
+
f
|
|
1331
|
+
);
|
|
1332
|
+
}
|
|
1319
1333
|
};
|
|
1320
1334
|
|
|
1321
1335
|
|
|
@@ -1808,6 +1822,24 @@ proto.PurchaseRequisitionTrx.prototype.setUpdatedBy = function(value) {
|
|
|
1808
1822
|
};
|
|
1809
1823
|
|
|
1810
1824
|
|
|
1825
|
+
/**
|
|
1826
|
+
* optional string jutification = 26;
|
|
1827
|
+
* @return {string}
|
|
1828
|
+
*/
|
|
1829
|
+
proto.PurchaseRequisitionTrx.prototype.getJutification = function() {
|
|
1830
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 26, ""));
|
|
1831
|
+
};
|
|
1832
|
+
|
|
1833
|
+
|
|
1834
|
+
/**
|
|
1835
|
+
* @param {string} value
|
|
1836
|
+
* @return {!proto.PurchaseRequisitionTrx} returns this
|
|
1837
|
+
*/
|
|
1838
|
+
proto.PurchaseRequisitionTrx.prototype.setJutification = function(value) {
|
|
1839
|
+
return jspb.Message.setProto3StringField(this, 26, value);
|
|
1840
|
+
};
|
|
1841
|
+
|
|
1842
|
+
|
|
1811
1843
|
|
|
1812
1844
|
/**
|
|
1813
1845
|
* List of repeated fields within this message type.
|
|
@@ -3082,7 +3114,9 @@ customTransaction: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
|
3082
3114
|
purchaseRequisitionItemsList: jspb.Message.toObjectList(msg.getPurchaseRequisitionItemsList(),
|
|
3083
3115
|
proto.BasePurchaseRequisitionItemTrx.toObject, includeInstance),
|
|
3084
3116
|
documentTypeRef: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
3085
|
-
companiesReferencesId: jspb.Message.getFieldWithDefault(msg, 15, "")
|
|
3117
|
+
companiesReferencesId: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
3118
|
+
status: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
3119
|
+
justification: jspb.Message.getFieldWithDefault(msg, 17, "")
|
|
3086
3120
|
};
|
|
3087
3121
|
|
|
3088
3122
|
if (includeInstance) {
|
|
@@ -3180,6 +3214,14 @@ proto.BasePurchaseRequisitionTrx.deserializeBinaryFromReader = function(msg, rea
|
|
|
3180
3214
|
var value = /** @type {string} */ (reader.readString());
|
|
3181
3215
|
msg.setCompaniesReferencesId(value);
|
|
3182
3216
|
break;
|
|
3217
|
+
case 16:
|
|
3218
|
+
var value = /** @type {string} */ (reader.readString());
|
|
3219
|
+
msg.setStatus(value);
|
|
3220
|
+
break;
|
|
3221
|
+
case 17:
|
|
3222
|
+
var value = /** @type {string} */ (reader.readString());
|
|
3223
|
+
msg.setJustification(value);
|
|
3224
|
+
break;
|
|
3183
3225
|
default:
|
|
3184
3226
|
reader.skipField();
|
|
3185
3227
|
break;
|
|
@@ -3315,6 +3357,20 @@ proto.BasePurchaseRequisitionTrx.serializeBinaryToWriter = function(message, wri
|
|
|
3315
3357
|
f
|
|
3316
3358
|
);
|
|
3317
3359
|
}
|
|
3360
|
+
f = message.getStatus();
|
|
3361
|
+
if (f.length > 0) {
|
|
3362
|
+
writer.writeString(
|
|
3363
|
+
16,
|
|
3364
|
+
f
|
|
3365
|
+
);
|
|
3366
|
+
}
|
|
3367
|
+
f = message.getJustification();
|
|
3368
|
+
if (f.length > 0) {
|
|
3369
|
+
writer.writeString(
|
|
3370
|
+
17,
|
|
3371
|
+
f
|
|
3372
|
+
);
|
|
3373
|
+
}
|
|
3318
3374
|
};
|
|
3319
3375
|
|
|
3320
3376
|
|
|
@@ -3608,6 +3664,42 @@ proto.BasePurchaseRequisitionTrx.prototype.setCompaniesReferencesId = function(v
|
|
|
3608
3664
|
};
|
|
3609
3665
|
|
|
3610
3666
|
|
|
3667
|
+
/**
|
|
3668
|
+
* optional string status = 16;
|
|
3669
|
+
* @return {string}
|
|
3670
|
+
*/
|
|
3671
|
+
proto.BasePurchaseRequisitionTrx.prototype.getStatus = function() {
|
|
3672
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
|
|
3673
|
+
};
|
|
3674
|
+
|
|
3675
|
+
|
|
3676
|
+
/**
|
|
3677
|
+
* @param {string} value
|
|
3678
|
+
* @return {!proto.BasePurchaseRequisitionTrx} returns this
|
|
3679
|
+
*/
|
|
3680
|
+
proto.BasePurchaseRequisitionTrx.prototype.setStatus = function(value) {
|
|
3681
|
+
return jspb.Message.setProto3StringField(this, 16, value);
|
|
3682
|
+
};
|
|
3683
|
+
|
|
3684
|
+
|
|
3685
|
+
/**
|
|
3686
|
+
* optional string justification = 17;
|
|
3687
|
+
* @return {string}
|
|
3688
|
+
*/
|
|
3689
|
+
proto.BasePurchaseRequisitionTrx.prototype.getJustification = function() {
|
|
3690
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
|
|
3691
|
+
};
|
|
3692
|
+
|
|
3693
|
+
|
|
3694
|
+
/**
|
|
3695
|
+
* @param {string} value
|
|
3696
|
+
* @return {!proto.BasePurchaseRequisitionTrx} returns this
|
|
3697
|
+
*/
|
|
3698
|
+
proto.BasePurchaseRequisitionTrx.prototype.setJustification = function(value) {
|
|
3699
|
+
return jspb.Message.setProto3StringField(this, 17, value);
|
|
3700
|
+
};
|
|
3701
|
+
|
|
3702
|
+
|
|
3611
3703
|
|
|
3612
3704
|
/**
|
|
3613
3705
|
* List of repeated fields within this message type.
|