Possible fix for transactions under postgres

This commit is contained in:
Tom Bloor 2019-07-14 18:47:48 +01:00
parent afc984a682
commit ed0a14c468

View file

@ -84,11 +84,23 @@ sub post_lcc_suppliers {
return 0 unless $lcc_import_ext_ref; return 0 unless $lcc_import_ext_ref;
my $columns = [qw/
sales.id
seller.id
organisation.id
organisation.name
organisation.street_name
organisation.town
organisation.postcode
organisation.country
/];
my $lcc_suppliers = $user->entity->purchases->search_related('seller',undef)->search( my $lcc_suppliers = $user->entity->purchases->search_related('seller',undef)->search(
undef, undef,
{ {
prefetch => ['sales', 'organisation'], prefetch => ['sales', 'organisation'],
group_by => 'seller.id', columns => $columns,
group_by => $columns,
'+select' => [ '+select' => [
{ {
'sum' => 'sales.value', 'sum' => 'sales.value',