-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixed_assets.php
92 lines (71 loc) · 5.03 KB
/
fixed_assets.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<div class="kt-container kt-grid__item kt-grid__item--fluid kt-grid kt-grid--hor kt-grid--stretch">
<div class="kt-body kt-grid__item kt-grid__item--fluid kt-grid kt-grid--hor kt-grid--stretch" id="kt_body">
<div class="kt-content kt-grid__item kt-grid__item--fluid kt-grid kt-grid--hor" id="kt_content">
<!-- begin:: Content -->
<div class="kt-container kt-grid__item kt-grid__item--fluid">
<div class="kt-subheader kt-subheader-custom kt-grid__item">
<div class="kt-container ">
<div class="kt-subheader__main">
<h3 class="kt-subheader__title"><?= trans('FIXED ASSET') ?></h3>
</div>
</div>
</div>
<div class="row">
<?= createMenuTile('SA_SUPPLIERINVOICE',trans('Fixed Assets Purchase'),
trans('Fixed Assets Purchase'),'ERP/purchasing/po_entry_items.php?NewInvoice=Yes&FixedAsset=1',
'fa-balance-scale') ?>
<?= createMenuTile('SA_ASSETTRANSFER',trans('Fixed Assets Location Transfers'),
trans('Fixed Assets Location Transfers'),'ERP/inventory/transfers.php?NewTransfer=1&FixedAsset=1','fa-exchange-alt') ?>
<?= createMenuTile('SA_ASSETDISPOSAL',trans('Fixed Assets Disposal'),
trans('Fixed Assets Disposal'),'ERP/inventory/adjustments.php?NewAdjustment=1&FixedAsset=1','fa-strikethrough') ?>
<?= createMenuTile('SA_DENIED',trans('Fixed Assets Sale'),
trans('Fixed Assets Sale'),'ERP/sales/sales_order_entry.php?NewInvoice=0&FixedAsset=1','fa-chart-bar') ?>
<?= createMenuTile('SA_DEPRECIATION',trans('Process &Depreciation'),
trans('Process &Depreciation'),'ERP/fixed_assets/process_depreciation.php','fa-wave-square') ?>
<?= createMenuTile('SA_DEPRECIATION_CATEGORY',trans('Process &Depreciation Category Wise'),
trans('Process &Depreciation Category Wise'),'ERP/fixed_assets/process_category_depreciation.php','fa-sitemap') ?>
<?= createMenuTile('SA_ASSETALLOCATION',trans('Assets Allocation & Deallocation'),
trans('Assets Allocation & Deallocation'),'assets_allocation.php','fa-tasks') ?>
</div>
<div class="kt-subheader kt-subheader-custom kt-grid__item">
<div class="kt-container ">
<div class="kt-subheader__main">
<h3 class="kt-subheader__title"><?= trans('MASTERS') ?></h3>
</div>
</div>
</div>
<div class="row">
<?= createMenuTile('SA_ASSET',trans('Fixed Assets'),
trans('Fixed Assets'),'ERP/inventory/manage/items.php?FixedAsset=1',
'fa-hourglass-start') ?>
<?= createMenuTile('SA_ASSET_IMPORT',trans('Fixed Assets Import'),
trans('Fixed Assets Import'),'ERP/inventory/manage/items_import.php',
'fa-file-import') ?>
<?= createMenuTile('SA_INVENTORYLOCATION',trans('Fixed Assets &Locations'),
trans('Fixed Assets &Locations'),'ERP/inventory/manage/locations.php?FixedAsset=1','fa-map-marker-alt') ?>
<?= createMenuTile('SA_ASSETCATEGORY',trans('Fixed Assets Categories'),
trans('Fixed Assets Categories'),'ERP/inventory/manage/item_categories.php?FixedAsset=1','fa-object-group') ?>
<?= createMenuTile('SA_ASSETCLASS',trans('Fixed Assets Classes'),
trans('Fixed Assets Classes'),'ERP/fixed_assets/fixed_asset_classes.php','fa-boxes') ?>
</div>
<div class="kt-subheader kt-subheader-custom kt-grid__item">
<div class="kt-container ">
<div class="kt-subheader__main">
<h3 class="kt-subheader__title"><?= trans('INQUIRIES AND REPORTS') ?></h3>
</div>
</div>
</div>
<div class="row">
<?= createMenuTile('SA_ASSETSTRANSVIEW',trans('Fixed Assets Movements'),
trans('Fixed Assets Movements'),'ERP/inventory/inquiry/stock_movements.php?FixedAsset=1',
'fa-people-carry') ?>
<?= createMenuTile('SA_ASSETSANALYTIC',trans('Fixed Assets Inquiry'),
trans('Fixed Assets Inquiry'),'ERP/fixed_assets/inquiry/stock_inquiry.php?','fa-info') ?>
<?= createMenuTile('SA_ASSETSANALYTIC',trans('Fixed Assets Reports'),
trans('Fixed Assets Reports'),'ERP/reporting/reports_main.php?Class=7','fa-print') ?>
</div>
</div>
<!-- end:: Content -->
</div>
</div>
</div>