mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-25 09:29:43 -04:00
Fix PRICE_KIT_ITEMS mistake (#1450)
This commit is contained in:
@@ -808,7 +808,7 @@ class Sale_lib
|
||||
{
|
||||
$price = 0;
|
||||
}
|
||||
elseif($price_option == PRICE_ITEMS) // item kit plus stock items (assuming materials)
|
||||
elseif($price_option == PRICE_KIT_ITEMS) // item kit plus stock items (assuming materials)
|
||||
{
|
||||
if($item_kit_item['stock_type'] == ITEM) // stock item
|
||||
{
|
||||
|
||||
@@ -77,7 +77,7 @@
|
||||
'type'=>'radio',
|
||||
'id'=>'price_option',
|
||||
'value'=>2,
|
||||
'checked'=>$item_kit_info->price_option == PRICE_ITEMS)
|
||||
'checked'=>$item_kit_info->price_option == PRICE_KIT_ITEMS)
|
||||
); ?> <?php echo $this->lang->line('item_kits_kit_and_stock'); ?>
|
||||
</label>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user