Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FactoryBot.define do
|
|
|
|
factory :sales_log do
|
|
|
|
created_by { FactoryBot.create(:user) }
|
|
|
|
owning_organisation { created_by.organisation }
|
|
|
|
managing_organisation { created_by.organisation }
|
|
|
|
created_at { Time.utc(2022, 2, 8, 16, 52, 15) }
|
|
|
|
updated_at { Time.utc(2022, 2, 8, 16, 52, 15) }
|
|
|
|
trait :completed do
|
|
|
|
purchid { "PC123" }
|
|
|
|
saledate { Time.utc(2022, 2, 2, 10, 36, 49) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|