fixed column issue

This commit is contained in:
Cüneyt Şentürk 2020-03-12 16:46:25 +03:00
parent c40b2b9f61
commit a13225047e

View File

@ -61,7 +61,7 @@ class Version205 extends Listener
DB::table('items') DB::table('items')
->where('id', $item_id) ->where('id', $item_id)
->update(['sales_price' => $invoice_item->price]); ->update(['sale_price' => $invoice_item->price]);
} }
} }