fix: minor removed unused file

This commit is contained in:
Rohit Waghchaure 2021-06-30 11:35:50 +05:30
parent 2a1d1e1cb1
commit 815e6ec846
2 changed files with 1 additions and 34 deletions

View File

@ -1,33 +0,0 @@
<div style="padding: 15px;">
<div class="row mb-5">
<div class="col-md-5" style="max-height: 500px">
{% if data.image %}
<div class="border image-field " style="overflow: hidden;border-color:#e6e6e6">
<img class="responsive" src={{ data.image }}>
</div>
{% endif %}
</div>
<div class="col-md-7 h-500">
<div style="padding-top: 10px;">
<b> Status </b> {{ data.status }}
</div>
<div style="padding-top: 10px;">
<b> Qty to Produce </b> {{ data.qty }}
</div>
<div style="padding-top: 10px;">
<b> Produced Qty </b> {{ data.produced_qty }}
</div>
<hr style="margin: 15px -15px;">
<p>
{% if data.value %}
<a style="margin-right: 7px; margin-bottom: 7px" class="btn btn-default btn-xs" href="#Form/Work Order/{{ data.value }}">
{{ __("Open Work Order {0}", [data.value.bold()]) }}</a>
{% endif %}
{% if data.item_code %}
<a class="btn btn-default btn-xs" href="#Form/Item/{{ data.item_code }}">
{{ __("Open Item {0}", [data.item_code.bold()]) }}</a>
{% endif %}
</p>
</div>
</div>
</div>

View File

@ -72,7 +72,7 @@ class StockEntry(StockController):
self.validate_with_material_request()
self.validate_batch()
self.validate_inspection()
# self.validate_fg_completed_qty()
self.validate_fg_completed_qty()
self.validate_difference_account()
self.set_job_card_data()
self.set_purpose_for_stock_entry()