Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
46bd27e126
Revised the saveOriginalLineItem method of the JavaScript JournalEntryLineItemEditor class not to override the existing amount when the existing amount is less than the net balance. This make it easier when updating the existing journal entries.
b718d19450
Resolved an issue where, in cases where there was no existing localized title and the default title was submitted, the submitted account title or currency name would be erroneously saved as the localized title.
8c899776f2
Corrected the filename in the csv method of the AccountsWithUnmatchedOffsets report class.
f9aa226bf9
Removed an unnecessary f-string from the csv method of the AccountsWithUnappliedOriginalLineItems report class.
c9bb4197be
Fixed the error calling the old "setEnableDescriptionAccount" method in the saveOriginalLineItem method of the JavaScript JournalEntryLineItemEditor class.
158058dcfb
Updated the documentation of the created_at, created_by, updated_at, updated_by, and visited_at columns of the data models, for consistency.
e861cae2e0
Replaced importing the "typing" module as "t" with importing the individual names in the "typing" module. We do not have as many names to import. This is also to be consistent with the practices of most major and standard packages and examples.
045de9f59e
Replaced importing the "typing" module as "t" with importing the individual names in the "typing" module. Since Python 3.9 introduced type hinting generics in standard collections, we do not have as many names to import now. This is also to be consistent with the practices of most major and standard packages and examples.
264ba158ee
Updated minimal Python version to 3.8. As "typing.Literal" is used from the beginning of the project, it is never compatible with Python 3.7. I suppose it was ignored by Python 3.7 when importing the "typing" package but not the name "Literal" itself for type hints.
8c58a9083a
Added type hint subscription for the cls parameter of the new_id function.
f45663754c
Fixed the documentation of the "accounting.utils.random_id" module.
cda9e4e3c6
Replaced importing the "typing" module as "t" with importing the individual names in the "typing" module. Since Python 3.9 introduced type hinting generics in standard collections, we do not have as many names to import now. This is also to be consistent with the practices of most major and standard packages and examples.