@aldiokta/protocgen 1.1.61 → 1.1.62

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.
Files changed (30) hide show
  1. package/package.json +1 -1
  2. package/prisca/v1/budget/budget_pb.js +211 -1
  3. package/prisca/v1/budget_planning/budget_planning_grpc_pb.js +33 -0
  4. package/prisca/v1/budget_planning/budget_planning_pb.js +1199 -152
  5. package/prisca/v1/core/auth/auth_grpc_pb.js +1 -0
  6. package/prisca/v1/core/auth/auth_pb.js +115 -2
  7. package/prisca/v1/core/employee/employee_grpc_pb.js +22 -0
  8. package/prisca/v1/core/employee/employee_pb.js +214 -2
  9. package/prisca/v1/core/item_transaction/item_transaction_pb.js +519 -10
  10. package/prisca/v1/core/line_of_approval/line_of_approval_grpc_pb.js +22 -0
  11. package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +303 -1
  12. package/prisca/v1/core/report/report_pb.js +31 -1
  13. package/prisca/v1/core/users/users_pb.js +31 -1
  14. package/prisca/v1/down_payment/down_payment_grpc_pb.js +201 -0
  15. package/prisca/v1/down_payment/down_payment_pb.js +3357 -0
  16. package/prisca/v1/general_configuration/general_configuration_grpc_pb.js +212 -0
  17. package/prisca/v1/general_configuration/general_configuration_pb.js +2886 -0
  18. package/prisca/v1/invoice/invoice_grpc_pb.js +77 -0
  19. package/prisca/v1/invoice/invoice_pb.js +2657 -434
  20. package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +34 -0
  21. package/prisca/v1/purchase_order/purchase_order_pb.js +2542 -57
  22. package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +22 -0
  23. package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +743 -53
  24. package/prisca/v1/vendor_domain/vendor_domain_pb.js +72 -12
  25. package/prisca/v1/webhook_builder/webhook_builder_grpc_pb.js +245 -0
  26. package/prisca/v1/webhook_builder/webhook_builder_pb.js +5084 -0
  27. package/prisca/v1/webhook_incoming_integration/webhook_incoming_integration_grpc_pb.js +245 -0
  28. package/prisca/v1/webhook_incoming_integration/webhook_incoming_integration_pb.js +3499 -0
  29. package/prisca/v1/webhook_integration/webhook_integration_grpc_pb.js +212 -0
  30. package/prisca/v1/webhook_integration/webhook_integration_pb.js +2976 -0
@@ -11367,7 +11367,14 @@ unitOfMeasure: jspb.Message.getFieldWithDefault(msg, 21, ""),
11367
11367
  createdByUser: (f = msg.getCreatedByUser()) && prisca_v1_global_meta_meta_pb.Creator.toObject(includeInstance, f),
11368
11368
  prFullyApprovedDate: jspb.Message.getFieldWithDefault(msg, 23, ""),
11369
11369
  poFullyApprovedDate: jspb.Message.getFieldWithDefault(msg, 24, ""),
11370
- vendor: jspb.Message.getFieldWithDefault(msg, 25, "")
11370
+ vendor: jspb.Message.getFieldWithDefault(msg, 25, ""),
11371
+ prCurrentApprover: jspb.Message.getFieldWithDefault(msg, 26, ""),
11372
+ prStatusChangedAt: jspb.Message.getFieldWithDefault(msg, 27, ""),
11373
+ poCurrentApprover: jspb.Message.getFieldWithDefault(msg, 28, ""),
11374
+ poStatusChangedAt: jspb.Message.getFieldWithDefault(msg, 29, ""),
11375
+ grCurrentApprover: jspb.Message.getFieldWithDefault(msg, 30, ""),
11376
+ grStatusChangedAt: jspb.Message.getFieldWithDefault(msg, 31, ""),
11377
+ departmentName: jspb.Message.getFieldWithDefault(msg, 32, "")
11371
11378
  };
11372
11379
 
