Revised the form of the transactions to supply the account code instead of the account primary key in the accounting application.
This commit is contained in:
		| @@ -71,7 +71,7 @@ First written: 2020/7/23 | ||||
|                 {% str_format "debit-{}-account" forloop.counter as field %} | ||||
|                 <select id="{{ field }}" class="form-control record-account debit-account {% if errors|dict:field %} is-invalid {% endif %}" name="{{ field }}"> | ||||
|                   {% if x.account is not None %} | ||||
|                     <option value="{{ x.account.pk }}" selected="selected">{{ x.account.code }} {{ x.account.title }}</option> | ||||
|                     <option value="{{ x.account.code }}" selected="selected">{{ x.account.code }} {{ x.account.title }}</option> | ||||
|                   {% else %} | ||||
|                     <option value=""></option> | ||||
|                   {% endif %} | ||||
|   | ||||
| @@ -71,7 +71,7 @@ First written: 2020/7/23 | ||||
|                 {% str_format "credit-{}-account" forloop.counter as field %} | ||||
|                 <select id="{{ field }}" class="form-control record-account credit-account {% if errors|dict:field %} is-invalid {% endif %}" name="{{ field }}"> | ||||
|                   {% if x.account is not None %} | ||||
|                     <option value="{{ x.account.pk }}" selected="selected">{{ x.account.code }} {{ x.account.title }}</option> | ||||
|                     <option value="{{ x.account.code }}" selected="selected">{{ x.account.code }} {{ x.account.title }}</option> | ||||
|                   {% else %} | ||||
|                     <option value=""></option> | ||||
|                   {% endif %} | ||||
|   | ||||
| @@ -77,7 +77,7 @@ First written: 2020/7/23 | ||||
|                   {% str_format "debit-{}-account" forloop.counter as field %} | ||||
|                   <select id="{{ field }}" class="form-control record-account debit-account {% if errors|dict:field %} is-invalid {% endif %}" name="{{ field }}"> | ||||
|                     {% if x.account is not None %} | ||||
|                       <option value="{{ x.account.pk }}" selected="selected">{{ x.account.code }} {{ x.account.title }}</option> | ||||
|                       <option value="{{ x.account.code }}" selected="selected">{{ x.account.code }} {{ x.account.title }}</option> | ||||
|                     {% else %} | ||||
|                       <option value=""></option> | ||||
|                     {% endif %} | ||||
| @@ -144,7 +144,7 @@ First written: 2020/7/23 | ||||
|                   {% str_format "credit-{}-account" forloop.counter as field %} | ||||
|                   <select id="{{ field }}" class="form-control record-account credit-account {% if errors|dict:field %} is-invalid {% endif %}" name="{{ field }}"> | ||||
|                     {% if x.account is not None %} | ||||
|                       <option value="{{ x.account.pk }}" selected="selected">{{ x.account.code }} {{ x.account.title }}</option> | ||||
|                       <option value="{{ x.account.code }}" selected="selected">{{ x.account.code }} {{ x.account.title }}</option> | ||||
|                     {% else %} | ||||
|                       <option value=""></option> | ||||
|                     {% endif %} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user