mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-02 11:49:10 +00:00
chore: remove 'repost_required' from Journal Entry
(cherry picked from commit e81373bb6a)
# Conflicts:
# erpnext/accounts/doctype/journal_entry/journal_entry.json
# erpnext/accounts/doctype/journal_entry/journal_entry.py
This commit is contained in:
@@ -557,7 +557,11 @@
|
|||||||
"table_fieldname": "payment_entries"
|
"table_fieldname": "payment_entries"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
<<<<<<< HEAD
|
||||||
"modified": "2023-11-23 12:11:04.128015",
|
"modified": "2023-11-23 12:11:04.128015",
|
||||||
|
=======
|
||||||
|
"modified": "2024-07-18 15:32:29.413598",
|
||||||
|
>>>>>>> e81373bb6a (chore: remove 'repost_required' from Journal Entry)
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Accounts",
|
"module": "Accounts",
|
||||||
"name": "Journal Entry",
|
"name": "Journal Entry",
|
||||||
|
|||||||
@@ -32,6 +32,79 @@ class StockAccountInvalidTransaction(frappe.ValidationError):
|
|||||||
|
|
||||||
|
|
||||||
class JournalEntry(AccountsController):
|
class JournalEntry(AccountsController):
|
||||||
|
<<<<<<< HEAD
|
||||||
|
=======
|
||||||
|
# begin: auto-generated types
|
||||||
|
# This code is auto-generated. Do not modify anything in this block.
|
||||||
|
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from frappe.types import DF
|
||||||
|
|
||||||
|
from erpnext.accounts.doctype.journal_entry_account.journal_entry_account import JournalEntryAccount
|
||||||
|
|
||||||
|
accounts: DF.Table[JournalEntryAccount]
|
||||||
|
amended_from: DF.Link | None
|
||||||
|
apply_tds: DF.Check
|
||||||
|
auto_repeat: DF.Link | None
|
||||||
|
bill_date: DF.Date | None
|
||||||
|
bill_no: DF.Data | None
|
||||||
|
cheque_date: DF.Date | None
|
||||||
|
cheque_no: DF.Data | None
|
||||||
|
clearance_date: DF.Date | None
|
||||||
|
company: DF.Link
|
||||||
|
difference: DF.Currency
|
||||||
|
due_date: DF.Date | None
|
||||||
|
finance_book: DF.Link | None
|
||||||
|
from_template: DF.Link | None
|
||||||
|
inter_company_journal_entry_reference: DF.Link | None
|
||||||
|
is_opening: DF.Literal["No", "Yes"]
|
||||||
|
is_system_generated: DF.Check
|
||||||
|
letter_head: DF.Link | None
|
||||||
|
mode_of_payment: DF.Link | None
|
||||||
|
multi_currency: DF.Check
|
||||||
|
naming_series: DF.Literal["ACC-JV-.YYYY.-"]
|
||||||
|
paid_loan: DF.Data | None
|
||||||
|
pay_to_recd_from: DF.Data | None
|
||||||
|
payment_order: DF.Link | None
|
||||||
|
posting_date: DF.Date
|
||||||
|
process_deferred_accounting: DF.Link | None
|
||||||
|
remark: DF.SmallText | None
|
||||||
|
reversal_of: DF.Link | None
|
||||||
|
select_print_heading: DF.Link | None
|
||||||
|
stock_entry: DF.Link | None
|
||||||
|
tax_withholding_category: DF.Link | None
|
||||||
|
title: DF.Data | None
|
||||||
|
total_amount: DF.Currency
|
||||||
|
total_amount_currency: DF.Link | None
|
||||||
|
total_amount_in_words: DF.Data | None
|
||||||
|
total_credit: DF.Currency
|
||||||
|
total_debit: DF.Currency
|
||||||
|
user_remark: DF.SmallText | None
|
||||||
|
voucher_type: DF.Literal[
|
||||||
|
"Journal Entry",
|
||||||
|
"Inter Company Journal Entry",
|
||||||
|
"Bank Entry",
|
||||||
|
"Cash Entry",
|
||||||
|
"Credit Card Entry",
|
||||||
|
"Debit Note",
|
||||||
|
"Credit Note",
|
||||||
|
"Contra Entry",
|
||||||
|
"Excise Entry",
|
||||||
|
"Write Off Entry",
|
||||||
|
"Opening Entry",
|
||||||
|
"Depreciation Entry",
|
||||||
|
"Exchange Rate Revaluation",
|
||||||
|
"Exchange Gain Or Loss",
|
||||||
|
"Deferred Revenue",
|
||||||
|
"Deferred Expense",
|
||||||
|
]
|
||||||
|
write_off_amount: DF.Currency
|
||||||
|
write_off_based_on: DF.Literal["Accounts Receivable", "Accounts Payable"]
|
||||||
|
# end: auto-generated types
|
||||||
|
|
||||||
|
>>>>>>> e81373bb6a (chore: remove 'repost_required' from Journal Entry)
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super().__init__(*args, **kwargs)
|
super().__init__(*args, **kwargs)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user