11373
11380
  if (includeInstance) {
@@ -11505,6 +11512,34 @@ proto.PurchaseRequisitionItemTrack.deserializeBinaryFromReader = function(msg, r
11505
11512
  var value = /** @type {string} */ (reader.readStringRequireUtf8());
11506
11513
  msg.setVendor(value);
11507
11514
  break;
11515
+ case 26:
11516
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
11517
+ msg.setPrCurrentApprover(value);
11518
+ break;
11519
+ case 27:
11520
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
11521
+ msg.setPrStatusChangedAt(value);
11522
+ break;
11523
+ case 28:
11524
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
11525
+ msg.setPoCurrentApprover(value);
11526
+ break;
11527
+ case 29:
11528
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
11529
+ msg.setPoStatusChangedAt(value);
11530
+ break;
11531
+ case 30:
11532
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
11533
+ msg.setGrCurrentApprover(value);
11534
+ break;
11535
+ case 31:
11536
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
11537
+ msg.setGrStatusChangedAt(value);
11538
+ break;
11539
+ case 32:
11540
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
11541
+ msg.setDepartmentName(value);
11542
+ break;
11508
11543
  default:
11509
11544
  reader.skipField();
11510
11545
  break;
@@ -11710,6 +11745,55 @@ proto.PurchaseRequisitionItemTrack.serializeBinaryToWriter = function(message, w
11710
11745
  f
11711
11746
  );
11712
11747
  }
11748
+ f = message.getPrCurrentApprover();
11749
+ if (f.length > 0) {
11750
+ writer.writeString(
11751
+ 26,
11752
+ f
11753
+ );
11754
+ }
11755
+ f = message.getPrStatusChangedAt();
11756
+ if (f.length > 0) {
11757
+ writer.writeString(
11758
+ 27,
11759
+ f
11760
+ );
11761
+ }
11762
+ f = message.getPoCurrentApprover();
11763
+ if (f.length > 0) {
11764
+ writer.writeString(
11765
+ 28,
11766
+ f
11767
+ );
11768
+ }
11769
+ f = message.getPoStatusChangedAt();
11770
+ if (f.length > 0) {
11771
+ writer.writeString(
11772
+ 29,
11773
+ f
11774
+ );
11775
+ }
11776
+ f = message.getGrCurrentApprover();
11777
+ if (f.length > 0) {
11778
+ writer.writeString(
11779
+ 30,
11780
+ f
11781
+ );
11782
+ }
11783
+ f = message.getGrStatusChangedAt();
11784
+ if (f.length > 0) {
11785
+ writer.writeString(
11786
+ 31,
11787
+ f
11788
+ );
11789
+ }
11790
+ f = message.getDepartmentName();
11791
+ if (f.length > 0) {
11792
+ writer.writeString(
11793
+ 32,
11794
+ f
11795
+ );
11796
+ }
11713
11797
  };
11714
11798
 
11715
11799
 
@@ -12182,6 +12266,132 @@ proto.PurchaseRequisitionItemTrack.prototype.setVendor = function(value) {
12182
12266
  };
12183
12267
 
12184
12268
 
