@aldiokta/protocgen 1.1.27 → 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 +33 -0
- package/prisca/v1/bidding/bidding_pb.js +598 -37
- package/prisca/v1/core/auth/auth_grpc_pb.js +1 -0
- package/prisca/v1/core/auth/auth_pb.js +7 -217
- package/prisca/v1/core/file_upload/file_upload_pb.js +93 -3
- package/prisca/v1/core/item_transaction/item_transaction_pb.js +0 -30
- 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/price_condition/price_condition_pb.js +62 -2
- package/prisca/v1/core/transaction_builder/transaction_builder_grpc_pb.js +234 -168
- package/prisca/v1/core/transaction_builder/transaction_builder_pb.js +1959 -1777
- package/prisca/v1/delivery_order/delivery_order_pb.js +21 -21
- package/prisca/v1/good_receipt/good_receipt_grpc_pb.js +1 -0
- package/prisca/v1/good_receipt/good_receipt_pb.js +277 -23
- 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 +21 -21
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +74 -74
- package/prisca/v1/purchasing_organization/purchasing_organization_pb.js +55 -177
- package/prisca/v1/quotation/quotation_pb.js +118 -28
- 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_pb.js +375 -225
|
@@ -375,7 +375,8 @@ createdAt: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
|
375
375
|
updatedAt: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
376
376
|
documentType: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
377
377
|
employees: (f = msg.getEmployees()) && prisca_v1_core_employee_employee_pb.Employee.toObject(includeInstance, f),
|
|
378
|
-
approvalNote: jspb.Message.getFieldWithDefault(msg, 11, "")
|
|
378
|
+
approvalNote: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
379
|
+
companiesReferencesId: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
379
380
|
};
|
|
380
381
|
|
|
381
382
|
if (includeInstance) {
|
|
@@ -457,6 +458,10 @@ proto.LineOfApproval.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
457
458
|
var value = /** @type {string} */ (reader.readString());
|
|
458
459
|
msg.setApprovalNote(value);
|
|
459
460
|
break;
|
|
461
|
+
case 12:
|
|
462
|
+
var value = /** @type {string} */ (reader.readString());
|
|
463
|
+
msg.setCompaniesReferencesId(value);
|
|
464
|
+
break;
|
|
460
465
|
default:
|
|
461
466
|
reader.skipField();
|
|
462
467
|
break;
|
|
@@ -564,6 +569,13 @@ proto.LineOfApproval.serializeBinaryToWriter = function(message, writer) {
|
|
|
564
569
|
f
|
|
565
570
|
);
|
|
566
571
|
}
|
|
572
|
+
f = message.getCompaniesReferencesId();
|
|
573
|
+
if (f.length > 0) {
|
|
574
|
+
writer.writeString(
|
|
575
|
+
12,
|
|
576
|
+
f
|
|
577
|
+
);
|
|
578
|
+
}
|
|
567
579
|
};
|
|
568
580
|
|
|
569
581
|
|
|
@@ -784,6 +796,24 @@ proto.LineOfApproval.prototype.setApprovalNote = function(value) {
|
|
|
784
796
|
};
|
|
785
797
|
|
|
786
798
|
|
|
799
|
+
/**
|
|
800
|
+
* optional string companies_references_id = 12;
|
|
801
|
+
* @return {string}
|
|
802
|
+
*/
|
|
803
|
+
proto.LineOfApproval.prototype.getCompaniesReferencesId = function() {
|
|
804
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
805
|
+
};
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
/**
|
|
809
|
+
* @param {string} value
|
|
810
|
+
* @return {!proto.LineOfApproval} returns this
|
|
811
|
+
*/
|
|
812
|
+
proto.LineOfApproval.prototype.setCompaniesReferencesId = function(value) {
|
|
813
|
+
return jspb.Message.setProto3StringField(this, 12, value);
|
|
814
|
+
};
|
|
815
|
+
|
|
816
|
+
|
|
787
817
|
|
|
788
818
|
|
|
789
819
|
|