{assign var=totalFixedAssets value=0}
{assign var=totalCurrentAssets value=0}
{assign var=totalOwnerEquity value=0}
{assign var=totalnonCurrentLiabilities value=0}
{assign var=totalCurrentLiabilities value=0}
{assign var=totalAssets value=0}
{assign var=totalLiabilities value=0}
{assign var=i value=0}
{foreach $fixedAssets as $item}
| {$item->layingOrder} |
{for $foo = 0 to $item->notes step=1}
{/for}
{$item->customName}
|
{if $item->theValue != 0}
{$item->theValue}
{assign var=totalFixedAssets value=$totalFixedAssets+$item->theValue}
{/if}
|
{assign var=i value=$i+1}
{/foreach}
|
اجمالى الاصول الغير متداولة
|
{$totalFixedAssets}
|
{assign var=i value=0}
{foreach $currentAssets as $item}
{if $item->id !=381 && $item->id !=63}
| {$item->layingOrder} |
{for $foo = 0 to $item->notes step=1}
{/for}
{$item->customName}
|
{if $item->theValue != 0}
{$item->theValue}
{assign var=totalCurrentAssets value=$totalCurrentAssets+$item->theValue}
{/if}
|
{assign var=i value=$i+1}
{/if}
{/foreach}
|
اجمالى الاصول الغير متداولة
|
{$totalCurrentAssets}
|
|
اجمالى الاصول
|
{assign var=totalAssets value=$totalFixedAssets + $totalCurrentAssets}
{$totalAssets}
|
{assign var=i value=0}
{foreach $ownerequity as $item}
| {$item->layingOrder} |
{for $foo = 0 to $item->notes step=1}
{/for}
{if $item->notes == 1}{$item->customName} {else} {$item->customName} {/if}
|
{if $item->theValue != 0}
{$item->theValue}
{assign var=totalOwnerEquity value=$totalOwnerEquity + $item->theValue}
{/if}
|
{assign var=i value=$i+1}
{/foreach}
|
اجمالى حقوق الملكية
|
{$totalOwnerEquity}
|
{assign var=i value=0}
{foreach $nonCurrentLiabilities as $item}
| {$item->layingOrder} |
{for $foo = 0 to $item->notes step=1}
{/for}
{if $item->notes == 1}{$item->customName} {else} {$item->customName} {/if}
|
{if $item->theValue != 0}
{$item->theValue}
{assign var=totalnonCurrentLiabilities value=$totalnonCurrentLiabilities + $item->theValue}
{/if}
|
{assign var=i value=$i+1}
{/foreach}
|
اجمالى الالتزامات الغير متداولة
|
{$totalnonCurrentLiabilities}
|
{assign var=i value=0}
{foreach $currentLiabilities as $item}
{if $item->id != 95}
| {$item->layingOrder} |
{for $foo = 0 to $item->notes step=1}
{/for}
{if $item->notes == 1}{$item->customName} {else} {$item->customName} {/if}
|
{if $item->theValue != 0}
{$item->theValue}
{assign var=totalCurrentLiabilities value=$totalCurrentLiabilities + $item->theValue}
{/if}
|
{assign var=i value=$i+1}
{/if}
{/foreach}
|
اجمالى الالتزامات المتداولة
|
{$totalCurrentLiabilities}
|
|
اجمالى الالتزامات
|
{assign var=totalLiabilities value=$totalOwnerEquity + $totalnonCurrentLiabilities + $totalCurrentLiabilities}
{$totalLiabilities}
|