This commit is contained in:
2026-01-13 12:36:57 +03:00
commit ebe1f5bd00
29 changed files with 2295 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace API;
trait LadleUse
{
public function getData_crewAggregateWeight($params)
{
$query = "EXEC [Level3_KKC].[dbo].[crewAggregateWeight]
@bd = '".$params['dateStart']."',
@ed = '".$params['dateEnd']."'";
select_ru($query);
}
}