This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/app/models/stock_movement_line.rb
2021-08-23 10:26:02 +02:00

13 lines
264 B
Ruby

class StockMovementLine < ApplicationRecord
belongs_to :stock_movement
belongs_to :p_product_ref
acts_as_caching :fields => [:tot_amount_ht, :price_u_ht]
def ca_tot_amount_ht
if self.ct_tot_amount_ht
self.ct_tot_amount_ht
end
end
end