Renamed "voucher" to "journal entry".

This commit is contained in:
2023-03-20 22:08:58 +08:00
parent 8f909965a9
commit b1af1d7425
74 changed files with 1956 additions and 1816 deletions

View File

@ -14,17 +14,17 @@
# 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.
"""The voucher types.
"""The journal entry types.
"""
from enum import Enum
class VoucherType(Enum):
"""The voucher types."""
class JournalEntryType(Enum):
"""The journal entry types."""
CASH_RECEIPT: str = "receipt"
"""The cash receipt voucher."""
"""The cash receipt journal entry."""
CASH_DISBURSEMENT: str = "disbursement"
"""The cash disbursement voucher."""
"""The cash disbursement journal entry."""
TRANSFER: str = "transfer"
"""The transfer voucher."""
"""The transfer journal entry."""