blob: 1bd2bd2c0fadb5a83f6d1fd5596f5112d8e78319 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.fineract.organisation.teller.data;
import java.io.Serializable;
import java.time.LocalDate;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
/**
* {@code TellerJournalData} represents an immutable journal data object.
*
* @version 1.0.0
*
* @since 2.0.0
* @see java.io.Serializable
* @since 2.0.0
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@Accessors(chain = true)
public final class TellerJournalData implements Serializable {
private Long officeId;
private Long tellerId;
private LocalDate day;
private Double openingBalance;
private Double settledBalance;
private Double closingBalance;
private Double sumReceipts;
private Double sumPayments;
/**
* Create a new teller journal data object.
*
* @param officeId
* - id of related office
* @param tellerId
* - id of related teller
* @param day
* - day of this journals data
* @param openingBalance
* - balance at the time of opening the teller
* @param settledBalance
* - balance at the time od settling the teller
* @param closingBalance
* - balance at the time of closing the teller
* @param sumReceipts
* - sum of all posted receipts
* @param sumPayments
* - sum of all posted payments
* @return the new created {@code TellerJournalData}
*/
public static TellerJournalData instance(final Long officeId, final Long tellerId, final LocalDate day, final Double openingBalance,
final Double settledBalance, final Double closingBalance, final Double sumReceipts, final Double sumPayments) {
return new TellerJournalData().setOfficeId(officeId).setTellerId(tellerId).setDay(day).setOpeningBalance(openingBalance)
.setSettledBalance(settledBalance).setClosingBalance(closingBalance).setSumReceipts(sumReceipts)
.setSumPayments(sumPayments);
}
}