12269
+ /**
12270
+ * optional string pr_current_approver = 26;
12271
+ * @return {string}
12272
+ */
12273
+ proto.PurchaseRequisitionItemTrack.prototype.getPrCurrentApprover = function() {
12274
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 26, ""));
12275
+ };
12276
+
12277
+
12278
+ /**
12279
+ * @param {string} value
12280
+ * @return {!proto.PurchaseRequisitionItemTrack} returns this
12281
+ */
12282
+ proto.PurchaseRequisitionItemTrack.prototype.setPrCurrentApprover = function(value) {
12283
+ return jspb.Message.setProto3StringField(this, 26, value);
12284
+ };
12285
+
12286
+
12287
+ /**
12288
+ * optional string pr_status_changed_at = 27;
12289
+ * @return {string}
12290
+ */
12291
+ proto.PurchaseRequisitionItemTrack.prototype.getPrStatusChangedAt = function() {
12292
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 27, ""));
12293
+ };
12294
+
12295
+
12296
+ /**
12297
+ * @param {string} value
12298
+ * @return {!proto.PurchaseRequisitionItemTrack} returns this
12299
+ */
12300
+ proto.PurchaseRequisitionItemTrack.prototype.setPrStatusChangedAt = function(value) {
12301
+ return jspb.Message.setProto3StringField(this, 27, value);
12302
+ };
12303
+
12304
+
12305
+ /**
12306
+ * optional string po_current_approver = 28;
12307
+ * @return {string}
12308
+ */
12309
+ proto.PurchaseRequisitionItemTrack.prototype.getPoCurrentApprover = function() {
12310
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 28, ""));
12311
+ };
12312
+
12313
+
12314
+ /**
12315
+ * @param {string} value
12316
+ * @return {!proto.PurchaseRequisitionItemTrack} returns this
12317
+ */
12318
+ proto.PurchaseRequisitionItemTrack.prototype.setPoCurrentApprover = function(value) {
12319
+ return jspb.Message.setProto3StringField(this, 28, value);
12320
+ };
12321
+
12322
+
12323
+ /**
12324
+ * optional string po_status_changed_at = 29;
12325
+ * @return {string}
12326
+ */
12327
+ proto.PurchaseRequisitionItemTrack.prototype.getPoStatusChangedAt = function() {
12328
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 29, ""));
12329
+ };
12330
+
12331
+
12332
+ /**
12333
+ * @param {string} value
12334
+ * @return {!proto.PurchaseRequisitionItemTrack} returns this
12335
+ */
12336
+ proto.PurchaseRequisitionItemTrack.prototype.setPoStatusChangedAt = function(value) {
12337
+ return jspb.Message.setProto3StringField(this, 29, value);
12338
+ };
12339
+
12340
+
12341
+ /**
12342
+ * optional string gr_current_approver = 30;
12343
+ * @return {string}
12344
+ */
12345
+ proto.PurchaseRequisitionItemTrack.prototype.getGrCurrentApprover = function() {
12346
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 30, ""));
12347
+ };
12348
+
12349
+
12350
+ /**
12351
+ * @param {string} value
12352
+ * @return {!proto.PurchaseRequisitionItemTrack} returns this
12353
+ */
12354
+ proto.PurchaseRequisitionItemTrack.prototype.setGrCurrentApprover = function(value) {
12355
+ return jspb.Message.setProto3StringField(this, 30, value);
12356
+ };
12357
+
12358
+
12359
+ /**
12360
+ * optional string gr_status_changed_at = 31;
12361
+ * @return {string}
12362
+ */
12363
+ proto.PurchaseRequisitionItemTrack.prototype.getGrStatusChangedAt = function() {
12364
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 31, ""));
12365
+ };
12366
+
12367
+
12368
+ /**
12369
+ * @param {string} value
12370
+ * @return {!proto.PurchaseRequisitionItemTrack} returns this
12371
+ */
12372
+ proto.PurchaseRequisitionItemTrack.prototype.setGrStatusChangedAt = function(value) {
12373
+ return jspb.Message.setProto3StringField(this, 31, value);
12374
+ };
12375
+
12376
+
12377
+ /**
12378
+ * optional string department_name = 32;
12379
+ * @return {string}
12380
+ */
12381
+ proto.PurchaseRequisitionItemTrack.prototype.getDepartmentName = function() {
12382
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 32, ""));
12383
+ };
12384
+
12385
+
12386
+ /**
12387
+ * @param {string} value
12388
+ * @return {!proto.PurchaseRequisitionItemTrack} returns this
12389
+ */
12390
+ proto.PurchaseRequisitionItemTrack.prototype.setDepartmentName = function(value) {
12391
+ return jspb.Message.setProto3StringField(this, 32, value);
12392
+ };
12393
+
12394
+
12185
12395
 
