changes of report and models
This commit is contained in:
@@ -14,6 +14,17 @@
|
||||
<label>Year:</label>
|
||||
<input type="tex" name="year" value="{{record.year}}" class="auto" readonly>
|
||||
</div>
|
||||
<div>
|
||||
<label>Created Date:</label>
|
||||
<input type="date" name="created_at"
|
||||
value="{{ record.created_at.strftime('%Y-%m-%d') if record.created_at else current_date }}"
|
||||
readonly>
|
||||
</div>
|
||||
<div>
|
||||
<label>Last Updated:</label>
|
||||
<input type="date" name="updated_at"
|
||||
value="{{ record.updated_at.strftime('%Y-%m-%d') if record.updated_at else current_date }}">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
@@ -34,6 +45,15 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
<label>GTI as per AO</label>
|
||||
<input type="number" name="gti_as_per_ao" class="auto" step="any"
|
||||
value="{{ record.gross_total_income + record.disallowance_37 + record.disallowance_14a }}"
|
||||
readonly>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
<label>Less :Deduction 80IA Business Income:</label>
|
||||
@@ -64,6 +84,7 @@
|
||||
oninput="calculate()" required>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class=" form-group">
|
||||
<label>Net Taxable Income:</label>
|
||||
<input type="number" name="net_taxable_income" class="auto" step="any"
|
||||
@@ -71,41 +92,101 @@
|
||||
</div>
|
||||
|
||||
|
||||
<div class=" form-group full-width inline-2">
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
<label>Tax @ 30% (A):</label>
|
||||
<input type="number" name="tax_30_percent" step="any" value="{{ record.tax_30_percent}}"
|
||||
oninput="calculate()" required>
|
||||
<label>Enter Percentage(%) calculate: Tax(A):</label>
|
||||
<input type="number" name="per_tax_a" step="any" value="{{ record.per_tax_a }}" oninput="calculate()">
|
||||
</div>
|
||||
<div>
|
||||
<label>Tax @(A):</label>
|
||||
<input type="number" name="tax_a_cal" step="any" value="{{ record.tax_a_cal }}" oninput="calculate()">
|
||||
</div>
|
||||
<div>
|
||||
<label>Enter Percentage(%) calculate: Tax(B):</label>
|
||||
<input type="number" name="per_tax_b" step="any" value="{{ record.per_tax_b }}" oninput="calculate()">
|
||||
</div>
|
||||
<div>
|
||||
<label>Tax @ 18.5% on Book Profit (B):</label>
|
||||
<input type="number" name="tax_book_profit_18_5" step="any" value="{{ record.tax_book_profit_18_5}}"
|
||||
oninput="calculate()" required>
|
||||
<input type="number" name="tax_b_cal" step="any" value="{{ record.tax_b_cal }}" oninput="calculate()"
|
||||
required>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
<label>Enter Percentage(%) Surcharge:Tax(A):</label>
|
||||
<input type="number" name="per_surcharge_a" step="any" value="{{ record.per_surcharge_a }}"
|
||||
oninput="calculate()">
|
||||
</div>
|
||||
<div>
|
||||
<label>Tax Payable (Higher of A or B):</label>
|
||||
<input type="number" name="tax_payable" class="auto" step="any" value="{{ record.tax_payable}}"
|
||||
<label>Surcharge on Tax(A):</label>
|
||||
<input type="number" name="surcharge_a_cal" class="auto" value="{{ record.surcharge_a_cal }}" readonly>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label>Enter Percentage(%) Surcharge:Tax(B)</label>
|
||||
<input type="number" name="per_surcharge_b" step="any" value="{{ record.per_surcharge_b}}"
|
||||
oninput="calculate()">
|
||||
</div>
|
||||
<div>
|
||||
<label>Surcharge on Tax(B):</label>
|
||||
<input type="number" name="surcharge_b_cal" class="auto" value="{{ record.surcharge_b_cal }}" readonly>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
<label>Enter Percentage(%) Cess:Tax(A):</label>
|
||||
<input type="number" name="per_cess_a" step="any" value="{{ record.per_cess_a }}" oninput="calculate()">
|
||||
</div>
|
||||
<div>
|
||||
<label>Education Cess:Tax(A): </label>
|
||||
<input type="number" name="edu_cess_a_cal" class="auto" step="any" value="{{ record.edu_cess_a_cal }}"
|
||||
readonly>
|
||||
</div>
|
||||
<div>
|
||||
<label>Enter Percentage(%) Cess:Tax(B):</label>
|
||||
<input type="number" name="per_cess_b" step="any" value="{{ record.per_cess_b }}" oninput="calculate()">
|
||||
</div>
|
||||
<div>
|
||||
<label>Education Cess:Tax(B): </label>
|
||||
<input type="number" name="edu_cess_b_cal" class="auto" step="any" value="{{ record.edu_cess_b_cal }}"
|
||||
readonly>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
<label>Surcharge:</label>
|
||||
<input type="number" name="surcharge" class="auto" value="{{ record.surcharge}}" readonly>
|
||||
<label>Total cal Tax(A): </label>
|
||||
<input type="number" name="sum_of_a" class="auto" step="any" value="{{ record.sum_of_a }}" readonly>
|
||||
</div>
|
||||
<div>
|
||||
<label>Education Cess:</label>
|
||||
<input type="number" name="edu_cess" class="auto" step="any" value="{{ record.edu_cess}}" readonly>
|
||||
<label>Total cal Tax(B): </label>
|
||||
<input type="number" name="sum_of_b" class="auto" step="any" value="{{ record.sum_of_b }}" readonly>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
<label>Tax Payable (Higher of A or B):</label>
|
||||
<input type="number" name="tax_payable" class="auto" step="any" value="{{ record.tax_payable }}"
|
||||
readonly>
|
||||
</div>
|
||||
<div>
|
||||
<label>Total tax Payable:</label>
|
||||
<input type="number" name="total_tax_payable" class="auto" step="any"
|
||||
value="{{ record.total_tax_payable}}" readonly>
|
||||
value="{{ record.total_tax_payable }}" readonly>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
<label>Opening Balance:</label>
|
||||
<input type="number" name="opening_balance" step="any" value="{{ record.opening_balance }}"
|
||||
oninput="calculate()">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
<label>Less :Mat Credit Created:</label>
|
||||
<input type="number" name="mat_credit_created" step="any" value="{{ record.mat_credit_created }}"
|
||||
@@ -116,6 +197,14 @@
|
||||
<input type="number" name="mat_credit_utilized" step="any" value="{{ record.mat_credit_utilized }}"
|
||||
oninput="calculate()" required>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
<label>Closing Balance:</label>
|
||||
<input type="number" name="closing_balance" step="any" value="{{ record.closing_balance }}"
|
||||
oninput="calculate()">
|
||||
</div>
|
||||
<div>
|
||||
<label>Add :Interest 234c:</label>
|
||||
<input type="number" name="interest_234c" step="any" value="{{ record.interest_234c}}"
|
||||
@@ -163,9 +252,29 @@
|
||||
<input type="number" name="refund" class="auto" step="any" value="{{ record.refund}}" readonly>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>Remarks:</label>
|
||||
<input type="text" name="Remarks" value="{{ record.remarks}}">
|
||||
<div class="form-group full-width inline-2">
|
||||
<div class="form-group">
|
||||
<label>Add : Interest u/s 244A as per 143:</label>
|
||||
<input type="number" name="interest_244a_per143" step="any" value="{{ record.interest_244a_per143 }}"
|
||||
oninput="calculate()">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Less : Refund Received on:</label>
|
||||
<input type="number" name="refund_received" step="any" value="{{ record.refund_received }}"
|
||||
oninput="calculate()">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Balance Receivable:</label>
|
||||
<input type="number" name="balance_receivable" class="auto" step="any"
|
||||
value="{{ record.balance_receivable }}" oninput="calculate()">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
<div class="form-group">
|
||||
<label>Remarks:</label>
|
||||
<input type="text" name="Remarks" value="{{ record.Remarks }}">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button type="submit">Update Record</button>
|
||||
|
||||
Reference in New Issue
Block a user