Merge pull request #52200 from Tom-1508/fix-journal-print-date

fix(accounts): correct date in Journal Auditing Voucher print format
This commit is contained in:
ruthra kumar
2026-02-02 12:51:02 +05:30
committed by GitHub

View File

@@ -17,7 +17,7 @@
</div> </div>
<div class="col-xs-6"> <div class="col-xs-6">
<table> <table>
<tr><td><strong>Date: </strong></td><td>{{ frappe.utils.format_date(doc.creation) }}</td></tr> <tr><td><strong>Date: </strong></td><td>{{ frappe.utils.format_date(doc.posting_date) }}</td></tr>
</table> </table>
</div> </div>
</div> </div>