@stssocialst-stp/fe-payroll 0.1.4 → 0.1.5
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/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -794,7 +794,7 @@ function createPayroll(payroll, clientMutationLabel) {
|
|
|
794
794
|
return PERFORM_MUTATION(MUTATION_SERVICE.PAYROLL.CREATE, formatPayrollGQL(payroll), ACTION_TYPE.CREATE_PAYROLL, clientMutationLabel);
|
|
795
795
|
}
|
|
796
796
|
function fetchBenefitConsumptions(modulesManager, params) {
|
|
797
|
-
var payload = formatPageQueryWithCount('
|
|
797
|
+
var payload = formatPageQueryWithCount('benefitConsumptionByPayroll', params, BENEFIT_CONSUMPTION_PROJECTION());
|
|
798
798
|
return graphql(payload, ACTION_TYPE.GET_BENEFIT_CONSUMPTION);
|
|
799
799
|
}
|
|
800
800
|
function fetchBenefitAttachments(modulesManager, params) {
|
|
@@ -5577,9 +5577,9 @@ function BenefitConsumptionSearcher(_ref) {
|
|
|
5577
5577
|
value: false,
|
|
5578
5578
|
filter: 'isDeleted: false'
|
|
5579
5579
|
},
|
|
5580
|
-
|
|
5580
|
+
payrollUuid: {
|
|
5581
5581
|
value: payrollUuid,
|
|
5582
|
-
filter: "
|
|
5582
|
+
filter: "payrollUuid: \"".concat(payrollUuid, "\"")
|
|
5583
5583
|
}
|
|
5584
5584
|
};
|
|
5585
5585
|
if (isPayrollFromFailedInvoices) {
|