12186
12396
  /**
12187
12397
  * List of repeated fields within this message type.
@@ -12438,7 +12648,23 @@ agingWorkdays: jspb.Message.getFieldWithDefault(msg, 10, 0),
12438
12648
  purchaseOrderNumber: jspb.Message.getFieldWithDefault(msg, 11, ""),
12439
12649
  createdByUser: (f = msg.getCreatedByUser()) && prisca_v1_global_meta_meta_pb.Creator.toObject(includeInstance, f),
12440
12650
  quantity: jspb.Message.getFloatingPointFieldWithDefault(msg, 13, 0.0),
12441
- purchasingGroup: jspb.Message.getFieldWithDefault(msg, 14, "")
12651
+ purchasingGroup: jspb.Message.getFieldWithDefault(msg, 14, ""),
12652
+ status: jspb.Message.getFieldWithDefault(msg, 15, ""),
12653
+ department: jspb.Message.getFieldWithDefault(msg, 16, ""),
12654
+ prType: jspb.Message.getFieldWithDefault(msg, 17, ""),
12655
+ materialDescription: jspb.Message.getFieldWithDefault(msg, 18, ""),
12656
+ materialType: jspb.Message.getFieldWithDefault(msg, 19, ""),
12657
+ estimatedUnitPrice: jspb.Message.getFloatingPointFieldWithDefault(msg, 20, 0.0),
12658
+ glAccount: jspb.Message.getFieldWithDefault(msg, 21, ""),
12659
+ glAccountDescription: jspb.Message.getFieldWithDefault(msg, 22, ""),
12660
+ createdDate: jspb.Message.getFieldWithDefault(msg, 23, ""),
12661
+ plantId: jspb.Message.getFieldWithDefault(msg, 24, ""),
12662
+ assetNumber: jspb.Message.getFieldWithDefault(msg, 25, ""),
12663
+ isOnBidding: jspb.Message.getBooleanFieldWithDefault(msg, 26, false),
12664
+ biddingNumber: jspb.Message.getFieldWithDefault(msg, 27, ""),
12665
+ isOnPo: jspb.Message.getBooleanFieldWithDefault(msg, 28, false),
12666
+ poNumber: jspb.Message.getFieldWithDefault(msg, 29, ""),
12667
+ departmentName: jspb.Message.getFieldWithDefault(msg, 30, "")
12442
12668
  };
12443
12669
 
12444
12670
  if (includeInstance) {
@@ -12532,6 +12758,70 @@ proto.PurchaseRequisitionProgressTrack.deserializeBinaryFromReader = function(ms
12532
12758
  var value = /** @type {string} */ (reader.readStringRequireUtf8());
12533
12759
  msg.setPurchasingGroup(value);
12534
12760
  break;
12761
+ case 15:
12762
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12763
+ msg.setStatus(value);
12764
+ break;
12765
+ case 16:
12766
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12767
+ msg.setDepartment(value);
12768
+ break;
12769
+ case 17:
12770
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12771
+ msg.setPrType(value);
12772
+ break;
12773
+ case 18:
12774
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12775
+ msg.setMaterialDescription(value);
12776
+ break;
12777
+ case 19:
12778
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12779
+ msg.setMaterialType(value);
12780
+ break;
12781
+ case 20:
12782
+ var value = /** @type {number} */ (reader.readDouble());
12783
+ msg.setEstimatedUnitPrice(value);
12784
+ break;
12785
+ case 21:
12786
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12787
+ msg.setGlAccount(value);
12788
+ break;
12789
+ case 22:
12790
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12791
+ msg.setGlAccountDescription(value);
12792
+ break;
12793
+ case 23:
12794
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12795
+ msg.setCreatedDate(value);
12796
+ break;
12797
+ case 24:
12798
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12799
+ msg.setPlantId(value);
12800
+ break;
12801
+ case 25:
12802
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12803
+ msg.setAssetNumber(value);
12804
+ break;
12805
+ case 26:
12806
+ var value = /** @type {boolean} */ (reader.readBool());
12807
+ msg.setIsOnBidding(value);
12808
+ break;
12809
+ case 27:
12810
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12811
+ msg.setBiddingNumber(value);
12812
+ break;
12813
+ case 28:
12814
+ var value = /** @type {boolean} */ (reader.readBool());
12815
+ msg.setIsOnPo(value);
12816
+ break;
12817
+ case 29:
12818
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12819
+ msg.setPoNumber(value);
12820
+ break;
12821
+ case 30:
12822
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
12823
+ msg.setDepartmentName(value);
12824
+ break;
12535
12825
  default:
12536
12826
  reader.skipField();
12537
12827
  break;
