Renamed "voucher" to "journal entry".
This commit is contained in:
@ -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."""
|
Reference in New Issue
Block a user