Compare commits
No commits in common. "45c03051a0d44bd43339e726216d3b6abca60b02" and "65c6f38ef384d7c500ade82189ae82023cee73ea" have entirely different histories.
45c03051a0
...
65c6f38ef3
|
@ -757,8 +757,7 @@ class BusinessController extends AbstractController
|
||||||
$docs = $entityManager->getRepository(HesabdariDoc::class)->findBy([
|
$docs = $entityManager->getRepository(HesabdariDoc::class)->findBy([
|
||||||
'bid' => $buss,
|
'bid' => $buss,
|
||||||
'year' => $year,
|
'year' => $year,
|
||||||
'money' => $acc['money'],
|
'money' => $acc['money']
|
||||||
'isApproved' => true
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$rows = $entityManager->getRepository(HesabdariRow::class)->findBy([
|
$rows = $entityManager->getRepository(HesabdariRow::class)->findBy([
|
||||||
|
@ -772,8 +771,8 @@ class BusinessController extends AbstractController
|
||||||
'bid' => $buss,
|
'bid' => $buss,
|
||||||
'year' => $year,
|
'year' => $year,
|
||||||
'type' => 'buy',
|
'type' => 'buy',
|
||||||
'money' => $acc['money'],
|
'money' => $acc['money']
|
||||||
'isApproved' => true
|
|
||||||
]);
|
]);
|
||||||
$buysTotal = 0;
|
$buysTotal = 0;
|
||||||
$buysToday = 0;
|
$buysToday = 0;
|
||||||
|
@ -795,8 +794,7 @@ class BusinessController extends AbstractController
|
||||||
'bid' => $buss,
|
'bid' => $buss,
|
||||||
'year' => $year,
|
'year' => $year,
|
||||||
'type' => 'sell',
|
'type' => 'sell',
|
||||||
'money' => $acc['money'],
|
'money' => $acc['money']
|
||||||
'isApproved' => true
|
|
||||||
]);
|
]);
|
||||||
$sellsTotal = 0;
|
$sellsTotal = 0;
|
||||||
$sellsToday = 0;
|
$sellsToday = 0;
|
||||||
|
@ -818,8 +816,7 @@ class BusinessController extends AbstractController
|
||||||
'bid' => $buss,
|
'bid' => $buss,
|
||||||
'year' => $year,
|
'year' => $year,
|
||||||
'type' => 'person_send',
|
'type' => 'person_send',
|
||||||
'money' => $acc['money'],
|
'money' => $acc['money']
|
||||||
'isApproved' => true
|
|
||||||
]);
|
]);
|
||||||
$sendsTotal = 0;
|
$sendsTotal = 0;
|
||||||
$sendsToday = 0;
|
$sendsToday = 0;
|
||||||
|
@ -841,8 +838,7 @@ class BusinessController extends AbstractController
|
||||||
'bid' => $buss,
|
'bid' => $buss,
|
||||||
'year' => $year,
|
'year' => $year,
|
||||||
'type' => 'person_receive',
|
'type' => 'person_receive',
|
||||||
'money' => $acc['money'],
|
'money' => $acc['money']
|
||||||
'isApproved' => true
|
|
||||||
]);
|
]);
|
||||||
$recsTotal = 0;
|
$recsTotal = 0;
|
||||||
$recsToday = 0;
|
$recsToday = 0;
|
||||||
|
|
Loading…
Reference in a new issue