@@ -12660,57 +12950,169 @@ proto.PurchaseRequisitionProgressTrack.serializeBinaryToWriter = function(messag
12660
12950
  f
12661
12951
  );
12662
12952
  }
12663
- };
12664
-
12665
-
12666
- /**
12667
- * optional string purchase_request_number = 1;
12668
- * @return {string}
12669
- */
12670
- proto.PurchaseRequisitionProgressTrack.prototype.getPurchaseRequestNumber = function() {
12671
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
12672
- };
12673
-
12674
-
12675
- /**
12676
- * @param {string} value
12677
- * @return {!proto.PurchaseRequisitionProgressTrack} returns this
12678
- */
12679
- proto.PurchaseRequisitionProgressTrack.prototype.setPurchaseRequestNumber = function(value) {
12680
- return jspb.Message.setProto3StringField(this, 1, value);
12681
- };
12682
-
12683
-
12684
- /**
12685
- * optional string material_code = 2;
12686
- * @return {string}
12687
- */
12688
- proto.PurchaseRequisitionProgressTrack.prototype.getMaterialCode = function() {
12689
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
12690
- };
12691
-
12692
-
12693
- /**
12694
- * @param {string} value
12695
- * @return {!proto.PurchaseRequisitionProgressTrack} returns this
12696
- */
12697
- proto.PurchaseRequisitionProgressTrack.prototype.setMaterialCode = function(value) {
12698
- return jspb.Message.setProto3StringField(this, 2, value);
12699
- };
12700
-
12701
-
12702
- /**
12703
- * optional string detail_description = 3;
12704
- * @return {string}
12705
- */
12706
- proto.PurchaseRequisitionProgressTrack.prototype.getDetailDescription = function() {
12707
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
12708
- };
12709
-
12710
-
12711
- /**
12712
- * @param {string} value
12713
- * @return {!proto.PurchaseRequisitionProgressTrack} returns this
12953
+ f = message.getStatus();
12954
+ if (f.length > 0) {
12955
+ writer.writeString(
12956
+ 15,
12957
+ f
12958
+ );
12959
+ }
12960
+ f = message.getDepartment();
12961
+ if (f.length > 0) {
12962
+ writer.writeString(
12963
+ 16,
12964
+ f
12965
+ );
12966
+ }
12967
+ f = message.getPrType();
12968
+ if (f.length > 0) {
12969
+ writer.writeString(
12970
+ 17,
12971
+ f
12972
+ );
12973
+ }
12974
+ f = message.getMaterialDescription();
12975
+ if (f.length > 0) {
12976
+ writer.writeString(
12977
+ 18,
12978
+ f
12979
+ );
12980
+ }
12981
+ f = message.getMaterialType();
12982
+ if (f.length > 0) {
12983
+ writer.writeString(
12984
+ 19,
12985
+ f
12986
+ );
12987
+ }
12988
+ f = message.getEstimatedUnitPrice();
12989
+ if (f !== 0.0) {
12990
+ writer.writeDouble(
12991
+ 20,
12992
+ f
12993
+ );
12994
+ }
12995
+ f = message.getGlAccount();
12996
+ if (f.length > 0) {
12997
+ writer.writeString(
12998
+ 21,
12999
+ f
13000
+ );
13001
+ }
13002
+ f = message.getGlAccountDescription();
13003
+ if (f.length > 0) {
13004
+ writer.writeString(
13005
+ 22,
13006
+ f
13007
+ );
13008
+ }
13009
+ f = message.getCreatedDate();
13010
+ if (f.length > 0) {
13011
+ writer.writeString(
13012
+ 23,
13013
+ f
13014
+ );
13015
+ }
13016
+ f = message.getPlantId();
13017
+ if (f.length > 0) {
13018
+ writer.writeString(
13019
+ 24,
13020
+ f
13021
+ );
13022
+ }
13023
+ f = message.getAssetNumber();
13024
+ if (f.length > 0) {
13025
+ writer.writeString(
13026
+ 25,
13027
+ f
13028
+ );
13029
+ }
13030
+ f = message.getIsOnBidding();
13031
+ if (f) {
13032
+ writer.writeBool(
13033
+ 26,
13034
+ f
13035
+ );
13036
+ }
13037
+ f = message.getBiddingNumber();
13038
+ if (f.length > 0) {
13039
+ writer.writeString(
13040
+ 27,
13041
+ f
13042
+ );
13043
+ }
13044
+ f = message.getIsOnPo();
13045
+ if (f) {
13046
+ writer.writeBool(
13047
+ 28,
13048
+ f
13049
+ );
13050
+ }
13051
+ f = message.getPoNumber();
13052
+ if (f.length > 0) {
13053
+ writer.writeString(
13054
+ 29,
13055
+ f
13056
+ );
13057
+ }
13058
+ f = message.getDepartmentName();
13059
+ if (f.length > 0) {
13060
+ writer.writeString(
13061
+ 30,
13062
+ f
13063
+ );
13064
+ }
13065
+ };
13066
+
13067
+
13068
+ /**
13069
+ * optional string purchase_request_number = 1;
13070
+ * @return {string}
13071
+ */
13072
+ proto.PurchaseRequisitionProgressTrack.prototype.getPurchaseRequestNumber = function() {
13073
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
13074
+ };
13075
+
13076
+
13077
+ /**
13078
+ * @param {string} value
13079
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13080
+ */
13081
+ proto.PurchaseRequisitionProgressTrack.prototype.setPurchaseRequestNumber = function(value) {
13082
+ return jspb.Message.setProto3StringField(this, 1, value);
13083
+ };
13084
+
13085
+
13086
+ /**
13087
+ * optional string material_code = 2;
13088
+ * @return {string}
13089
+ */
13090
+ proto.PurchaseRequisitionProgressTrack.prototype.getMaterialCode = function() {
13091
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
13092
+ };
13093
+
13094
+
13095
+ /**
13096
+ * @param {string} value
13097
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13098
+ */
13099
+ proto.PurchaseRequisitionProgressTrack.prototype.setMaterialCode = function(value) {
13100
+ return jspb.Message.setProto3StringField(this, 2, value);
13101
+ };
13102
+
13103
+
13104
+ /**
13105
+ * optional string detail_description = 3;
13106
+ * @return {string}
13107
+ */
13108
+ proto.PurchaseRequisitionProgressTrack.prototype.getDetailDescription = function() {
13109
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
13110
+ };
13111
+
13112
+
13113
+ /**
13114
+ * @param {string} value
13115
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
12714
13116
  */
