@aldiokta/protocgen 1.1.26 → 1.1.28
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/bidding/bidding_grpc_pb.js +55 -0
- package/prisca/v1/bidding/bidding_pb.js +1042 -63
- package/prisca/v1/core/access_manager/access_manager_grpc_pb.js +33 -0
- package/prisca/v1/core/access_manager/access_manager_pb.js +385 -0
- package/prisca/v1/core/auth/auth_grpc_pb.js +103 -3
- package/prisca/v1/core/auth/auth_pb.js +2519 -1181
- package/prisca/v1/core/file_upload/file_upload_pb.js +93 -3
- package/prisca/v1/core/item_transaction/item_transaction_pb.js +183 -33
- package/prisca/v1/core/line_of_activity/line_of_activity_pb.js +438 -46
- package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +31 -1
- package/prisca/v1/core/location/location_pb.js +446 -57
- package/prisca/v1/core/messaging/notification_grpc_pb.js +188 -0
- package/prisca/v1/core/messaging/notification_pb.js +2780 -0
- package/prisca/v1/core/price_condition/price_condition_pb.js +122 -2
- package/prisca/v1/core/transaction_builder/transaction_builder_grpc_pb.js +234 -168
- package/prisca/v1/core/transaction_builder/transaction_builder_pb.js +1987 -1775
- package/prisca/v1/delivery_order/delivery_order_pb.js +130 -70
- package/prisca/v1/good_receipt/good_receipt_grpc_pb.js +228 -1
- package/prisca/v1/good_receipt/good_receipt_pb.js +4779 -0
- package/prisca/v1/invoice/invoice_grpc_pb.js +174 -0
- package/prisca/v1/invoice/invoice_pb.js +4398 -0
- package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +11 -0
- package/prisca/v1/purchase_order/purchase_order_pb.js +142 -22
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +105 -75
- package/prisca/v1/purchasing_organization/purchasing_organization_pb.js +55 -177
- package/prisca/v1/quotation/quotation_pb.js +236 -26
- package/prisca/v1/request_for_quotation/request_for_quotation_grpc_pb.js +33 -0
- package/prisca/v1/request_for_quotation/request_for_quotation_pb.js +413 -28
- package/prisca/v1/vendor_domain/vendor_domain_grpc_pb.js +55 -0
- package/prisca/v1/vendor_domain/vendor_domain_pb.js +1076 -317
|
@@ -4236,7 +4236,8 @@ proto.GetPurchaseRequisitionTrxListRequest.prototype.toObject = function(opt_inc
|
|
|
4236
4236
|
proto.GetPurchaseRequisitionTrxListRequest.toObject = function(includeInstance, msg) {
|
|
4237
4237
|
var f, obj = {
|
|
4238
4238
|
pagination: (f = msg.getPagination()) && prisca_v1_global_meta_meta_pb.PaginationRequest.toObject(includeInstance, f),
|
|
4239
|
-
query: (f = msg.getQuery()) && prisca_v1_global_meta_meta_pb.FilterRequest.toObject(includeInstance, f)
|
|
4239
|
+
query: (f = msg.getQuery()) && prisca_v1_global_meta_meta_pb.FilterRequest.toObject(includeInstance, f),
|
|
4240
|
+
useAfterFind: jspb.Message.getBooleanFieldWithDefault(msg, 3, false)
|
|
4240
4241
|
};
|
|
4241
4242
|
|
|
4242
4243
|
if (includeInstance) {
|
|
@@ -4283,6 +4284,10 @@ proto.GetPurchaseRequisitionTrxListRequest.deserializeBinaryFromReader = functio
|
|
|
4283
4284
|
reader.readMessage(value,prisca_v1_global_meta_meta_pb.FilterRequest.deserializeBinaryFromReader);
|
|
4284
4285
|
msg.setQuery(value);
|
|
4285
4286
|
break;
|
|
4287
|
+
case 3:
|
|
4288
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
4289
|
+
msg.setUseAfterFind(value);
|
|
4290
|
+
break;
|
|
4286
4291
|
default:
|
|
4287
4292
|
reader.skipField();
|
|
4288
4293
|
break;
|
|
@@ -4328,6 +4333,13 @@ proto.GetPurchaseRequisitionTrxListRequest.serializeBinaryToWriter = function(me
|
|
|
4328
4333
|
prisca_v1_global_meta_meta_pb.FilterRequest.serializeBinaryToWriter
|
|
4329
4334
|
);
|
|
4330
4335
|
}
|
|
4336
|
+
f = message.getUseAfterFind();
|
|
4337
|
+
if (f) {
|
|
4338
|
+
writer.writeBool(
|
|
4339
|
+
3,
|
|
4340
|
+
f
|
|
4341
|
+
);
|
|
4342
|
+
}
|
|
4331
4343
|
};
|
|
4332
4344
|
|
|
4333
4345
|
|
|
@@ -4405,6 +4417,24 @@ proto.GetPurchaseRequisitionTrxListRequest.prototype.hasQuery = function() {
|
|
|
4405
4417
|
};
|
|
4406
4418
|
|
|
4407
4419
|
|
|
4420
|
+
/**
|
|
4421
|
+
* optional bool use_after_find = 3;
|
|
4422
|
+
* @return {boolean}
|
|
4423
|
+
*/
|
|
4424
|
+
proto.GetPurchaseRequisitionTrxListRequest.prototype.getUseAfterFind = function() {
|
|
4425
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
|
|
4426
|
+
};
|
|
4427
|
+
|
|
4428
|
+
|
|
4429
|
+
/**
|
|
4430
|
+
* @param {boolean} value
|
|
4431
|
+
* @return {!proto.GetPurchaseRequisitionTrxListRequest} returns this
|
|
4432
|
+
*/
|
|
4433
|
+
proto.GetPurchaseRequisitionTrxListRequest.prototype.setUseAfterFind = function(value) {
|
|
4434
|
+
return jspb.Message.setProto3BooleanField(this, 3, value);
|
|
4435
|
+
};
|
|
4436
|
+
|
|
4437
|
+
|
|
4408
4438
|
|
|
4409
4439
|
|
|
4410
4440
|
|
|
@@ -6915,17 +6945,17 @@ proto.GetPurchaseRequisitionTrxDetailByIdResponse.serializeBinaryToWriter = func
|
|
|
6915
6945
|
|
|
6916
6946
|
|
|
6917
6947
|
/**
|
|
6918
|
-
* optional
|
|
6919
|
-
* @return {?proto.
|
|
6948
|
+
* optional TransactionBuilderFields data = 1;
|
|
6949
|
+
* @return {?proto.TransactionBuilderFields}
|
|
6920
6950
|
*/
|
|
6921
6951
|
proto.GetPurchaseRequisitionTrxDetailByIdResponse.prototype.getData = function() {
|
|
6922
|
-
return /** @type{?proto.
|
|
6952
|
+
return /** @type{?proto.TransactionBuilderFields} */ (
|
|
6923
6953
|
jspb.Message.getWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFields, 1));
|
|
6924
6954
|
};
|
|
6925
6955
|
|
|
6926
6956
|
|
|
6927
6957
|
/**
|
|
6928
|
-
* @param {?proto.
|
|
6958
|
+
* @param {?proto.TransactionBuilderFields|undefined} value
|
|
6929
6959
|
* @return {!proto.GetPurchaseRequisitionTrxDetailByIdResponse} returns this
|
|
6930
6960
|
*/
|
|
6931
6961
|
proto.GetPurchaseRequisitionTrxDetailByIdResponse.prototype.setData = function(value) {
|
|
@@ -7074,17 +7104,17 @@ proto.GetPurchaseRequisitionTrxDetaiPreloadlByIdResponse.serializeBinaryToWriter
|
|
|
7074
7104
|
|
|
7075
7105
|
|
|
7076
7106
|
/**
|
|
7077
|
-
* repeated
|
|
7078
|
-
* @return {!Array<!proto.
|
|
7107
|
+
* repeated TransactionBuilderFieldsDetail pr_transaction_builder = 3;
|
|
7108
|
+
* @return {!Array<!proto.TransactionBuilderFieldsDetail>}
|
|
7079
7109
|
*/
|
|
7080
7110
|
proto.GetPurchaseRequisitionTrxDetaiPreloadlByIdResponse.prototype.getPrTransactionBuilderList = function() {
|
|
7081
|
-
return /** @type{!Array<!proto.
|
|
7111
|
+
return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
|
|
7082
7112
|
jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 3));
|
|
7083
7113
|
};
|
|
7084
7114
|
|
|
7085
7115
|
|
|
7086
7116
|
/**
|
|
7087
|
-
* @param {!Array<!proto.
|
|
7117
|
+
* @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
|
|
7088
7118
|
* @return {!proto.GetPurchaseRequisitionTrxDetaiPreloadlByIdResponse} returns this
|
|
7089
7119
|
*/
|
|
7090
7120
|
proto.GetPurchaseRequisitionTrxDetaiPreloadlByIdResponse.prototype.setPrTransactionBuilderList = function(value) {
|
|
@@ -7093,12 +7123,12 @@ proto.GetPurchaseRequisitionTrxDetaiPreloadlByIdResponse.prototype.setPrTransact
|
|
|
7093
7123
|
|
|
7094
7124
|
|
|
7095
7125
|
/**
|
|
7096
|
-
* @param {!proto.
|
|
7126
|
+
* @param {!proto.TransactionBuilderFieldsDetail=} opt_value
|
|
7097
7127
|
* @param {number=} opt_index
|
|
7098
|
-
* @return {!proto.
|
|
7128
|
+
* @return {!proto.TransactionBuilderFieldsDetail}
|
|
7099
7129
|
*/
|
|
7100
7130
|
proto.GetPurchaseRequisitionTrxDetaiPreloadlByIdResponse.prototype.addPrTransactionBuilder = function(opt_value, opt_index) {
|
|
7101
|
-
return jspb.Message.addToRepeatedWrapperField(this, 3, opt_value, proto.
|
|
7131
|
+
return jspb.Message.addToRepeatedWrapperField(this, 3, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
|
|
7102
7132
|
};
|
|
7103
7133
|
|
|
7104
7134
|
|
|
@@ -7249,17 +7279,17 @@ proto.GetPurchaseRequisitionTransactionTrxDetail.serializeBinaryToWriter = funct
|
|
|
7249
7279
|
|
|
7250
7280
|
|
|
7251
7281
|
/**
|
|
7252
|
-
* repeated
|
|
7253
|
-
* @return {!Array<!proto.
|
|
7282
|
+
* repeated TransactionBuilderFieldsDetail pr_transaction_builder = 1;
|
|
7283
|
+
* @return {!Array<!proto.TransactionBuilderFieldsDetail>}
|
|
7254
7284
|
*/
|
|
7255
7285
|
proto.GetPurchaseRequisitionTransactionTrxDetail.prototype.getPrTransactionBuilderList = function() {
|
|
7256
|
-
return /** @type{!Array<!proto.
|
|
7286
|
+
return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
|
|
7257
7287
|
jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
|
|
7258
7288
|
};
|
|
7259
7289
|
|
|
7260
7290
|
|
|
7261
7291
|
/**
|
|
7262
|
-
* @param {!Array<!proto.
|
|
7292
|
+
* @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
|
|
7263
7293
|
* @return {!proto.GetPurchaseRequisitionTransactionTrxDetail} returns this
|
|
7264
7294
|
*/
|
|
7265
7295
|
proto.GetPurchaseRequisitionTransactionTrxDetail.prototype.setPrTransactionBuilderList = function(value) {
|
|
@@ -7268,12 +7298,12 @@ proto.GetPurchaseRequisitionTransactionTrxDetail.prototype.setPrTransactionBuild
|
|
|
7268
7298
|
|
|
7269
7299
|
|
|
7270
7300
|
/**
|
|
7271
|
-
* @param {!proto.
|
|
7301
|
+
* @param {!proto.TransactionBuilderFieldsDetail=} opt_value
|
|
7272
7302
|
* @param {number=} opt_index
|
|
7273
|
-
* @return {!proto.
|
|
7303
|
+
* @return {!proto.TransactionBuilderFieldsDetail}
|
|
7274
7304
|
*/
|
|
7275
7305
|
proto.GetPurchaseRequisitionTransactionTrxDetail.prototype.addPrTransactionBuilder = function(opt_value, opt_index) {
|
|
7276
|
-
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.
|
|
7306
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
|
|
7277
7307
|
};
|
|
7278
7308
|
|
|
7279
7309
|
|
|
@@ -7462,17 +7492,17 @@ proto.GetItemTransactionTrxDetail.serializeBinaryToWriter = function(message, wr
|
|
|
7462
7492
|
|
|
7463
7493
|
|
|
7464
7494
|
/**
|
|
7465
|
-
* repeated
|
|
7466
|
-
* @return {!Array<!proto.
|
|
7495
|
+
* repeated TransactionBuilderFieldsDetail pr_transaction_item_builder = 1;
|
|
7496
|
+
* @return {!Array<!proto.TransactionBuilderFieldsDetail>}
|
|
7467
7497
|
*/
|
|
7468
7498
|
proto.GetItemTransactionTrxDetail.prototype.getPrTransactionItemBuilderList = function() {
|
|
7469
|
-
return /** @type{!Array<!proto.
|
|
7499
|
+
return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
|
|
7470
7500
|
jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
|
|
7471
7501
|
};
|
|
7472
7502
|
|
|
7473
7503
|
|
|
7474
7504
|
/**
|
|
7475
|
-
* @param {!Array<!proto.
|
|
7505
|
+
* @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
|
|
7476
7506
|
* @return {!proto.GetItemTransactionTrxDetail} returns this
|
|
7477
7507
|
*/
|
|
7478
7508
|
proto.GetItemTransactionTrxDetail.prototype.setPrTransactionItemBuilderList = function(value) {
|
|
@@ -7481,12 +7511,12 @@ proto.GetItemTransactionTrxDetail.prototype.setPrTransactionItemBuilderList = fu
|
|
|
7481
7511
|
|
|
7482
7512
|
|
|
7483
7513
|
/**
|
|
7484
|
-
* @param {!proto.
|
|
7514
|
+
* @param {!proto.TransactionBuilderFieldsDetail=} opt_value
|
|
7485
7515
|
* @param {number=} opt_index
|
|
7486
|
-
* @return {!proto.
|
|
7516
|
+
* @return {!proto.TransactionBuilderFieldsDetail}
|
|
7487
7517
|
*/
|
|
7488
7518
|
proto.GetItemTransactionTrxDetail.prototype.addPrTransactionItemBuilder = function(opt_value, opt_index) {
|
|
7489
|
-
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.
|
|
7519
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
|
|
7490
7520
|
};
|
|
7491
7521
|
|
|
7492
7522
|
|
|
@@ -7660,17 +7690,17 @@ proto.GetPurchaseRequisitionDetailTrxDetail.serializeBinaryToWriter = function(m
|
|
|
7660
7690
|
|
|
7661
7691
|
|
|
7662
7692
|
/**
|
|
7663
|
-
* repeated
|
|
7664
|
-
* @return {!Array<!proto.
|
|
7693
|
+
* repeated TransactionBuilderFieldsDetail pr_transaction_item_builder = 1;
|
|
7694
|
+
* @return {!Array<!proto.TransactionBuilderFieldsDetail>}
|
|
7665
7695
|
*/
|
|
7666
7696
|
proto.GetPurchaseRequisitionDetailTrxDetail.prototype.getPrTransactionItemBuilderList = function() {
|
|
7667
|
-
return /** @type{!Array<!proto.
|
|
7697
|
+
return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
|
|
7668
7698
|
jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
|
|
7669
7699
|
};
|
|
7670
7700
|
|
|
7671
7701
|
|
|
7672
7702
|
/**
|
|
7673
|
-
* @param {!Array<!proto.
|
|
7703
|
+
* @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
|
|
7674
7704
|
* @return {!proto.GetPurchaseRequisitionDetailTrxDetail} returns this
|
|
7675
7705
|
*/
|
|
7676
7706
|
proto.GetPurchaseRequisitionDetailTrxDetail.prototype.setPrTransactionItemBuilderList = function(value) {
|
|
@@ -7679,12 +7709,12 @@ proto.GetPurchaseRequisitionDetailTrxDetail.prototype.setPrTransactionItemBuilde
|
|
|
7679
7709
|
|
|
7680
7710
|
|
|
7681
7711
|
/**
|
|
7682
|
-
* @param {!proto.
|
|
7712
|
+
* @param {!proto.TransactionBuilderFieldsDetail=} opt_value
|
|
7683
7713
|
* @param {number=} opt_index
|
|
7684
|
-
* @return {!proto.
|
|
7714
|
+
* @return {!proto.TransactionBuilderFieldsDetail}
|
|
7685
7715
|
*/
|
|
7686
7716
|
proto.GetPurchaseRequisitionDetailTrxDetail.prototype.addPrTransactionItemBuilder = function(opt_value, opt_index) {
|
|
7687
|
-
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.
|
|
7717
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
|
|
7688
7718
|
};
|
|
7689
7719
|
|
|
7690
7720
|
|
|
@@ -7834,17 +7864,17 @@ proto.GetPurchaseRequisitionTrxDetailListResponse.serializeBinaryToWriter = func
|
|
|
7834
7864
|
|
|
7835
7865
|
|
|
7836
7866
|
/**
|
|
7837
|
-
* repeated
|
|
7838
|
-
* @return {!Array<!proto.
|
|
7867
|
+
* repeated TransactionBuilderWithDetails data = 1;
|
|
7868
|
+
* @return {!Array<!proto.TransactionBuilderWithDetails>}
|
|
7839
7869
|
*/
|
|
7840
7870
|
proto.GetPurchaseRequisitionTrxDetailListResponse.prototype.getDataList = function() {
|
|
7841
|
-
return /** @type{!Array<!proto.
|
|
7871
|
+
return /** @type{!Array<!proto.TransactionBuilderWithDetails>} */ (
|
|
7842
7872
|
jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderWithDetails, 1));
|
|
7843
7873
|
};
|
|
7844
7874
|
|
|
7845
7875
|
|
|
7846
7876
|
/**
|
|
7847
|
-
* @param {!Array<!proto.
|
|
7877
|
+
* @param {!Array<!proto.TransactionBuilderWithDetails>} value
|
|
7848
7878
|
* @return {!proto.GetPurchaseRequisitionTrxDetailListResponse} returns this
|
|
7849
7879
|
*/
|
|
7850
7880
|
proto.GetPurchaseRequisitionTrxDetailListResponse.prototype.setDataList = function(value) {
|
|
@@ -7853,12 +7883,12 @@ proto.GetPurchaseRequisitionTrxDetailListResponse.prototype.setDataList = functi
|
|
|
7853
7883
|
|
|
7854
7884
|
|
|
7855
7885
|
/**
|
|
7856
|
-
* @param {!proto.
|
|
7886
|
+
* @param {!proto.TransactionBuilderWithDetails=} opt_value
|
|
7857
7887
|
* @param {number=} opt_index
|
|
7858
|
-
* @return {!proto.
|
|
7888
|
+
* @return {!proto.TransactionBuilderWithDetails}
|
|
7859
7889
|
*/
|
|
7860
7890
|
proto.GetPurchaseRequisitionTrxDetailListResponse.prototype.addData = function(opt_value, opt_index) {
|
|
7861
|
-
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.
|
|
7891
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderWithDetails, opt_index);
|
|
7862
7892
|
};
|
|
7863
7893
|
|
|
7864
7894
|
|
|
@@ -8045,17 +8075,17 @@ proto.GetPurchaseRequisitionTrxDetailListTableResponse.serializeBinaryToWriter =
|
|
|
8045
8075
|
|
|
8046
8076
|
|
|
8047
8077
|
/**
|
|
8048
|
-
* repeated
|
|
8049
|
-
* @return {!Array<!proto.
|
|
8078
|
+
* repeated TransactionBuilderWithDetailTableRes data = 1;
|
|
8079
|
+
* @return {!Array<!proto.TransactionBuilderWithDetailTableRes>}
|
|
8050
8080
|
*/
|
|
8051
8081
|
proto.GetPurchaseRequisitionTrxDetailListTableResponse.prototype.getDataList = function() {
|
|
8052
|
-
return /** @type{!Array<!proto.
|
|
8082
|
+
return /** @type{!Array<!proto.TransactionBuilderWithDetailTableRes>} */ (
|
|
8053
8083
|
jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderWithDetailTableRes, 1));
|
|
8054
8084
|
};
|
|
8055
8085
|
|
|
8056
8086
|
|
|
8057
8087
|
/**
|
|
8058
|
-
* @param {!Array<!proto.
|
|
8088
|
+
* @param {!Array<!proto.TransactionBuilderWithDetailTableRes>} value
|
|
8059
8089
|
* @return {!proto.GetPurchaseRequisitionTrxDetailListTableResponse} returns this
|
|
8060
8090
|
*/
|
|
8061
8091
|
proto.GetPurchaseRequisitionTrxDetailListTableResponse.prototype.setDataList = function(value) {
|
|
@@ -8064,12 +8094,12 @@ proto.GetPurchaseRequisitionTrxDetailListTableResponse.prototype.setDataList = f
|
|
|
8064
8094
|
|
|
8065
8095
|
|
|
8066
8096
|
/**
|
|
8067
|
-
* @param {!proto.
|
|
8097
|
+
* @param {!proto.TransactionBuilderWithDetailTableRes=} opt_value
|
|
8068
8098
|
* @param {number=} opt_index
|
|
8069
|
-
* @return {!proto.
|
|
8099
|
+
* @return {!proto.TransactionBuilderWithDetailTableRes}
|
|
8070
8100
|
*/
|
|
8071
8101
|
proto.GetPurchaseRequisitionTrxDetailListTableResponse.prototype.addData = function(opt_value, opt_index) {
|
|
8072
|
-
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.
|
|
8102
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderWithDetailTableRes, opt_index);
|
|
8073
8103
|
};
|
|
8074
8104
|
|
|
8075
8105
|
|
|
@@ -8256,17 +8286,17 @@ proto.GetPurchaseRequisitionTrxDetailListDetailResponse.serializeBinaryToWriter
|
|
|
8256
8286
|
|
|
8257
8287
|
|
|
8258
8288
|
/**
|
|
8259
|
-
* repeated
|
|
8260
|
-
* @return {!Array<!proto.
|
|
8289
|
+
* repeated TransactionBuilderWithDetailRes data = 1;
|
|
8290
|
+
* @return {!Array<!proto.TransactionBuilderWithDetailRes>}
|
|
8261
8291
|
*/
|
|
8262
8292
|
proto.GetPurchaseRequisitionTrxDetailListDetailResponse.prototype.getDataList = function() {
|
|
8263
|
-
return /** @type{!Array<!proto.
|
|
8293
|
+
return /** @type{!Array<!proto.TransactionBuilderWithDetailRes>} */ (
|
|
8264
8294
|
jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderWithDetailRes, 1));
|
|
8265
8295
|
};
|
|
8266
8296
|
|
|
8267
8297
|
|
|
8268
8298
|
/**
|
|
8269
|
-
* @param {!Array<!proto.
|
|
8299
|
+
* @param {!Array<!proto.TransactionBuilderWithDetailRes>} value
|
|
8270
8300
|
* @return {!proto.GetPurchaseRequisitionTrxDetailListDetailResponse} returns this
|
|
8271
8301
|
*/
|
|
8272
8302
|
proto.GetPurchaseRequisitionTrxDetailListDetailResponse.prototype.setDataList = function(value) {
|
|
@@ -8275,12 +8305,12 @@ proto.GetPurchaseRequisitionTrxDetailListDetailResponse.prototype.setDataList =
|
|
|
8275
8305
|
|
|
8276
8306
|
|
|
8277
8307
|
/**
|
|
8278
|
-
* @param {!proto.
|
|
8308
|
+
* @param {!proto.TransactionBuilderWithDetailRes=} opt_value
|
|
8279
8309
|
* @param {number=} opt_index
|
|
8280
|
-
* @return {!proto.
|
|
8310
|
+
* @return {!proto.TransactionBuilderWithDetailRes}
|
|
8281
8311
|
*/
|
|
8282
8312
|
proto.GetPurchaseRequisitionTrxDetailListDetailResponse.prototype.addData = function(opt_value, opt_index) {
|
|
8283
|
-
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.
|
|
8313
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderWithDetailRes, opt_index);
|
|
8284
8314
|
};
|
|
8285
8315
|
|
|
8286
8316
|
|
|
@@ -8468,17 +8498,17 @@ proto.GetPurchaseRequisitionTransactionTrxDetailPreloadResponse.serializeBinaryT
|
|
|
8468
8498
|
|
|
8469
8499
|
|
|
8470
8500
|
/**
|
|
8471
|
-
* repeated
|
|
8472
|
-
* @return {!Array<!proto.
|
|
8501
|
+
* repeated TransactionBuilderFieldsDetail pr_transaction_builder = 1;
|
|
8502
|
+
* @return {!Array<!proto.TransactionBuilderFieldsDetail>}
|
|
8473
8503
|
*/
|
|
8474
8504
|
proto.GetPurchaseRequisitionTransactionTrxDetailPreloadResponse.prototype.getPrTransactionBuilderList = function() {
|
|
8475
|
-
return /** @type{!Array<!proto.
|
|
8505
|
+
return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
|
|
8476
8506
|
jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
|
|
8477
8507
|
};
|
|
8478
8508
|
|
|
8479
8509
|
|
|
8480
8510
|
/**
|
|
8481
|
-
* @param {!Array<!proto.
|
|
8511
|
+
* @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
|
|
8482
8512
|
* @return {!proto.GetPurchaseRequisitionTransactionTrxDetailPreloadResponse} returns this
|
|
8483
8513
|
*/
|
|
8484
8514
|
proto.GetPurchaseRequisitionTransactionTrxDetailPreloadResponse.prototype.setPrTransactionBuilderList = function(value) {
|
|
@@ -8487,12 +8517,12 @@ proto.GetPurchaseRequisitionTransactionTrxDetailPreloadResponse.prototype.setPrT
|
|
|
8487
8517
|
|
|
8488
8518
|
|
|
8489
8519
|
/**
|
|
8490
|
-
* @param {!proto.
|
|
8520
|
+
* @param {!proto.TransactionBuilderFieldsDetail=} opt_value
|
|
8491
8521
|
* @param {number=} opt_index
|
|
8492
|
-
* @return {!proto.
|
|
8522
|
+
* @return {!proto.TransactionBuilderFieldsDetail}
|
|
8493
8523
|
*/
|
|
8494
8524
|
proto.GetPurchaseRequisitionTransactionTrxDetailPreloadResponse.prototype.addPrTransactionBuilder = function(opt_value, opt_index) {
|
|
8495
|
-
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.
|
|
8525
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
|
|
8496
8526
|
};
|
|
8497
8527
|
|
|
8498
8528
|
|
|
@@ -8681,17 +8711,17 @@ proto.GetPurchaseRequisitionTransactionTrxDetailItemPreload.serializeBinaryToWri
|
|
|
8681
8711
|
|
|
8682
8712
|
|
|
8683
8713
|
/**
|
|
8684
|
-
* repeated
|
|
8685
|
-
* @return {!Array<!proto.
|
|
8714
|
+
* repeated TransactionBuilderFieldsDetail pr_transaction_builder_item = 1;
|
|
8715
|
+
* @return {!Array<!proto.TransactionBuilderFieldsDetail>}
|
|
8686
8716
|
*/
|
|
8687
8717
|
proto.GetPurchaseRequisitionTransactionTrxDetailItemPreload.prototype.getPrTransactionBuilderItemList = function() {
|
|
8688
|
-
return /** @type{!Array<!proto.
|
|
8718
|
+
return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
|
|
8689
8719
|
jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
|
|
8690
8720
|
};
|
|
8691
8721
|
|
|
8692
8722
|
|
|
8693
8723
|
/**
|
|
8694
|
-
* @param {!Array<!proto.
|
|
8724
|
+
* @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
|
|
8695
8725
|
* @return {!proto.GetPurchaseRequisitionTransactionTrxDetailItemPreload} returns this
|
|
8696
8726
|
*/
|
|
8697
8727
|
proto.GetPurchaseRequisitionTransactionTrxDetailItemPreload.prototype.setPrTransactionBuilderItemList = function(value) {
|
|
@@ -8700,12 +8730,12 @@ proto.GetPurchaseRequisitionTransactionTrxDetailItemPreload.prototype.setPrTrans
|
|
|
8700
8730
|
|
|
8701
8731
|
|
|
8702
8732
|
/**
|
|
8703
|
-
* @param {!proto.
|
|
8733
|
+
* @param {!proto.TransactionBuilderFieldsDetail=} opt_value
|
|
8704
8734
|
* @param {number=} opt_index
|
|
8705
|
-
* @return {!proto.
|
|
8735
|
+
* @return {!proto.TransactionBuilderFieldsDetail}
|
|
8706
8736
|
*/
|
|
8707
8737
|
proto.GetPurchaseRequisitionTransactionTrxDetailItemPreload.prototype.addPrTransactionBuilderItem = function(opt_value, opt_index) {
|
|
8708
|
-
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.
|
|
8738
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
|
|
8709
8739
|
};
|
|
8710
8740
|
|
|
8711
8741
|
|
|
@@ -8879,17 +8909,17 @@ proto.GetPurchaseRequisitionTransactionTrxDetailItemDetailPreload.serializeBinar
|
|
|
8879
8909
|
|
|
8880
8910
|
|
|
8881
8911
|
/**
|
|
8882
|
-
* repeated
|
|
8883
|
-
* @return {!Array<!proto.
|
|
8912
|
+
* repeated TransactionBuilderFieldsDetail pr_transaction_builder_item_detail = 1;
|
|
8913
|
+
* @return {!Array<!proto.TransactionBuilderFieldsDetail>}
|
|
8884
8914
|
*/
|
|
8885
8915
|
proto.GetPurchaseRequisitionTransactionTrxDetailItemDetailPreload.prototype.getPrTransactionBuilderItemDetailList = function() {
|
|
8886
|
-
return /** @type{!Array<!proto.
|
|
8916
|
+
return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
|
|
8887
8917
|
jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
|
|
8888
8918
|
};
|
|
8889
8919
|
|
|
8890
8920
|
|
|
8891
8921
|
/**
|
|
8892
|
-
* @param {!Array<!proto.
|
|
8922
|
+
* @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
|
|
8893
8923
|
* @return {!proto.GetPurchaseRequisitionTransactionTrxDetailItemDetailPreload} returns this
|
|
8894
8924
|
*/
|
|
8895
8925
|
proto.GetPurchaseRequisitionTransactionTrxDetailItemDetailPreload.prototype.setPrTransactionBuilderItemDetailList = function(value) {
|
|
@@ -8898,12 +8928,12 @@ proto.GetPurchaseRequisitionTransactionTrxDetailItemDetailPreload.prototype.setP
|
|
|
8898
8928
|
|
|
8899
8929
|
|
|
8900
8930
|
/**
|
|
8901
|
-
* @param {!proto.
|
|
8931
|
+
* @param {!proto.TransactionBuilderFieldsDetail=} opt_value
|
|
8902
8932
|
* @param {number=} opt_index
|
|
8903
|
-
* @return {!proto.
|
|
8933
|
+
* @return {!proto.TransactionBuilderFieldsDetail}
|
|
8904
8934
|
*/
|
|
8905
8935
|
proto.GetPurchaseRequisitionTransactionTrxDetailItemDetailPreload.prototype.addPrTransactionBuilderItemDetail = function(opt_value, opt_index) {
|
|
8906
|
-
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.
|
|
8936
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
|
|
8907
8937
|
};
|
|
8908
8938
|
|
|
8909
8939
|
|