Possible fix for transactions under postgres
This commit is contained in:
parent
afc984a682
commit
ed0a14c468
1 changed files with 13 additions and 1 deletions
|
@ -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',
|
||||||
|
|
Reference in a new issue