update marketing
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 5m14s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 17s
Build, Push and Deploy / deploy-staging (push) Successful in 41s
Build, Push and Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-05-14 11:55:22 +07:00
parent f80fcc4c1b
commit 05fd3230b8
448 changed files with 17545 additions and 5128 deletions

View File

@@ -27,16 +27,6 @@
</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"
@@ -45,6 +35,13 @@
<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"
@@ -57,7 +54,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"
{{ is_null($product_setting) || is_null($product_setting->modules) || (optional($product_setting->modules)['show_product_unit'] ?? false) ? 'checked' : '' }}>
{{ optional($product_setting?->modules)['show_product_unit'] === '1' ? 'checked' : '' }}>
<label for="unit">{{__('Product Unit')}}</label>
</div>
@@ -105,7 +102,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"
{{ is_null($product_setting) || is_null($product_setting->modules) || (optional($product_setting->modules)['show_alert_qty'] ?? false) ? 'checked' : '' }}>
{{ optional($product_setting?->modules)['show_alert_qty'] === '1' ? 'checked' : '' }}>
<label for="quantity">{{__('Low Stock Alert')}}</label>
</div>
@@ -457,6 +454,8 @@ 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">