finishing to dev
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m41s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 42s
Build, Push and Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-05-14 22:50:44 +07:00
parent 2fabdf8fc9
commit 8307b9e66d
212 changed files with 2451 additions and 4493 deletions

View File

@@ -27,6 +27,16 @@
</svg>
</h3>
<div class="d-flex align-items-center mb-3">
<input type="hidden" name="show_product_price" value="0">
<input id="product_price" class="delete-checkbox-item multi-delete" type="checkbox"
name="show_product_price" value="1"
{{ is_null($product_setting) || is_null($product_setting->modules) || (optional($product_setting->modules)['show_product_price'] ?? false) ? 'checked' : '' }}>
<label for="product_price">
{{__('Product Price')}}
</label>
</div>
<div class="d-flex align-items-center mb-3">
<input type="hidden" name="show_product_code" value="0">
<input id="product_code" class="delete-checkbox-item multi-delete" type="checkbox"
@@ -35,13 +45,6 @@
<label for="product_code">{{__('Product Code')}}</label>
</div>
<div class="d-flex align-items-center mb-3">
<input type="hidden" name="show_hsn_code" value="0">
<input id="hsn_code" class="delete-checkbox-item multi-delete" type="checkbox" name="show_hsn_code" value="1"
{{ optional($product_setting?->modules)['show_hsn_code'] === '1' ? 'checked' : '' }}>
<label for="hsn_code">{{__('HSN Code')}}</label>
</div>
<div class="d-flex align-items-center mb-3">
<input type="hidden" name="show_product_stock" value="0">
<input id="stock" class="delete-checkbox-item multi-delete" type="checkbox"
@@ -54,7 +57,7 @@
<input type="hidden" name="show_product_unit" value="0">
<input id="unit" class="delete-checkbox-item multi-delete" type="checkbox"
name="show_product_unit" value="1"
{{ optional($product_setting?->modules)['show_product_unit'] === '1' ? 'checked' : '' }}>
{{ is_null($product_setting) || is_null($product_setting->modules) || (optional($product_setting->modules)['show_product_unit'] ?? false) ? 'checked' : '' }}>
<label for="unit">{{__('Product Unit')}}</label>
</div>
@@ -102,7 +105,7 @@
<input type="hidden" name="show_alert_qty" value="0">
<input id="quantity" class="delete-checkbox-item multi-delete" type="checkbox"
name="show_alert_qty" value="1"
{{ optional($product_setting?->modules)['show_alert_qty'] === '1' ? 'checked' : '' }}>
{{ is_null($product_setting) || is_null($product_setting->modules) || (optional($product_setting->modules)['show_alert_qty'] ?? false) ? 'checked' : '' }}>
<label for="quantity">{{__('Low Stock Alert')}}</label>
</div>
@@ -454,8 +457,6 @@ class="form-control mfg-my"
{{ optional($product_setting?->modules)['allow_product_discount'] === '1' ? 'checked' : '' }}>
<label for="allow_product_discount">{{ __('Product Discount') }}</label>
</div>
</div>
<div class="col-lg-12">