@sniipwebmaster/payroll-service-client-grpcweb 25.8.178 → 25.8.188
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/dependancies/service_grpc_web_pb.js +61 -0
- package/dependancies/service_pb.js +846 -101
- package/package.json +1 -1
|
@@ -570,6 +570,67 @@ proto.payrollserviceapi.PayrollServicePromiseClient.prototype.getABAFileDetails
|
|
|
570
570
|
};
|
|
571
571
|
|
|
572
572
|
|
|
573
|
+
/**
|
|
574
|
+
* @const
|
|
575
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
576
|
+
* !proto.payrollserviceapi.ManualMatchABARecordRequest,
|
|
577
|
+
* !proto.payrollserviceapi.ManualMatchABARecordResponse>}
|
|
578
|
+
*/
|
|
579
|
+
const methodDescriptor_PayrollService_ManualMatchABARecord = new grpc.web.MethodDescriptor(
|
|
580
|
+
'/payrollserviceapi.PayrollService/ManualMatchABARecord',
|
|
581
|
+
grpc.web.MethodType.UNARY,
|
|
582
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest,
|
|
583
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse,
|
|
584
|
+
/**
|
|
585
|
+
* @param {!proto.payrollserviceapi.ManualMatchABARecordRequest} request
|
|
586
|
+
* @return {!Uint8Array}
|
|
587
|
+
*/
|
|
588
|
+
function(request) {
|
|
589
|
+
return request.serializeBinary();
|
|
590
|
+
},
|
|
591
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.deserializeBinary
|
|
592
|
+
);
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
/**
|
|
596
|
+
* @param {!proto.payrollserviceapi.ManualMatchABARecordRequest} request The
|
|
597
|
+
* request proto
|
|
598
|
+
* @param {?Object<string, string>} metadata User defined
|
|
599
|
+
* call metadata
|
|
600
|
+
* @param {function(?grpc.web.RpcError, ?proto.payrollserviceapi.ManualMatchABARecordResponse)}
|
|
601
|
+
* callback The callback function(error, response)
|
|
602
|
+
* @return {!grpc.web.ClientReadableStream<!proto.payrollserviceapi.ManualMatchABARecordResponse>|undefined}
|
|
603
|
+
* The XHR Node Readable Stream
|
|
604
|
+
*/
|
|
605
|
+
proto.payrollserviceapi.PayrollServiceClient.prototype.manualMatchABARecord =
|
|
606
|
+
function(request, metadata, callback) {
|
|
607
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
608
|
+
'/payrollserviceapi.PayrollService/ManualMatchABARecord',
|
|
609
|
+
request,
|
|
610
|
+
metadata || {},
|
|
611
|
+
methodDescriptor_PayrollService_ManualMatchABARecord,
|
|
612
|
+
callback);
|
|
613
|
+
};
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
/**
|
|
617
|
+
* @param {!proto.payrollserviceapi.ManualMatchABARecordRequest} request The
|
|
618
|
+
* request proto
|
|
619
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
620
|
+
* call metadata
|
|
621
|
+
* @return {!Promise<!proto.payrollserviceapi.ManualMatchABARecordResponse>}
|
|
622
|
+
* Promise that resolves to the response
|
|
623
|
+
*/
|
|
624
|
+
proto.payrollserviceapi.PayrollServicePromiseClient.prototype.manualMatchABARecord =
|
|
625
|
+
function(request, metadata) {
|
|
626
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
627
|
+
'/payrollserviceapi.PayrollService/ManualMatchABARecord',
|
|
628
|
+
request,
|
|
629
|
+
metadata || {},
|
|
630
|
+
methodDescriptor_PayrollService_ManualMatchABARecord);
|
|
631
|
+
};
|
|
632
|
+
|
|
633
|
+
|
|
573
634
|
/**
|
|
574
635
|
* @const
|
|
575
636
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -67,6 +67,8 @@ goog.exportSymbol('proto.payrollserviceapi.ListBusinessesRequest', null, global)
|
|
|
67
67
|
goog.exportSymbol('proto.payrollserviceapi.ListBusinessesResponse', null, global);
|
|
68
68
|
goog.exportSymbol('proto.payrollserviceapi.ListEmployeesRequest', null, global);
|
|
69
69
|
goog.exportSymbol('proto.payrollserviceapi.ListEmployeesResponse', null, global);
|
|
70
|
+
goog.exportSymbol('proto.payrollserviceapi.ManualMatchABARecordRequest', null, global);
|
|
71
|
+
goog.exportSymbol('proto.payrollserviceapi.ManualMatchABARecordResponse', null, global);
|
|
70
72
|
goog.exportSymbol('proto.payrollserviceapi.MatchEmployeesRequest', null, global);
|
|
71
73
|
goog.exportSymbol('proto.payrollserviceapi.MatchEmployeesResponse', null, global);
|
|
72
74
|
goog.exportSymbol('proto.payrollserviceapi.MensSalary', null, global);
|
|
@@ -150,7 +152,7 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
150
152
|
* @constructor
|
|
151
153
|
*/
|
|
152
154
|
proto.payrollserviceapi.ABARecord = function(opt_data) {
|
|
153
|
-
jspb.Message.initialize(this, opt_data, 0, -1,
|
|
155
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.payrollserviceapi.ABARecord.repeatedFields_, null);
|
|
154
156
|
};
|
|
155
157
|
goog.inherits(proto.payrollserviceapi.ABARecord, jspb.Message);
|
|
156
158
|
if (goog.DEBUG && !COMPILED) {
|
|
@@ -391,6 +393,48 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
391
393
|
*/
|
|
392
394
|
proto.payrollserviceapi.GetABAFileDetailsResponse.displayName = 'proto.payrollserviceapi.GetABAFileDetailsResponse';
|
|
393
395
|
}
|
|
396
|
+
/**
|
|
397
|
+
* Generated by JsPbCodeGenerator.
|
|
398
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
399
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
400
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
401
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
402
|
+
* valid.
|
|
403
|
+
* @extends {jspb.Message}
|
|
404
|
+
* @constructor
|
|
405
|
+
*/
|
|
406
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest = function(opt_data) {
|
|
407
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
408
|
+
};
|
|
409
|
+
goog.inherits(proto.payrollserviceapi.ManualMatchABARecordRequest, jspb.Message);
|
|
410
|
+
if (goog.DEBUG && !COMPILED) {
|
|
411
|
+
/**
|
|
412
|
+
* @public
|
|
413
|
+
* @override
|
|
414
|
+
*/
|
|
415
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.displayName = 'proto.payrollserviceapi.ManualMatchABARecordRequest';
|
|
416
|
+
}
|
|
417
|
+
/**
|
|
418
|
+
* Generated by JsPbCodeGenerator.
|
|
419
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
420
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
421
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
422
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
423
|
+
* valid.
|
|
424
|
+
* @extends {jspb.Message}
|
|
425
|
+
* @constructor
|
|
426
|
+
*/
|
|
427
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse = function(opt_data) {
|
|
428
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
429
|
+
};
|
|
430
|
+
goog.inherits(proto.payrollserviceapi.ManualMatchABARecordResponse, jspb.Message);
|
|
431
|
+
if (goog.DEBUG && !COMPILED) {
|
|
432
|
+
/**
|
|
433
|
+
* @public
|
|
434
|
+
* @override
|
|
435
|
+
*/
|
|
436
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.displayName = 'proto.payrollserviceapi.ManualMatchABARecordResponse';
|
|
437
|
+
}
|
|
394
438
|
/**
|
|
395
439
|
* Generated by JsPbCodeGenerator.
|
|
396
440
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -423,7 +467,7 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
423
467
|
* @constructor
|
|
424
468
|
*/
|
|
425
469
|
proto.payrollserviceapi.ABARecordDetail = function(opt_data) {
|
|
426
|
-
jspb.Message.initialize(this, opt_data, 0, -1,
|
|
470
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.payrollserviceapi.ABARecordDetail.repeatedFields_, null);
|
|
427
471
|
};
|
|
428
472
|
goog.inherits(proto.payrollserviceapi.ABARecordDetail, jspb.Message);
|
|
429
473
|
if (goog.DEBUG && !COMPILED) {
|
|
@@ -2015,6 +2059,13 @@ proto.payrollserviceapi.ImportABAFileResponse.prototype.setBatchName = function(
|
|
|
2015
2059
|
|
|
2016
2060
|
|
|
2017
2061
|
|
|
2062
|
+
/**
|
|
2063
|
+
* List of repeated fields within this message type.
|
|
2064
|
+
* @private {!Array<number>}
|
|
2065
|
+
* @const
|
|
2066
|
+
*/
|
|
2067
|
+
proto.payrollserviceapi.ABARecord.repeatedFields_ = [13];
|
|
2068
|
+
|
|
2018
2069
|
|
|
2019
2070
|
|
|
2020
2071
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -2057,7 +2108,9 @@ proto.payrollserviceapi.ABARecord.toObject = function(includeInstance, msg) {
|
|
|
2057
2108
|
employeeNumber: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
2058
2109
|
billerCode: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
2059
2110
|
errorMessage: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
2060
|
-
reference: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
2111
|
+
reference: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
2112
|
+
duplicateEmployeesList: jspb.Message.toObjectList(msg.getDuplicateEmployeesList(),
|
|
2113
|
+
proto.payrollserviceapi.EmployeeSummary.toObject, includeInstance)
|
|
2061
2114
|
};
|
|
2062
2115
|
|
|
2063
2116
|
if (includeInstance) {
|
|
@@ -2142,6 +2195,11 @@ proto.payrollserviceapi.ABARecord.deserializeBinaryFromReader = function(msg, re
|
|
|
2142
2195
|
var value = /** @type {string} */ (reader.readString());
|
|
2143
2196
|
msg.setReference(value);
|
|
2144
2197
|
break;
|
|
2198
|
+
case 13:
|
|
2199
|
+
var value = new proto.payrollserviceapi.EmployeeSummary;
|
|
2200
|
+
reader.readMessage(value,proto.payrollserviceapi.EmployeeSummary.deserializeBinaryFromReader);
|
|
2201
|
+
msg.addDuplicateEmployees(value);
|
|
2202
|
+
break;
|
|
2145
2203
|
default:
|
|
2146
2204
|
reader.skipField();
|
|
2147
2205
|
break;
|
|
@@ -2255,6 +2313,14 @@ proto.payrollserviceapi.ABARecord.serializeBinaryToWriter = function(message, wr
|
|
|
2255
2313
|
f
|
|
2256
2314
|
);
|
|
2257
2315
|
}
|
|
2316
|
+
f = message.getDuplicateEmployeesList();
|
|
2317
|
+
if (f.length > 0) {
|
|
2318
|
+
writer.writeRepeatedMessage(
|
|
2319
|
+
13,
|
|
2320
|
+
f,
|
|
2321
|
+
proto.payrollserviceapi.EmployeeSummary.serializeBinaryToWriter
|
|
2322
|
+
);
|
|
2323
|
+
}
|
|
2258
2324
|
};
|
|
2259
2325
|
|
|
2260
2326
|
|
|
@@ -2474,6 +2540,44 @@ proto.payrollserviceapi.ABARecord.prototype.setReference = function(value) {
|
|
|
2474
2540
|
};
|
|
2475
2541
|
|
|
2476
2542
|
|
|
2543
|
+
/**
|
|
2544
|
+
* repeated EmployeeSummary duplicate_employees = 13;
|
|
2545
|
+
* @return {!Array<!proto.payrollserviceapi.EmployeeSummary>}
|
|
2546
|
+
*/
|
|
2547
|
+
proto.payrollserviceapi.ABARecord.prototype.getDuplicateEmployeesList = function() {
|
|
2548
|
+
return /** @type{!Array<!proto.payrollserviceapi.EmployeeSummary>} */ (
|
|
2549
|
+
jspb.Message.getRepeatedWrapperField(this, proto.payrollserviceapi.EmployeeSummary, 13));
|
|
2550
|
+
};
|
|
2551
|
+
|
|
2552
|
+
|
|
2553
|
+
/**
|
|
2554
|
+
* @param {!Array<!proto.payrollserviceapi.EmployeeSummary>} value
|
|
2555
|
+
* @return {!proto.payrollserviceapi.ABARecord} returns this
|
|
2556
|
+
*/
|
|
2557
|
+
proto.payrollserviceapi.ABARecord.prototype.setDuplicateEmployeesList = function(value) {
|
|
2558
|
+
return jspb.Message.setRepeatedWrapperField(this, 13, value);
|
|
2559
|
+
};
|
|
2560
|
+
|
|
2561
|
+
|
|
2562
|
+
/**
|
|
2563
|
+
* @param {!proto.payrollserviceapi.EmployeeSummary=} opt_value
|
|
2564
|
+
* @param {number=} opt_index
|
|
2565
|
+
* @return {!proto.payrollserviceapi.EmployeeSummary}
|
|
2566
|
+
*/
|
|
2567
|
+
proto.payrollserviceapi.ABARecord.prototype.addDuplicateEmployees = function(opt_value, opt_index) {
|
|
2568
|
+
return jspb.Message.addToRepeatedWrapperField(this, 13, opt_value, proto.payrollserviceapi.EmployeeSummary, opt_index);
|
|
2569
|
+
};
|
|
2570
|
+
|
|
2571
|
+
|
|
2572
|
+
/**
|
|
2573
|
+
* Clears the list making it empty but non-null.
|
|
2574
|
+
* @return {!proto.payrollserviceapi.ABARecord} returns this
|
|
2575
|
+
*/
|
|
2576
|
+
proto.payrollserviceapi.ABARecord.prototype.clearDuplicateEmployeesList = function() {
|
|
2577
|
+
return this.setDuplicateEmployeesList([]);
|
|
2578
|
+
};
|
|
2579
|
+
|
|
2580
|
+
|
|
2477
2581
|
|
|
2478
2582
|
|
|
2479
2583
|
|
|
@@ -2509,7 +2613,9 @@ proto.payrollserviceapi.MatchEmployeesRequest.toObject = function(includeInstanc
|
|
|
2509
2613
|
abaFileId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
2510
2614
|
businessId: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
2511
2615
|
agentUserId: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
2512
|
-
clientUserId: jspb.Message.getFieldWithDefault(msg, 4, 0)
|
|
2616
|
+
clientUserId: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
2617
|
+
recordId: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
2618
|
+
employeeId: jspb.Message.getFieldWithDefault(msg, 6, 0)
|
|
2513
2619
|
};
|
|
2514
2620
|
|
|
2515
2621
|
if (includeInstance) {
|
|
@@ -2562,6 +2668,14 @@ proto.payrollserviceapi.MatchEmployeesRequest.deserializeBinaryFromReader = func
|
|
|
2562
2668
|
var value = /** @type {number} */ (reader.readInt64());
|
|
2563
2669
|
msg.setClientUserId(value);
|
|
2564
2670
|
break;
|
|
2671
|
+
case 5:
|
|
2672
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
2673
|
+
msg.setRecordId(value);
|
|
2674
|
+
break;
|
|
2675
|
+
case 6:
|
|
2676
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
2677
|
+
msg.setEmployeeId(value);
|
|
2678
|
+
break;
|
|
2565
2679
|
default:
|
|
2566
2680
|
reader.skipField();
|
|
2567
2681
|
break;
|
|
@@ -2619,6 +2733,20 @@ proto.payrollserviceapi.MatchEmployeesRequest.serializeBinaryToWriter = function
|
|
|
2619
2733
|
f
|
|
2620
2734
|
);
|
|
2621
2735
|
}
|
|
2736
|
+
f = message.getRecordId();
|
|
2737
|
+
if (f !== 0) {
|
|
2738
|
+
writer.writeInt64(
|
|
2739
|
+
5,
|
|
2740
|
+
f
|
|
2741
|
+
);
|
|
2742
|
+
}
|
|
2743
|
+
f = message.getEmployeeId();
|
|
2744
|
+
if (f !== 0) {
|
|
2745
|
+
writer.writeInt64(
|
|
2746
|
+
6,
|
|
2747
|
+
f
|
|
2748
|
+
);
|
|
2749
|
+
}
|
|
2622
2750
|
};
|
|
2623
2751
|
|
|
2624
2752
|
|
|
@@ -2694,6 +2822,42 @@ proto.payrollserviceapi.MatchEmployeesRequest.prototype.setClientUserId = functi
|
|
|
2694
2822
|
};
|
|
2695
2823
|
|
|
2696
2824
|
|
|
2825
|
+
/**
|
|
2826
|
+
* optional int64 record_id = 5;
|
|
2827
|
+
* @return {number}
|
|
2828
|
+
*/
|
|
2829
|
+
proto.payrollserviceapi.MatchEmployeesRequest.prototype.getRecordId = function() {
|
|
2830
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
2831
|
+
};
|
|
2832
|
+
|
|
2833
|
+
|
|
2834
|
+
/**
|
|
2835
|
+
* @param {number} value
|
|
2836
|
+
* @return {!proto.payrollserviceapi.MatchEmployeesRequest} returns this
|
|
2837
|
+
*/
|
|
2838
|
+
proto.payrollserviceapi.MatchEmployeesRequest.prototype.setRecordId = function(value) {
|
|
2839
|
+
return jspb.Message.setProto3IntField(this, 5, value);
|
|
2840
|
+
};
|
|
2841
|
+
|
|
2842
|
+
|
|
2843
|
+
/**
|
|
2844
|
+
* optional int64 employee_id = 6;
|
|
2845
|
+
* @return {number}
|
|
2846
|
+
*/
|
|
2847
|
+
proto.payrollserviceapi.MatchEmployeesRequest.prototype.getEmployeeId = function() {
|
|
2848
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
|
2849
|
+
};
|
|
2850
|
+
|
|
2851
|
+
|
|
2852
|
+
/**
|
|
2853
|
+
* @param {number} value
|
|
2854
|
+
* @return {!proto.payrollserviceapi.MatchEmployeesRequest} returns this
|
|
2855
|
+
*/
|
|
2856
|
+
proto.payrollserviceapi.MatchEmployeesRequest.prototype.setEmployeeId = function(value) {
|
|
2857
|
+
return jspb.Message.setProto3IntField(this, 6, value);
|
|
2858
|
+
};
|
|
2859
|
+
|
|
2860
|
+
|
|
2697
2861
|
|
|
2698
2862
|
/**
|
|
2699
2863
|
* List of repeated fields within this message type.
|
|
@@ -5786,8 +5950,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
5786
5950
|
* http://goto/soy-param-migration
|
|
5787
5951
|
* @return {!Object}
|
|
5788
5952
|
*/
|
|
5789
|
-
proto.payrollserviceapi.
|
|
5790
|
-
return proto.payrollserviceapi.
|
|
5953
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.toObject = function(opt_includeInstance) {
|
|
5954
|
+
return proto.payrollserviceapi.ManualMatchABARecordRequest.toObject(opt_includeInstance, this);
|
|
5791
5955
|
};
|
|
5792
5956
|
|
|
5793
5957
|
|
|
@@ -5796,25 +5960,17 @@ proto.payrollserviceapi.ABAFileDetails.prototype.toObject = function(opt_include
|
|
|
5796
5960
|
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
5797
5961
|
* the JSPB instance for transitional soy proto support:
|
|
5798
5962
|
* http://goto/soy-param-migration
|
|
5799
|
-
* @param {!proto.payrollserviceapi.
|
|
5963
|
+
* @param {!proto.payrollserviceapi.ManualMatchABARecordRequest} msg The msg instance to transform.
|
|
5800
5964
|
* @return {!Object}
|
|
5801
5965
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
5802
5966
|
*/
|
|
5803
|
-
proto.payrollserviceapi.
|
|
5967
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.toObject = function(includeInstance, msg) {
|
|
5804
5968
|
var f, obj = {
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
|
|
5808
|
-
|
|
5809
|
-
|
|
5810
|
-
totalRecords: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
5811
|
-
matchedRecords: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
5812
|
-
unmatchedRecords: jspb.Message.getFieldWithDefault(msg, 8, 0),
|
|
5813
|
-
errorRecords: jspb.Message.getFieldWithDefault(msg, 9, 0),
|
|
5814
|
-
createdAt: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
5815
|
-
processedAt: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
5816
|
-
errorMessage: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
5817
|
-
batchName: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
5969
|
+
recordId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
5970
|
+
employeeId: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
5971
|
+
businessId: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
5972
|
+
agentUserId: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
5973
|
+
clientUserId: jspb.Message.getFieldWithDefault(msg, 5, 0)
|
|
5818
5974
|
};
|
|
5819
5975
|
|
|
5820
5976
|
if (includeInstance) {
|
|
@@ -5828,23 +5984,23 @@ proto.payrollserviceapi.ABAFileDetails.toObject = function(includeInstance, msg)
|
|
|
5828
5984
|
/**
|
|
5829
5985
|
* Deserializes binary data (in protobuf wire format).
|
|
5830
5986
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
5831
|
-
* @return {!proto.payrollserviceapi.
|
|
5987
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordRequest}
|
|
5832
5988
|
*/
|
|
5833
|
-
proto.payrollserviceapi.
|
|
5989
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.deserializeBinary = function(bytes) {
|
|
5834
5990
|
var reader = new jspb.BinaryReader(bytes);
|
|
5835
|
-
var msg = new proto.payrollserviceapi.
|
|
5836
|
-
return proto.payrollserviceapi.
|
|
5991
|
+
var msg = new proto.payrollserviceapi.ManualMatchABARecordRequest;
|
|
5992
|
+
return proto.payrollserviceapi.ManualMatchABARecordRequest.deserializeBinaryFromReader(msg, reader);
|
|
5837
5993
|
};
|
|
5838
5994
|
|
|
5839
5995
|
|
|
5840
5996
|
/**
|
|
5841
5997
|
* Deserializes binary data (in protobuf wire format) from the
|
|
5842
5998
|
* given reader into the given message object.
|
|
5843
|
-
* @param {!proto.payrollserviceapi.
|
|
5999
|
+
* @param {!proto.payrollserviceapi.ManualMatchABARecordRequest} msg The message object to deserialize into.
|
|
5844
6000
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
5845
|
-
* @return {!proto.payrollserviceapi.
|
|
6001
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordRequest}
|
|
5846
6002
|
*/
|
|
5847
|
-
proto.payrollserviceapi.
|
|
6003
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
5848
6004
|
while (reader.nextField()) {
|
|
5849
6005
|
if (reader.isEndGroup()) {
|
|
5850
6006
|
break;
|
|
@@ -5853,55 +6009,23 @@ proto.payrollserviceapi.ABAFileDetails.deserializeBinaryFromReader = function(ms
|
|
|
5853
6009
|
switch (field) {
|
|
5854
6010
|
case 1:
|
|
5855
6011
|
var value = /** @type {number} */ (reader.readInt64());
|
|
5856
|
-
msg.
|
|
6012
|
+
msg.setRecordId(value);
|
|
5857
6013
|
break;
|
|
5858
6014
|
case 2:
|
|
5859
|
-
var value = /** @type {
|
|
5860
|
-
msg.
|
|
6015
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
6016
|
+
msg.setEmployeeId(value);
|
|
5861
6017
|
break;
|
|
5862
6018
|
case 3:
|
|
5863
6019
|
var value = /** @type {number} */ (reader.readInt64());
|
|
5864
|
-
msg.
|
|
6020
|
+
msg.setBusinessId(value);
|
|
5865
6021
|
break;
|
|
5866
6022
|
case 4:
|
|
5867
|
-
var value = /** @type {
|
|
5868
|
-
msg.
|
|
6023
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
6024
|
+
msg.setAgentUserId(value);
|
|
5869
6025
|
break;
|
|
5870
6026
|
case 5:
|
|
5871
|
-
var value = /** @type {
|
|
5872
|
-
msg.
|
|
5873
|
-
break;
|
|
5874
|
-
case 6:
|
|
5875
|
-
var value = /** @type {number} */ (reader.readInt32());
|
|
5876
|
-
msg.setTotalRecords(value);
|
|
5877
|
-
break;
|
|
5878
|
-
case 7:
|
|
5879
|
-
var value = /** @type {number} */ (reader.readInt32());
|
|
5880
|
-
msg.setMatchedRecords(value);
|
|
5881
|
-
break;
|
|
5882
|
-
case 8:
|
|
5883
|
-
var value = /** @type {number} */ (reader.readInt32());
|
|
5884
|
-
msg.setUnmatchedRecords(value);
|
|
5885
|
-
break;
|
|
5886
|
-
case 9:
|
|
5887
|
-
var value = /** @type {number} */ (reader.readInt32());
|
|
5888
|
-
msg.setErrorRecords(value);
|
|
5889
|
-
break;
|
|
5890
|
-
case 10:
|
|
5891
|
-
var value = /** @type {string} */ (reader.readString());
|
|
5892
|
-
msg.setCreatedAt(value);
|
|
5893
|
-
break;
|
|
5894
|
-
case 11:
|
|
5895
|
-
var value = /** @type {string} */ (reader.readString());
|
|
5896
|
-
msg.setProcessedAt(value);
|
|
5897
|
-
break;
|
|
5898
|
-
case 12:
|
|
5899
|
-
var value = /** @type {string} */ (reader.readString());
|
|
5900
|
-
msg.setErrorMessage(value);
|
|
5901
|
-
break;
|
|
5902
|
-
case 13:
|
|
5903
|
-
var value = /** @type {string} */ (reader.readString());
|
|
5904
|
-
msg.setBatchName(value);
|
|
6027
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
6028
|
+
msg.setClientUserId(value);
|
|
5905
6029
|
break;
|
|
5906
6030
|
default:
|
|
5907
6031
|
reader.skipField();
|
|
@@ -5916,9 +6040,9 @@ proto.payrollserviceapi.ABAFileDetails.deserializeBinaryFromReader = function(ms
|
|
|
5916
6040
|
* Serializes the message to binary data (in protobuf wire format).
|
|
5917
6041
|
* @return {!Uint8Array}
|
|
5918
6042
|
*/
|
|
5919
|
-
proto.payrollserviceapi.
|
|
6043
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.serializeBinary = function() {
|
|
5920
6044
|
var writer = new jspb.BinaryWriter();
|
|
5921
|
-
proto.payrollserviceapi.
|
|
6045
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.serializeBinaryToWriter(this, writer);
|
|
5922
6046
|
return writer.getResultBuffer();
|
|
5923
6047
|
};
|
|
5924
6048
|
|
|
@@ -5926,64 +6050,625 @@ proto.payrollserviceapi.ABAFileDetails.prototype.serializeBinary = function() {
|
|
|
5926
6050
|
/**
|
|
5927
6051
|
* Serializes the given message to binary data (in protobuf wire
|
|
5928
6052
|
* format), writing to the given BinaryWriter.
|
|
5929
|
-
* @param {!proto.payrollserviceapi.
|
|
6053
|
+
* @param {!proto.payrollserviceapi.ManualMatchABARecordRequest} message
|
|
5930
6054
|
* @param {!jspb.BinaryWriter} writer
|
|
5931
6055
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
5932
6056
|
*/
|
|
5933
|
-
proto.payrollserviceapi.
|
|
6057
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.serializeBinaryToWriter = function(message, writer) {
|
|
5934
6058
|
var f = undefined;
|
|
5935
|
-
f = message.
|
|
6059
|
+
f = message.getRecordId();
|
|
5936
6060
|
if (f !== 0) {
|
|
5937
6061
|
writer.writeInt64(
|
|
5938
6062
|
1,
|
|
5939
6063
|
f
|
|
5940
6064
|
);
|
|
5941
6065
|
}
|
|
5942
|
-
f = message.
|
|
5943
|
-
if (f
|
|
5944
|
-
writer.
|
|
6066
|
+
f = message.getEmployeeId();
|
|
6067
|
+
if (f !== 0) {
|
|
6068
|
+
writer.writeInt64(
|
|
5945
6069
|
2,
|
|
5946
6070
|
f
|
|
5947
6071
|
);
|
|
5948
6072
|
}
|
|
5949
|
-
f = message.
|
|
6073
|
+
f = message.getBusinessId();
|
|
5950
6074
|
if (f !== 0) {
|
|
5951
6075
|
writer.writeInt64(
|
|
5952
6076
|
3,
|
|
5953
6077
|
f
|
|
5954
6078
|
);
|
|
5955
6079
|
}
|
|
5956
|
-
f = message.
|
|
5957
|
-
if (f.length > 0) {
|
|
5958
|
-
writer.writeString(
|
|
5959
|
-
4,
|
|
5960
|
-
f
|
|
5961
|
-
);
|
|
5962
|
-
}
|
|
5963
|
-
f = message.getStatus();
|
|
5964
|
-
if (f.length > 0) {
|
|
5965
|
-
writer.writeString(
|
|
5966
|
-
5,
|
|
5967
|
-
f
|
|
5968
|
-
);
|
|
5969
|
-
}
|
|
5970
|
-
f = message.getTotalRecords();
|
|
6080
|
+
f = message.getAgentUserId();
|
|
5971
6081
|
if (f !== 0) {
|
|
5972
|
-
writer.
|
|
5973
|
-
|
|
6082
|
+
writer.writeInt64(
|
|
6083
|
+
4,
|
|
5974
6084
|
f
|
|
5975
6085
|
);
|
|
5976
6086
|
}
|
|
5977
|
-
f = message.
|
|
6087
|
+
f = message.getClientUserId();
|
|
5978
6088
|
if (f !== 0) {
|
|
5979
|
-
writer.
|
|
5980
|
-
|
|
6089
|
+
writer.writeInt64(
|
|
6090
|
+
5,
|
|
5981
6091
|
f
|
|
5982
6092
|
);
|
|
5983
6093
|
}
|
|
5984
|
-
|
|
5985
|
-
|
|
5986
|
-
|
|
6094
|
+
};
|
|
6095
|
+
|
|
6096
|
+
|
|
6097
|
+
/**
|
|
6098
|
+
* optional int64 record_id = 1;
|
|
6099
|
+
* @return {number}
|
|
6100
|
+
*/
|
|
6101
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.getRecordId = function() {
|
|
6102
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
6103
|
+
};
|
|
6104
|
+
|
|
6105
|
+
|
|
6106
|
+
/**
|
|
6107
|
+
* @param {number} value
|
|
6108
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordRequest} returns this
|
|
6109
|
+
*/
|
|
6110
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.setRecordId = function(value) {
|
|
6111
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
|
6112
|
+
};
|
|
6113
|
+
|
|
6114
|
+
|
|
6115
|
+
/**
|
|
6116
|
+
* optional int64 employee_id = 2;
|
|
6117
|
+
* @return {number}
|
|
6118
|
+
*/
|
|
6119
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.getEmployeeId = function() {
|
|
6120
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
6121
|
+
};
|
|
6122
|
+
|
|
6123
|
+
|
|
6124
|
+
/**
|
|
6125
|
+
* @param {number} value
|
|
6126
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordRequest} returns this
|
|
6127
|
+
*/
|
|
6128
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.setEmployeeId = function(value) {
|
|
6129
|
+
return jspb.Message.setProto3IntField(this, 2, value);
|
|
6130
|
+
};
|
|
6131
|
+
|
|
6132
|
+
|
|
6133
|
+
/**
|
|
6134
|
+
* optional int64 business_id = 3;
|
|
6135
|
+
* @return {number}
|
|
6136
|
+
*/
|
|
6137
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.getBusinessId = function() {
|
|
6138
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
6139
|
+
};
|
|
6140
|
+
|
|
6141
|
+
|
|
6142
|
+
/**
|
|
6143
|
+
* @param {number} value
|
|
6144
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordRequest} returns this
|
|
6145
|
+
*/
|
|
6146
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.setBusinessId = function(value) {
|
|
6147
|
+
return jspb.Message.setProto3IntField(this, 3, value);
|
|
6148
|
+
};
|
|
6149
|
+
|
|
6150
|
+
|
|
6151
|
+
/**
|
|
6152
|
+
* optional int64 agent_user_id = 4;
|
|
6153
|
+
* @return {number}
|
|
6154
|
+
*/
|
|
6155
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.getAgentUserId = function() {
|
|
6156
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 4, 0));
|
|
6157
|
+
};
|
|
6158
|
+
|
|
6159
|
+
|
|
6160
|
+
/**
|
|
6161
|
+
* @param {number} value
|
|
6162
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordRequest} returns this
|
|
6163
|
+
*/
|
|
6164
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.setAgentUserId = function(value) {
|
|
6165
|
+
return jspb.Message.setProto3IntField(this, 4, value);
|
|
6166
|
+
};
|
|
6167
|
+
|
|
6168
|
+
|
|
6169
|
+
/**
|
|
6170
|
+
* optional int64 client_user_id = 5;
|
|
6171
|
+
* @return {number}
|
|
6172
|
+
*/
|
|
6173
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.getClientUserId = function() {
|
|
6174
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
6175
|
+
};
|
|
6176
|
+
|
|
6177
|
+
|
|
6178
|
+
/**
|
|
6179
|
+
* @param {number} value
|
|
6180
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordRequest} returns this
|
|
6181
|
+
*/
|
|
6182
|
+
proto.payrollserviceapi.ManualMatchABARecordRequest.prototype.setClientUserId = function(value) {
|
|
6183
|
+
return jspb.Message.setProto3IntField(this, 5, value);
|
|
6184
|
+
};
|
|
6185
|
+
|
|
6186
|
+
|
|
6187
|
+
|
|
6188
|
+
|
|
6189
|
+
|
|
6190
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
6191
|
+
/**
|
|
6192
|
+
* Creates an object representation of this proto.
|
|
6193
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
6194
|
+
* Optional fields that are not set will be set to undefined.
|
|
6195
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
6196
|
+
* For the list of reserved names please see:
|
|
6197
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
6198
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
6199
|
+
* JSPB instance for transitional soy proto support:
|
|
6200
|
+
* http://goto/soy-param-migration
|
|
6201
|
+
* @return {!Object}
|
|
6202
|
+
*/
|
|
6203
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.toObject = function(opt_includeInstance) {
|
|
6204
|
+
return proto.payrollserviceapi.ManualMatchABARecordResponse.toObject(opt_includeInstance, this);
|
|
6205
|
+
};
|
|
6206
|
+
|
|
6207
|
+
|
|
6208
|
+
/**
|
|
6209
|
+
* Static version of the {@see toObject} method.
|
|
6210
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
6211
|
+
* the JSPB instance for transitional soy proto support:
|
|
6212
|
+
* http://goto/soy-param-migration
|
|
6213
|
+
* @param {!proto.payrollserviceapi.ManualMatchABARecordResponse} msg The msg instance to transform.
|
|
6214
|
+
* @return {!Object}
|
|
6215
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
6216
|
+
*/
|
|
6217
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.toObject = function(includeInstance, msg) {
|
|
6218
|
+
var f, obj = {
|
|
6219
|
+
responseCode: (f = msg.getResponseCode()) && proto.payrollserviceapi.ResponseCode.toObject(includeInstance, f),
|
|
6220
|
+
recordId: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
6221
|
+
employeeId: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
6222
|
+
employeeName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
6223
|
+
message: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
6224
|
+
};
|
|
6225
|
+
|
|
6226
|
+
if (includeInstance) {
|
|
6227
|
+
obj.$jspbMessageInstance = msg;
|
|
6228
|
+
}
|
|
6229
|
+
return obj;
|
|
6230
|
+
};
|
|
6231
|
+
}
|
|
6232
|
+
|
|
6233
|
+
|
|
6234
|
+
/**
|
|
6235
|
+
* Deserializes binary data (in protobuf wire format).
|
|
6236
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
6237
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordResponse}
|
|
6238
|
+
*/
|
|
6239
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.deserializeBinary = function(bytes) {
|
|
6240
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
6241
|
+
var msg = new proto.payrollserviceapi.ManualMatchABARecordResponse;
|
|
6242
|
+
return proto.payrollserviceapi.ManualMatchABARecordResponse.deserializeBinaryFromReader(msg, reader);
|
|
6243
|
+
};
|
|
6244
|
+
|
|
6245
|
+
|
|
6246
|
+
/**
|
|
6247
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
6248
|
+
* given reader into the given message object.
|
|
6249
|
+
* @param {!proto.payrollserviceapi.ManualMatchABARecordResponse} msg The message object to deserialize into.
|
|
6250
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
6251
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordResponse}
|
|
6252
|
+
*/
|
|
6253
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
6254
|
+
while (reader.nextField()) {
|
|
6255
|
+
if (reader.isEndGroup()) {
|
|
6256
|
+
break;
|
|
6257
|
+
}
|
|
6258
|
+
var field = reader.getFieldNumber();
|
|
6259
|
+
switch (field) {
|
|
6260
|
+
case 1:
|
|
6261
|
+
var value = new proto.payrollserviceapi.ResponseCode;
|
|
6262
|
+
reader.readMessage(value,proto.payrollserviceapi.ResponseCode.deserializeBinaryFromReader);
|
|
6263
|
+
msg.setResponseCode(value);
|
|
6264
|
+
break;
|
|
6265
|
+
case 2:
|
|
6266
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
6267
|
+
msg.setRecordId(value);
|
|
6268
|
+
break;
|
|
6269
|
+
case 3:
|
|
6270
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
6271
|
+
msg.setEmployeeId(value);
|
|
6272
|
+
break;
|
|
6273
|
+
case 4:
|
|
6274
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6275
|
+
msg.setEmployeeName(value);
|
|
6276
|
+
break;
|
|
6277
|
+
case 5:
|
|
6278
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6279
|
+
msg.setMessage(value);
|
|
6280
|
+
break;
|
|
6281
|
+
default:
|
|
6282
|
+
reader.skipField();
|
|
6283
|
+
break;
|
|
6284
|
+
}
|
|
6285
|
+
}
|
|
6286
|
+
return msg;
|
|
6287
|
+
};
|
|
6288
|
+
|
|
6289
|
+
|
|
6290
|
+
/**
|
|
6291
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
6292
|
+
* @return {!Uint8Array}
|
|
6293
|
+
*/
|
|
6294
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.serializeBinary = function() {
|
|
6295
|
+
var writer = new jspb.BinaryWriter();
|
|
6296
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.serializeBinaryToWriter(this, writer);
|
|
6297
|
+
return writer.getResultBuffer();
|
|
6298
|
+
};
|
|
6299
|
+
|
|
6300
|
+
|
|
6301
|
+
/**
|
|
6302
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
6303
|
+
* format), writing to the given BinaryWriter.
|
|
6304
|
+
* @param {!proto.payrollserviceapi.ManualMatchABARecordResponse} message
|
|
6305
|
+
* @param {!jspb.BinaryWriter} writer
|
|
6306
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
6307
|
+
*/
|
|
6308
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.serializeBinaryToWriter = function(message, writer) {
|
|
6309
|
+
var f = undefined;
|
|
6310
|
+
f = message.getResponseCode();
|
|
6311
|
+
if (f != null) {
|
|
6312
|
+
writer.writeMessage(
|
|
6313
|
+
1,
|
|
6314
|
+
f,
|
|
6315
|
+
proto.payrollserviceapi.ResponseCode.serializeBinaryToWriter
|
|
6316
|
+
);
|
|
6317
|
+
}
|
|
6318
|
+
f = message.getRecordId();
|
|
6319
|
+
if (f !== 0) {
|
|
6320
|
+
writer.writeInt64(
|
|
6321
|
+
2,
|
|
6322
|
+
f
|
|
6323
|
+
);
|
|
6324
|
+
}
|
|
6325
|
+
f = message.getEmployeeId();
|
|
6326
|
+
if (f !== 0) {
|
|
6327
|
+
writer.writeInt64(
|
|
6328
|
+
3,
|
|
6329
|
+
f
|
|
6330
|
+
);
|
|
6331
|
+
}
|
|
6332
|
+
f = message.getEmployeeName();
|
|
6333
|
+
if (f.length > 0) {
|
|
6334
|
+
writer.writeString(
|
|
6335
|
+
4,
|
|
6336
|
+
f
|
|
6337
|
+
);
|
|
6338
|
+
}
|
|
6339
|
+
f = message.getMessage();
|
|
6340
|
+
if (f.length > 0) {
|
|
6341
|
+
writer.writeString(
|
|
6342
|
+
5,
|
|
6343
|
+
f
|
|
6344
|
+
);
|
|
6345
|
+
}
|
|
6346
|
+
};
|
|
6347
|
+
|
|
6348
|
+
|
|
6349
|
+
/**
|
|
6350
|
+
* optional ResponseCode response_code = 1;
|
|
6351
|
+
* @return {?proto.payrollserviceapi.ResponseCode}
|
|
6352
|
+
*/
|
|
6353
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.getResponseCode = function() {
|
|
6354
|
+
return /** @type{?proto.payrollserviceapi.ResponseCode} */ (
|
|
6355
|
+
jspb.Message.getWrapperField(this, proto.payrollserviceapi.ResponseCode, 1));
|
|
6356
|
+
};
|
|
6357
|
+
|
|
6358
|
+
|
|
6359
|
+
/**
|
|
6360
|
+
* @param {?proto.payrollserviceapi.ResponseCode|undefined} value
|
|
6361
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordResponse} returns this
|
|
6362
|
+
*/
|
|
6363
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.setResponseCode = function(value) {
|
|
6364
|
+
return jspb.Message.setWrapperField(this, 1, value);
|
|
6365
|
+
};
|
|
6366
|
+
|
|
6367
|
+
|
|
6368
|
+
/**
|
|
6369
|
+
* Clears the message field making it undefined.
|
|
6370
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordResponse} returns this
|
|
6371
|
+
*/
|
|
6372
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.clearResponseCode = function() {
|
|
6373
|
+
return this.setResponseCode(undefined);
|
|
6374
|
+
};
|
|
6375
|
+
|
|
6376
|
+
|
|
6377
|
+
/**
|
|
6378
|
+
* Returns whether this field is set.
|
|
6379
|
+
* @return {boolean}
|
|
6380
|
+
*/
|
|
6381
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.hasResponseCode = function() {
|
|
6382
|
+
return jspb.Message.getField(this, 1) != null;
|
|
6383
|
+
};
|
|
6384
|
+
|
|
6385
|
+
|
|
6386
|
+
/**
|
|
6387
|
+
* optional int64 record_id = 2;
|
|
6388
|
+
* @return {number}
|
|
6389
|
+
*/
|
|
6390
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.getRecordId = function() {
|
|
6391
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
6392
|
+
};
|
|
6393
|
+
|
|
6394
|
+
|
|
6395
|
+
/**
|
|
6396
|
+
* @param {number} value
|
|
6397
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordResponse} returns this
|
|
6398
|
+
*/
|
|
6399
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.setRecordId = function(value) {
|
|
6400
|
+
return jspb.Message.setProto3IntField(this, 2, value);
|
|
6401
|
+
};
|
|
6402
|
+
|
|
6403
|
+
|
|
6404
|
+
/**
|
|
6405
|
+
* optional int64 employee_id = 3;
|
|
6406
|
+
* @return {number}
|
|
6407
|
+
*/
|
|
6408
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.getEmployeeId = function() {
|
|
6409
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
6410
|
+
};
|
|
6411
|
+
|
|
6412
|
+
|
|
6413
|
+
/**
|
|
6414
|
+
* @param {number} value
|
|
6415
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordResponse} returns this
|
|
6416
|
+
*/
|
|
6417
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.setEmployeeId = function(value) {
|
|
6418
|
+
return jspb.Message.setProto3IntField(this, 3, value);
|
|
6419
|
+
};
|
|
6420
|
+
|
|
6421
|
+
|
|
6422
|
+
/**
|
|
6423
|
+
* optional string employee_name = 4;
|
|
6424
|
+
* @return {string}
|
|
6425
|
+
*/
|
|
6426
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.getEmployeeName = function() {
|
|
6427
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
6428
|
+
};
|
|
6429
|
+
|
|
6430
|
+
|
|
6431
|
+
/**
|
|
6432
|
+
* @param {string} value
|
|
6433
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordResponse} returns this
|
|
6434
|
+
*/
|
|
6435
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.setEmployeeName = function(value) {
|
|
6436
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
6437
|
+
};
|
|
6438
|
+
|
|
6439
|
+
|
|
6440
|
+
/**
|
|
6441
|
+
* optional string message = 5;
|
|
6442
|
+
* @return {string}
|
|
6443
|
+
*/
|
|
6444
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.getMessage = function() {
|
|
6445
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
6446
|
+
};
|
|
6447
|
+
|
|
6448
|
+
|
|
6449
|
+
/**
|
|
6450
|
+
* @param {string} value
|
|
6451
|
+
* @return {!proto.payrollserviceapi.ManualMatchABARecordResponse} returns this
|
|
6452
|
+
*/
|
|
6453
|
+
proto.payrollserviceapi.ManualMatchABARecordResponse.prototype.setMessage = function(value) {
|
|
6454
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
6455
|
+
};
|
|
6456
|
+
|
|
6457
|
+
|
|
6458
|
+
|
|
6459
|
+
|
|
6460
|
+
|
|
6461
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
6462
|
+
/**
|
|
6463
|
+
* Creates an object representation of this proto.
|
|
6464
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
6465
|
+
* Optional fields that are not set will be set to undefined.
|
|
6466
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
6467
|
+
* For the list of reserved names please see:
|
|
6468
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
6469
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
6470
|
+
* JSPB instance for transitional soy proto support:
|
|
6471
|
+
* http://goto/soy-param-migration
|
|
6472
|
+
* @return {!Object}
|
|
6473
|
+
*/
|
|
6474
|
+
proto.payrollserviceapi.ABAFileDetails.prototype.toObject = function(opt_includeInstance) {
|
|
6475
|
+
return proto.payrollserviceapi.ABAFileDetails.toObject(opt_includeInstance, this);
|
|
6476
|
+
};
|
|
6477
|
+
|
|
6478
|
+
|
|
6479
|
+
/**
|
|
6480
|
+
* Static version of the {@see toObject} method.
|
|
6481
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
6482
|
+
* the JSPB instance for transitional soy proto support:
|
|
6483
|
+
* http://goto/soy-param-migration
|
|
6484
|
+
* @param {!proto.payrollserviceapi.ABAFileDetails} msg The msg instance to transform.
|
|
6485
|
+
* @return {!Object}
|
|
6486
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
6487
|
+
*/
|
|
6488
|
+
proto.payrollserviceapi.ABAFileDetails.toObject = function(includeInstance, msg) {
|
|
6489
|
+
var f, obj = {
|
|
6490
|
+
abaFileId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
6491
|
+
fileName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
6492
|
+
fileSize: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
6493
|
+
fileHash: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
6494
|
+
status: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
6495
|
+
totalRecords: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
6496
|
+
matchedRecords: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
6497
|
+
unmatchedRecords: jspb.Message.getFieldWithDefault(msg, 8, 0),
|
|
6498
|
+
errorRecords: jspb.Message.getFieldWithDefault(msg, 9, 0),
|
|
6499
|
+
createdAt: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
6500
|
+
processedAt: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
6501
|
+
errorMessage: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
6502
|
+
batchName: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
6503
|
+
};
|
|
6504
|
+
|
|
6505
|
+
if (includeInstance) {
|
|
6506
|
+
obj.$jspbMessageInstance = msg;
|
|
6507
|
+
}
|
|
6508
|
+
return obj;
|
|
6509
|
+
};
|
|
6510
|
+
}
|
|
6511
|
+
|
|
6512
|
+
|
|
6513
|
+
/**
|
|
6514
|
+
* Deserializes binary data (in protobuf wire format).
|
|
6515
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
6516
|
+
* @return {!proto.payrollserviceapi.ABAFileDetails}
|
|
6517
|
+
*/
|
|
6518
|
+
proto.payrollserviceapi.ABAFileDetails.deserializeBinary = function(bytes) {
|
|
6519
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
6520
|
+
var msg = new proto.payrollserviceapi.ABAFileDetails;
|
|
6521
|
+
return proto.payrollserviceapi.ABAFileDetails.deserializeBinaryFromReader(msg, reader);
|
|
6522
|
+
};
|
|
6523
|
+
|
|
6524
|
+
|
|
6525
|
+
/**
|
|
6526
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
6527
|
+
* given reader into the given message object.
|
|
6528
|
+
* @param {!proto.payrollserviceapi.ABAFileDetails} msg The message object to deserialize into.
|
|
6529
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
6530
|
+
* @return {!proto.payrollserviceapi.ABAFileDetails}
|
|
6531
|
+
*/
|
|
6532
|
+
proto.payrollserviceapi.ABAFileDetails.deserializeBinaryFromReader = function(msg, reader) {
|
|
6533
|
+
while (reader.nextField()) {
|
|
6534
|
+
if (reader.isEndGroup()) {
|
|
6535
|
+
break;
|
|
6536
|
+
}
|
|
6537
|
+
var field = reader.getFieldNumber();
|
|
6538
|
+
switch (field) {
|
|
6539
|
+
case 1:
|
|
6540
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
6541
|
+
msg.setAbaFileId(value);
|
|
6542
|
+
break;
|
|
6543
|
+
case 2:
|
|
6544
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6545
|
+
msg.setFileName(value);
|
|
6546
|
+
break;
|
|
6547
|
+
case 3:
|
|
6548
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
6549
|
+
msg.setFileSize(value);
|
|
6550
|
+
break;
|
|
6551
|
+
case 4:
|
|
6552
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6553
|
+
msg.setFileHash(value);
|
|
6554
|
+
break;
|
|
6555
|
+
case 5:
|
|
6556
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6557
|
+
msg.setStatus(value);
|
|
6558
|
+
break;
|
|
6559
|
+
case 6:
|
|
6560
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
6561
|
+
msg.setTotalRecords(value);
|
|
6562
|
+
break;
|
|
6563
|
+
case 7:
|
|
6564
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
6565
|
+
msg.setMatchedRecords(value);
|
|
6566
|
+
break;
|
|
6567
|
+
case 8:
|
|
6568
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
6569
|
+
msg.setUnmatchedRecords(value);
|
|
6570
|
+
break;
|
|
6571
|
+
case 9:
|
|
6572
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
6573
|
+
msg.setErrorRecords(value);
|
|
6574
|
+
break;
|
|
6575
|
+
case 10:
|
|
6576
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6577
|
+
msg.setCreatedAt(value);
|
|
6578
|
+
break;
|
|
6579
|
+
case 11:
|
|
6580
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6581
|
+
msg.setProcessedAt(value);
|
|
6582
|
+
break;
|
|
6583
|
+
case 12:
|
|
6584
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6585
|
+
msg.setErrorMessage(value);
|
|
6586
|
+
break;
|
|
6587
|
+
case 13:
|
|
6588
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6589
|
+
msg.setBatchName(value);
|
|
6590
|
+
break;
|
|
6591
|
+
default:
|
|
6592
|
+
reader.skipField();
|
|
6593
|
+
break;
|
|
6594
|
+
}
|
|
6595
|
+
}
|
|
6596
|
+
return msg;
|
|
6597
|
+
};
|
|
6598
|
+
|
|
6599
|
+
|
|
6600
|
+
/**
|
|
6601
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
6602
|
+
* @return {!Uint8Array}
|
|
6603
|
+
*/
|
|
6604
|
+
proto.payrollserviceapi.ABAFileDetails.prototype.serializeBinary = function() {
|
|
6605
|
+
var writer = new jspb.BinaryWriter();
|
|
6606
|
+
proto.payrollserviceapi.ABAFileDetails.serializeBinaryToWriter(this, writer);
|
|
6607
|
+
return writer.getResultBuffer();
|
|
6608
|
+
};
|
|
6609
|
+
|
|
6610
|
+
|
|
6611
|
+
/**
|
|
6612
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
6613
|
+
* format), writing to the given BinaryWriter.
|
|
6614
|
+
* @param {!proto.payrollserviceapi.ABAFileDetails} message
|
|
6615
|
+
* @param {!jspb.BinaryWriter} writer
|
|
6616
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
6617
|
+
*/
|
|
6618
|
+
proto.payrollserviceapi.ABAFileDetails.serializeBinaryToWriter = function(message, writer) {
|
|
6619
|
+
var f = undefined;
|
|
6620
|
+
f = message.getAbaFileId();
|
|
6621
|
+
if (f !== 0) {
|
|
6622
|
+
writer.writeInt64(
|
|
6623
|
+
1,
|
|
6624
|
+
f
|
|
6625
|
+
);
|
|
6626
|
+
}
|
|
6627
|
+
f = message.getFileName();
|
|
6628
|
+
if (f.length > 0) {
|
|
6629
|
+
writer.writeString(
|
|
6630
|
+
2,
|
|
6631
|
+
f
|
|
6632
|
+
);
|
|
6633
|
+
}
|
|
6634
|
+
f = message.getFileSize();
|
|
6635
|
+
if (f !== 0) {
|
|
6636
|
+
writer.writeInt64(
|
|
6637
|
+
3,
|
|
6638
|
+
f
|
|
6639
|
+
);
|
|
6640
|
+
}
|
|
6641
|
+
f = message.getFileHash();
|
|
6642
|
+
if (f.length > 0) {
|
|
6643
|
+
writer.writeString(
|
|
6644
|
+
4,
|
|
6645
|
+
f
|
|
6646
|
+
);
|
|
6647
|
+
}
|
|
6648
|
+
f = message.getStatus();
|
|
6649
|
+
if (f.length > 0) {
|
|
6650
|
+
writer.writeString(
|
|
6651
|
+
5,
|
|
6652
|
+
f
|
|
6653
|
+
);
|
|
6654
|
+
}
|
|
6655
|
+
f = message.getTotalRecords();
|
|
6656
|
+
if (f !== 0) {
|
|
6657
|
+
writer.writeInt32(
|
|
6658
|
+
6,
|
|
6659
|
+
f
|
|
6660
|
+
);
|
|
6661
|
+
}
|
|
6662
|
+
f = message.getMatchedRecords();
|
|
6663
|
+
if (f !== 0) {
|
|
6664
|
+
writer.writeInt32(
|
|
6665
|
+
7,
|
|
6666
|
+
f
|
|
6667
|
+
);
|
|
6668
|
+
}
|
|
6669
|
+
f = message.getUnmatchedRecords();
|
|
6670
|
+
if (f !== 0) {
|
|
6671
|
+
writer.writeInt32(
|
|
5987
6672
|
8,
|
|
5988
6673
|
f
|
|
5989
6674
|
);
|
|
@@ -6261,6 +6946,13 @@ proto.payrollserviceapi.ABAFileDetails.prototype.setBatchName = function(value)
|
|
|
6261
6946
|
|
|
6262
6947
|
|
|
6263
6948
|
|
|
6949
|
+
/**
|
|
6950
|
+
* List of repeated fields within this message type.
|
|
6951
|
+
* @private {!Array<number>}
|
|
6952
|
+
* @const
|
|
6953
|
+
*/
|
|
6954
|
+
proto.payrollserviceapi.ABARecordDetail.repeatedFields_ = [17];
|
|
6955
|
+
|
|
6264
6956
|
|
|
6265
6957
|
|
|
6266
6958
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -6307,7 +6999,9 @@ proto.payrollserviceapi.ABARecordDetail.toObject = function(includeInstance, msg
|
|
|
6307
6999
|
createdAt: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
6308
7000
|
monthlySalary: jspb.Message.getFloatingPointFieldWithDefault(msg, 14, 0.0),
|
|
6309
7001
|
calculatedAmount: jspb.Message.getFloatingPointFieldWithDefault(msg, 15, 0.0),
|
|
6310
|
-
salaryCalculationNote: jspb.Message.getFieldWithDefault(msg, 16, "")
|
|
7002
|
+
salaryCalculationNote: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
7003
|
+
duplicateEmployeesList: jspb.Message.toObjectList(msg.getDuplicateEmployeesList(),
|
|
7004
|
+
proto.payrollserviceapi.EmployeeSummary.toObject, includeInstance)
|
|
6311
7005
|
};
|
|
6312
7006
|
|
|
6313
7007
|
if (includeInstance) {
|
|
@@ -6408,6 +7102,11 @@ proto.payrollserviceapi.ABARecordDetail.deserializeBinaryFromReader = function(m
|
|
|
6408
7102
|
var value = /** @type {string} */ (reader.readString());
|
|
6409
7103
|
msg.setSalaryCalculationNote(value);
|
|
6410
7104
|
break;
|
|
7105
|
+
case 17:
|
|
7106
|
+
var value = new proto.payrollserviceapi.EmployeeSummary;
|
|
7107
|
+
reader.readMessage(value,proto.payrollserviceapi.EmployeeSummary.deserializeBinaryFromReader);
|
|
7108
|
+
msg.addDuplicateEmployees(value);
|
|
7109
|
+
break;
|
|
6411
7110
|
default:
|
|
6412
7111
|
reader.skipField();
|
|
6413
7112
|
break;
|
|
@@ -6549,6 +7248,14 @@ proto.payrollserviceapi.ABARecordDetail.serializeBinaryToWriter = function(messa
|
|
|
6549
7248
|
f
|
|
6550
7249
|
);
|
|
6551
7250
|
}
|
|
7251
|
+
f = message.getDuplicateEmployeesList();
|
|
7252
|
+
if (f.length > 0) {
|
|
7253
|
+
writer.writeRepeatedMessage(
|
|
7254
|
+
17,
|
|
7255
|
+
f,
|
|
7256
|
+
proto.payrollserviceapi.EmployeeSummary.serializeBinaryToWriter
|
|
7257
|
+
);
|
|
7258
|
+
}
|
|
6552
7259
|
};
|
|
6553
7260
|
|
|
6554
7261
|
|
|
@@ -6840,6 +7547,44 @@ proto.payrollserviceapi.ABARecordDetail.prototype.setSalaryCalculationNote = fun
|
|
|
6840
7547
|
};
|
|
6841
7548
|
|
|
6842
7549
|
|
|
7550
|
+
/**
|
|
7551
|
+
* repeated EmployeeSummary duplicate_employees = 17;
|
|
7552
|
+
* @return {!Array<!proto.payrollserviceapi.EmployeeSummary>}
|
|
7553
|
+
*/
|
|
7554
|
+
proto.payrollserviceapi.ABARecordDetail.prototype.getDuplicateEmployeesList = function() {
|
|
7555
|
+
return /** @type{!Array<!proto.payrollserviceapi.EmployeeSummary>} */ (
|
|
7556
|
+
jspb.Message.getRepeatedWrapperField(this, proto.payrollserviceapi.EmployeeSummary, 17));
|
|
7557
|
+
};
|
|
7558
|
+
|
|
7559
|
+
|
|
7560
|
+
/**
|
|
7561
|
+
* @param {!Array<!proto.payrollserviceapi.EmployeeSummary>} value
|
|
7562
|
+
* @return {!proto.payrollserviceapi.ABARecordDetail} returns this
|
|
7563
|
+
*/
|
|
7564
|
+
proto.payrollserviceapi.ABARecordDetail.prototype.setDuplicateEmployeesList = function(value) {
|
|
7565
|
+
return jspb.Message.setRepeatedWrapperField(this, 17, value);
|
|
7566
|
+
};
|
|
7567
|
+
|
|
7568
|
+
|
|
7569
|
+
/**
|
|
7570
|
+
* @param {!proto.payrollserviceapi.EmployeeSummary=} opt_value
|
|
7571
|
+
* @param {number=} opt_index
|
|
7572
|
+
* @return {!proto.payrollserviceapi.EmployeeSummary}
|
|
7573
|
+
*/
|
|
7574
|
+
proto.payrollserviceapi.ABARecordDetail.prototype.addDuplicateEmployees = function(opt_value, opt_index) {
|
|
7575
|
+
return jspb.Message.addToRepeatedWrapperField(this, 17, opt_value, proto.payrollserviceapi.EmployeeSummary, opt_index);
|
|
7576
|
+
};
|
|
7577
|
+
|
|
7578
|
+
|
|
7579
|
+
/**
|
|
7580
|
+
* Clears the list making it empty but non-null.
|
|
7581
|
+
* @return {!proto.payrollserviceapi.ABARecordDetail} returns this
|
|
7582
|
+
*/
|
|
7583
|
+
proto.payrollserviceapi.ABARecordDetail.prototype.clearDuplicateEmployeesList = function() {
|
|
7584
|
+
return this.setDuplicateEmployeesList([]);
|
|
7585
|
+
};
|
|
7586
|
+
|
|
7587
|
+
|
|
6843
7588
|
|
|
6844
7589
|
|
|
6845
7590
|
|