* fix: merge conflict * fix: restored missing set_gst_state_and_state_number function * fix: style linting as per codacy * fix: Fixes related to customer/lead merging * fix: merge conflict * fix: Fixes related to customer/lead merging * fix: Assign isue/opportunity to user * fix: Assign isue/opportunity to user * fix: Replaced Invoice type by GST Category * fix: merge conflict * fix: merge conflict * fix: test cases * fix: test cases
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="list-row">
 | |
| 	<div>
 | |
| 		<div class="col-xs-3 col-sm-2 ellipsis">
 | |
| 			{{ name }}
 | |
| 		</div>
 | |
| 		<div class="col-xs-3 col-sm-2 ellipsis">
 | |
| 			{% if (typeof reference_date !== "undefined") %}
 | |
| 				{%= frappe.datetime.str_to_user(reference_date) %}
 | |
| 			{% else %}
 | |
| 				{% if (typeof posting_date !== "undefined") %}
 | |
| 					{%= frappe.datetime.str_to_user(posting_date) %}
 | |
| 				{% endif %}
 | |
| 			{% endif %}
 | |
| 		</div>
 | |
| 		<div class="col-sm-2 ellipsis hidden-xs">
 | |
| 			{{ format_currency(paid_amount, currency) }}
 | |
| 		</div>
 | |
| 		<div class="col-sm-2 ellipsis hidden-xs">
 | |
| 			{% if (typeof party !== "undefined") %}
 | |
| 				{{ party }}
 | |
| 			{% endif %}
 | |
| 		</div>
 | |
| 		<div class="col-xs-3 col-sm-2 ellipsis">
 | |
| 			{% if (typeof reference_no !== "undefined") %}
 | |
| 				{{ reference_no }}
 | |
| 			{% else %}
 | |
| 				{{ "" }}
 | |
| 			{% endif %}
 | |
| 		</div>
 | |
| 		<div class="col-xs-2 col-sm-2">
 | |
| 			<div class="text-right margin-bottom">
 | |
| 				<button class="btn btn-primary btn-xs reconciliation-btn" data-doctype="{{ doctype }}" data-name="{{ name }}">{{ __("Reconcile") }}</button>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div> |