rename of fields - form- summary report
This commit is contained in:
@@ -19,7 +19,7 @@ class AOHandler:
|
|||||||
|
|
||||||
return records
|
return records
|
||||||
|
|
||||||
# get ao recourd
|
# get ao record
|
||||||
def get_ao_by_id(self, id):
|
def get_ao_by_id(self, id):
|
||||||
self.cursor.callproc('GetAOById', [id])
|
self.cursor.callproc('GetAOById', [id])
|
||||||
records = []
|
records = []
|
||||||
|
|||||||
@@ -220,7 +220,7 @@ class DocumentHandler:
|
|||||||
"-",
|
"-",
|
||||||
"Tax Payable",
|
"Tax Payable",
|
||||||
"Total Tax Payable",
|
"Total Tax Payable",
|
||||||
"Opening Balance:",
|
"Opening Balance of Mat Credit:",
|
||||||
"Add: MAT Credit Created",
|
"Add: MAT Credit Created",
|
||||||
"Less: MAT Credit Utilized",
|
"Less: MAT Credit Utilized",
|
||||||
"Closing Balance",
|
"Closing Balance",
|
||||||
@@ -321,7 +321,7 @@ class DocumentHandler:
|
|||||||
"-",
|
"-",
|
||||||
"Tax Payable",
|
"Tax Payable",
|
||||||
"Total Tax Payable",
|
"Total Tax Payable",
|
||||||
"Opening Balance",
|
"Opening Balance of Mat Credit",
|
||||||
"Add: MAT Credit Created",
|
"Add: MAT Credit Created",
|
||||||
"Less: MAT Credit Utilized",
|
"Less: MAT Credit Utilized",
|
||||||
"Closing Balance",
|
"Closing Balance",
|
||||||
|
|||||||
@@ -35,7 +35,8 @@
|
|||||||
<th>Utilized {{ y }}</th>
|
<th>Utilized {{ y }}</th>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<th>Balance</th>
|
<th>Closing Balance</th>
|
||||||
|
<th>Remarks</th>
|
||||||
<th>Action</th>
|
<th>Action</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@@ -54,6 +55,7 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<td><input value="{{ row.balance }}"></td>
|
<td><input value="{{ row.balance }}"></td>
|
||||||
|
<td><input value="{{ row.remarks }}"></td>
|
||||||
<td><button onclick="saveRow(this)">Save</button></td>
|
<td><button onclick="saveRow(this)">Save</button></td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
@@ -27,11 +27,7 @@
|
|||||||
</select>
|
</select>
|
||||||
<button type="submit">Apply</button>
|
<button type="submit">Apply</button>
|
||||||
</form>
|
</form>
|
||||||
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
||||||
{% for category, message in messages %}
|
|
||||||
<div class="alert alert-{{ category }}">{{ message }}</div>
|
|
||||||
{% endfor %}
|
|
||||||
{% endwith %}
|
|
||||||
<!-- DOCUMENT TABLE -->
|
<!-- DOCUMENT TABLE -->
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table>
|
<table>
|
||||||
|
|||||||
Reference in New Issue
Block a user