12715
13117
  proto.PurchaseRequisitionProgressTrack.prototype.setDetailDescription = function(value) {
12716
13118
  return jspb.Message.setProto3StringField(this, 3, value);
@@ -12934,6 +13336,294 @@ proto.PurchaseRequisitionProgressTrack.prototype.setPurchasingGroup = function(v
12934
13336
  };
12935
13337
 
12936
13338
 
13339
+ /**
13340
+ * optional string status = 15;
13341
+ * @return {string}
13342
+ */
13343
+ proto.PurchaseRequisitionProgressTrack.prototype.getStatus = function() {
13344
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
13345
+ };
13346
+
13347
+
13348
+ /**
13349
+ * @param {string} value
13350
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13351
+ */
13352
+ proto.PurchaseRequisitionProgressTrack.prototype.setStatus = function(value) {
13353
+ return jspb.Message.setProto3StringField(this, 15, value);
13354
+ };
13355
+
13356
+
13357
+ /**
13358
+ * optional string department = 16;
13359
+ * @return {string}
13360
+ */
13361
+ proto.PurchaseRequisitionProgressTrack.prototype.getDepartment = function() {
13362
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
13363
+ };
13364
+
13365
+
13366
+ /**
13367
+ * @param {string} value
13368
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13369
+ */
13370
+ proto.PurchaseRequisitionProgressTrack.prototype.setDepartment = function(value) {
13371
+ return jspb.Message.setProto3StringField(this, 16, value);
13372
+ };
13373
+
13374
+
13375
+ /**
13376
+ * optional string pr_type = 17;
13377
+ * @return {string}
13378
+ */
13379
+ proto.PurchaseRequisitionProgressTrack.prototype.getPrType = function() {
13380
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
13381
+ };
13382
+
13383
+
13384
+ /**
13385
+ * @param {string} value
13386
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13387
+ */
13388
+ proto.PurchaseRequisitionProgressTrack.prototype.setPrType = function(value) {
13389
+ return jspb.Message.setProto3StringField(this, 17, value);
13390
+ };
13391
+
13392
+
13393
+ /**
13394
+ * optional string material_description = 18;
13395
+ * @return {string}
13396
+ */
13397
+ proto.PurchaseRequisitionProgressTrack.prototype.getMaterialDescription = function() {
13398
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 18, ""));
13399
+ };
13400
+
13401
+
13402
+ /**
13403
+ * @param {string} value
13404
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13405
+ */
13406
+ proto.PurchaseRequisitionProgressTrack.prototype.setMaterialDescription = function(value) {
13407
+ return jspb.Message.setProto3StringField(this, 18, value);
13408
+ };
13409
+
13410
+
13411
+ /**
13412
+ * optional string material_type = 19;
13413
+ * @return {string}
13414
+ */
13415
+ proto.PurchaseRequisitionProgressTrack.prototype.getMaterialType = function() {
13416
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 19, ""));
13417
+ };
13418
+
13419
+
13420
+ /**
13421
+ * @param {string} value
13422
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13423
+ */
13424
+ proto.PurchaseRequisitionProgressTrack.prototype.setMaterialType = function(value) {
13425
+ return jspb.Message.setProto3StringField(this, 19, value);
13426
+ };
13427
+
13428
+
13429
+ /**
13430
+ * optional double estimated_unit_price = 20;
13431
+ * @return {number}
13432
+ */
13433
+ proto.PurchaseRequisitionProgressTrack.prototype.getEstimatedUnitPrice = function() {
13434
+ return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 20, 0.0));
13435
+ };
13436
+
13437
+
13438
+ /**
13439
+ * @param {number} value
13440
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13441
+ */
13442
+ proto.PurchaseRequisitionProgressTrack.prototype.setEstimatedUnitPrice = function(value) {
13443
+ return jspb.Message.setProto3FloatField(this, 20, value);
13444
+ };
13445
+
13446
+
13447
+ /**
13448
+ * optional string gl_account = 21;
13449
+ * @return {string}
13450
+ */
13451
+ proto.PurchaseRequisitionProgressTrack.prototype.getGlAccount = function() {
13452
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 21, ""));
13453
+ };
13454
+
13455
+
13456
+ /**
13457
+ * @param {string} value
13458
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13459
+ */
13460
+ proto.PurchaseRequisitionProgressTrack.prototype.setGlAccount = function(value) {
13461
+ return jspb.Message.setProto3StringField(this, 21, value);
13462
+ };
13463
+
13464
+
13465
+ /**
13466
+ * optional string gl_account_description = 22;
13467
+ * @return {string}
13468
+ */
13469
+ proto.PurchaseRequisitionProgressTrack.prototype.getGlAccountDescription = function() {
13470
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 22, ""));
13471
+ };
13472
+
13473
+
13474
+ /**
13475
+ * @param {string} value
13476
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13477
+ */
13478
+ proto.PurchaseRequisitionProgressTrack.prototype.setGlAccountDescription = function(value) {
13479
+ return jspb.Message.setProto3StringField(this, 22, value);
13480
+ };
13481
+
13482
+
13483
+ /**
13484
+ * optional string created_date = 23;
13485
+ * @return {string}
13486
+ */
13487
+ proto.PurchaseRequisitionProgressTrack.prototype.getCreatedDate = function() {
13488
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 23, ""));
13489
+ };
13490
+
13491
+
13492
+ /**
13493
+ * @param {string} value
13494
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13495
+ */
13496
+ proto.PurchaseRequisitionProgressTrack.prototype.setCreatedDate = function(value) {
13497
+ return jspb.Message.setProto3StringField(this, 23, value);
13498
+ };
13499
+
13500
+
13501
+ /**
13502
+ * optional string plant_id = 24;
13503
+ * @return {string}
13504
+ */
13505
+ proto.PurchaseRequisitionProgressTrack.prototype.getPlantId = function() {
13506
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 24, ""));
13507
+ };
13508
+
13509
+
13510
+ /**
13511
+ * @param {string} value
13512
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13513
+ */
13514
+ proto.PurchaseRequisitionProgressTrack.prototype.setPlantId = function(value) {
13515
+ return jspb.Message.setProto3StringField(this, 24, value);
13516
+ };
13517
+
13518
+
13519
+ /**
13520
+ * optional string asset_number = 25;
13521
+ * @return {string}
13522
+ */
13523
+ proto.PurchaseRequisitionProgressTrack.prototype.getAssetNumber = function() {
13524
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 25, ""));
13525
+ };
13526
+
13527
+
13528
+ /**
13529
+ * @param {string} value
13530
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13531
+ */
13532
+ proto.PurchaseRequisitionProgressTrack.prototype.setAssetNumber = function(value) {
13533
+ return jspb.Message.setProto3StringField(this, 25, value);
13534
+ };
13535
+
13536
+
13537
+ /**
13538
+ * optional bool is_on_bidding = 26;
13539
+ * @return {boolean}
13540
+ */
13541
+ proto.PurchaseRequisitionProgressTrack.prototype.getIsOnBidding = function() {
13542
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 26, false));
13543
+ };
13544
+
13545
+
13546
+ /**
13547
+ * @param {boolean} value
13548
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13549
+ */
13550
+ proto.PurchaseRequisitionProgressTrack.prototype.setIsOnBidding = function(value) {
13551
+ return jspb.Message.setProto3BooleanField(this, 26, value);
13552
+ };
13553
+
13554
+
13555
+ /**
13556
+ * optional string bidding_number = 27;
13557
+ * @return {string}
13558
+ */
13559
+ proto.PurchaseRequisitionProgressTrack.prototype.getBiddingNumber = function() {
13560
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 27, ""));
13561
+ };
13562
+
13563
+
13564
+ /**
13565
+ * @param {string} value
13566
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13567
+ */
13568
+ proto.PurchaseRequisitionProgressTrack.prototype.setBiddingNumber = function(value) {
13569
+ return jspb.Message.setProto3StringField(this, 27, value);
13570
+ };
13571
+
13572
+
13573
+ /**
13574
+ * optional bool is_on_po = 28;
13575
+ * @return {boolean}
13576
+ */
13577
+ proto.PurchaseRequisitionProgressTrack.prototype.getIsOnPo = function() {
13578
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 28, false));
13579
+ };
13580
+
13581
+
13582
+ /**
13583
+ * @param {boolean} value
13584
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13585
+ */
13586
+ proto.PurchaseRequisitionProgressTrack.prototype.setIsOnPo = function(value) {
13587
+ return jspb.Message.setProto3BooleanField(this, 28, value);
13588
+ };
13589
+
13590
+
13591
+ /**
13592
+ * optional string po_number = 29;
13593
+ * @return {string}
13594
+ */
13595
+ proto.PurchaseRequisitionProgressTrack.prototype.getPoNumber = function() {
13596
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 29, ""));
13597
+ };
13598
+
13599
+
13600
+ /**
13601
+ * @param {string} value
13602
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13603
+ */
13604
+ proto.PurchaseRequisitionProgressTrack.prototype.setPoNumber = function(value) {
13605
+ return jspb.Message.setProto3StringField(this, 29, value);
13606
+ };
13607
+
13608
+
13609
+ /**
13610
+ * optional string department_name = 30;
13611
+ * @return {string}
13612
+ */
13613
+ proto.PurchaseRequisitionProgressTrack.prototype.getDepartmentName = function() {
13614
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 30, ""));
13615
+ };
13616
+
13617
+
13618
+ /**
13619
+ * @param {string} value
13620
+ * @return {!proto.PurchaseRequisitionProgressTrack} returns this
13621
+ */
13622
+ proto.PurchaseRequisitionProgressTrack.prototype.setDepartmentName = function(value) {
13623
+ return jspb.Message.setProto3StringField(this, 30, value);
13624
+ };
13625
+
13626
+
12937
13627
 
12938
13628
  /**
12939
13629
  * List of repeated fields within this message type.