@aldiokta/protocgen 1.1.60 → 1.1.61
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/budget/budget_grpc_pb.js +1 -0
- package/prisca/v1/budget/budget_pb.js +54 -1
- package/prisca/v1/budget_planning/budget_planning_grpc_pb.js +79 -0
- package/prisca/v1/budget_planning/budget_planning_pb.js +4069 -51
- package/prisca/v1/core/item_transaction/item_transaction_pb.js +92 -2
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +208 -118
|
@@ -2834,7 +2834,9 @@ previousReferences: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
|
2834
2834
|
remainingQuantity: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
2835
2835
|
goodsReceiptQuantity: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
2836
2836
|
invoiceQuantity: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
2837
|
-
purchaseOrderQuantity: jspb.Message.getFieldWithDefault(msg, 17, "")
|
|
2837
|
+
purchaseOrderQuantity: jspb.Message.getFieldWithDefault(msg, 17, ""),
|
|
2838
|
+
purchaseRequisitionQuantity: jspb.Message.getFieldWithDefault(msg, 28, ""),
|
|
2839
|
+
purchaseRequisitionPrice: jspb.Message.getFieldWithDefault(msg, 29, "")
|
|
2838
2840
|
};
|
|
2839
2841
|
|
|
2840
2842
|
if (includeInstance) {
|
|
@@ -2941,6 +2943,14 @@ proto.ItemTransactionService.deserializeBinaryFromReader = function(msg, reader)
|
|
|
2941
2943
|
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
2942
2944
|
msg.setPurchaseOrderQuantity(value);
|
|
2943
2945
|
break;
|
|
2946
|
+
case 28:
|
|
2947
|
+
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
2948
|
+
msg.setPurchaseRequisitionQuantity(value);
|
|
2949
|
+
break;
|
|
2950
|
+
case 29:
|
|
2951
|
+
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
2952
|
+
msg.setPurchaseRequisitionPrice(value);
|
|
2953
|
+
break;
|
|
2944
2954
|
default:
|
|
2945
2955
|
reader.skipField();
|
|
2946
2956
|
break;
|
|
@@ -3091,6 +3101,20 @@ proto.ItemTransactionService.serializeBinaryToWriter = function(message, writer)
|
|
|
3091
3101
|
f
|
|
3092
3102
|
);
|
|
3093
3103
|
}
|
|
3104
|
+
f = message.getPurchaseRequisitionQuantity();
|
|
3105
|
+
if (f.length > 0) {
|
|
3106
|
+
writer.writeString(
|
|
3107
|
+
28,
|
|
3108
|
+
f
|
|
3109
|
+
);
|
|
3110
|
+
}
|
|
3111
|
+
f = message.getPurchaseRequisitionPrice();
|
|
3112
|
+
if (f.length > 0) {
|
|
3113
|
+
writer.writeString(
|
|
3114
|
+
29,
|
|
3115
|
+
f
|
|
3116
|
+
);
|
|
3117
|
+
}
|
|
3094
3118
|
};
|
|
3095
3119
|
|
|
3096
3120
|
|
|
@@ -3440,6 +3464,42 @@ proto.ItemTransactionService.prototype.setPurchaseOrderQuantity = function(value
|
|
|
3440
3464
|
};
|
|
3441
3465
|
|
|
3442
3466
|
|
|
3467
|
+
/**
|
|
3468
|
+
* optional string purchase_requisition_quantity = 28;
|
|
3469
|
+
* @return {string}
|
|
3470
|
+
*/
|
|
3471
|
+
proto.ItemTransactionService.prototype.getPurchaseRequisitionQuantity = function() {
|
|
3472
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 28, ""));
|
|
3473
|
+
};
|
|
3474
|
+
|
|
3475
|
+
|
|
3476
|
+
/**
|
|
3477
|
+
* @param {string} value
|
|
3478
|
+
* @return {!proto.ItemTransactionService} returns this
|
|
3479
|
+
*/
|
|
3480
|
+
proto.ItemTransactionService.prototype.setPurchaseRequisitionQuantity = function(value) {
|
|
3481
|
+
return jspb.Message.setProto3StringField(this, 28, value);
|
|
3482
|
+
};
|
|
3483
|
+
|
|
3484
|
+
|
|
3485
|
+
/**
|
|
3486
|
+
* optional string purchase_requisition_price = 29;
|
|
3487
|
+
* @return {string}
|
|
3488
|
+
*/
|
|
3489
|
+
proto.ItemTransactionService.prototype.getPurchaseRequisitionPrice = function() {
|
|
3490
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 29, ""));
|
|
3491
|
+
};
|
|
3492
|
+
|
|
3493
|
+
|
|
3494
|
+
/**
|
|
3495
|
+
* @param {string} value
|
|
3496
|
+
* @return {!proto.ItemTransactionService} returns this
|
|
3497
|
+
*/
|
|
3498
|
+
proto.ItemTransactionService.prototype.setPurchaseRequisitionPrice = function(value) {
|
|
3499
|
+
return jspb.Message.setProto3StringField(this, 29, value);
|
|
3500
|
+
};
|
|
3501
|
+
|
|
3502
|
+
|
|
3443
3503
|
|
|
3444
3504
|
|
|
3445
3505
|
|
|
@@ -5159,7 +5219,8 @@ purchaseRequisitionPrice: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
|
5159
5219
|
includeVat: jspb.Message.getBooleanFieldWithDefault(msg, 34, false),
|
|
5160
5220
|
incomeTax: jspb.Message.getFloatingPointFieldWithDefault(msg, 35, 0.0),
|
|
5161
5221
|
priceBeforeTax: jspb.Message.getFieldWithDefault(msg, 36, ""),
|
|
5162
|
-
itemCategory: jspb.Message.getFieldWithDefault(msg, 37, "")
|
|
5222
|
+
itemCategory: jspb.Message.getFieldWithDefault(msg, 37, ""),
|
|
5223
|
+
budgetCode: jspb.Message.getFieldWithDefault(msg, 38, "")
|
|
5163
5224
|
};
|
|
5164
5225
|
|
|
5165
5226
|
if (includeInstance) {
|
|
@@ -5308,6 +5369,10 @@ proto.BaseItemTransaction.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
5308
5369
|
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
5309
5370
|
msg.setItemCategory(value);
|
|
5310
5371
|
break;
|
|
5372
|
+
case 38:
|
|
5373
|
+
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
5374
|
+
msg.setBudgetCode(value);
|
|
5375
|
+
break;
|
|
5311
5376
|
default:
|
|
5312
5377
|
reader.skipField();
|
|
5313
5378
|
break;
|
|
@@ -5530,6 +5595,13 @@ proto.BaseItemTransaction.serializeBinaryToWriter = function(message, writer) {
|
|
|
5530
5595
|
f
|
|
5531
5596
|
);
|
|
5532
5597
|
}
|
|
5598
|
+
f = message.getBudgetCode();
|
|
5599
|
+
if (f.length > 0) {
|
|
5600
|
+
writer.writeString(
|
|
5601
|
+
38,
|
|
5602
|
+
f
|
|
5603
|
+
);
|
|
5604
|
+
}
|
|
5533
5605
|
};
|
|
5534
5606
|
|
|
5535
5607
|
|
|
@@ -6099,6 +6171,24 @@ proto.BaseItemTransaction.prototype.setItemCategory = function(value) {
|
|
|
6099
6171
|
};
|
|
6100
6172
|
|
|
6101
6173
|
|
|
6174
|
+
/**
|
|
6175
|
+
* optional string budget_code = 38;
|
|
6176
|
+
* @return {string}
|
|
6177
|
+
*/
|
|
6178
|
+
proto.BaseItemTransaction.prototype.getBudgetCode = function() {
|
|
6179
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 38, ""));
|
|
6180
|
+
};
|
|
6181
|
+
|
|
6182
|
+
|
|
6183
|
+
/**
|
|
6184
|
+
* @param {string} value
|
|
6185
|
+
* @return {!proto.BaseItemTransaction} returns this
|
|
6186
|
+
*/
|
|
6187
|
+
proto.BaseItemTransaction.prototype.setBudgetCode = function(value) {
|
|
6188
|
+
return jspb.Message.setProto3StringField(this, 38, value);
|
|
6189
|
+
};
|
|
6190
|
+
|
|
6191
|
+
|
|
6102
6192
|
|
|
6103
6193
|
/**
|
|
6104
6194
|
* List of repeated fields within this message type.
|