d3c006cbbcc8c7548ea859aff620294ec18a6be8
[kivitendo-erp.git] / menus / user / 00-erp.yaml
1 # This is the main menu config file for user space menu entries.
2 #
3 # Each menu entry can have the following properties:
4 #
5 # parent:  the id of a higher node in the tree, top-level node if missing
6 # id:      a unique identifier used by parent links and for overloading
7 # name:    translatable text for display
8 # icon:    stripped name of an icon for this menu entry
9 # order:   numeric value. lower will be displayed first
10 # access:  boolean expression of the rights needed to display and access this entry
11 #          ( ) & | are supported.  if binary operator is missing the last
12 #          operator in same scope is repeated, or "|" if none used in scope
13 #          yet. client config entries can be used as rights by prefixing them
14 #          with "client/".
15 #          ! is supported to negate the subsequent expression.
16 #          If missing, access will be granted.
17 #
18 #          Example:
19 #            client/feature_default_enabled | ( feature & system )
20 #
21 # href:   fully qualified external link
22 # module: defaults to "controller.pl". Should not be present if the link is for
23 #         Controller::Base dispatching to enable routing. Otherwise this
24 #         script will be used.
25 # target: target window for link. ex: "_blank"
26 # params: additional url parameter
27 ---
28 - id: master_data
29   name: Master Data
30   icon: master_data
31   order: 100
32 - parent: master_data
33   id: master_data_add_customer
34   name: Add Customer
35   icon: customer_add
36   order: 100
37   access: customer_vendor_edit
38   params:
39     action: CustomerVendor/add
40     db: customer
41 - parent: master_data
42   id: master_data_add_vendor
43   name: Add Vendor
44   icon: vendor_add
45   order: 200
46   access: customer_vendor_edit
47   params:
48     action: CustomerVendor/add
49     db: vendor
50 - parent: master_data
51   id: master_data_add_part
52   name: Add Part
53   icon: part_add
54   order: 300
55   access: part_service_assembly_edit
56   params:
57     action: Part/add_part
58 - parent: master_data
59   id: master_data_add_service
60   name: Add Service
61   icon: service_add
62   order: 400
63   access: part_service_assembly_edit
64   params:
65     action: Part/add_service
66 - parent: master_data
67   id: master_data_add_assembly
68   name: Add Assembly
69   icon: assembly_add
70   order: 500
71   access: part_service_assembly_edit
72   params:
73     action: Part/add_assembly
74 - parent: master_data
75   id: master_data_add_assortment
76   name: Add Assortment
77   icon: assortment_add
78   order: 550
79   access: part_service_assembly_edit & client/feature_experimental
80   params:
81     action: Part/add_assortment
82 - parent: master_data
83   id: master_data_add_project
84   name: Add Project
85   icon: project_add
86   order: 600
87   access: project_edit
88   params:
89     action: Project/new
90 - parent: master_data
91   id: master_data_add_requirement_spec_template
92   name: Add Requirement Spec Template
93   order: 700
94   access: requirement_spec_edit
95   params:
96     action: RequirementSpec/new
97     is_template: 1
98 - parent: master_data
99   id: master_data_update_prices
100   name: Update Prices
101   icon: prices_update
102   order: 800
103   access: part_service_assembly_edit
104   params:
105     action: PartsPriceUpdate/search_update_prices
106 - parent: master_data
107   id: master_data_price_rules
108   name: Price Rules
109   order: 900
110   access: part_service_assembly_edit
111   params:
112     action: PriceRule/list
113     filter.obsolete: 0
114 - parent: master_data
115   id: master_data_reports
116   name: Reports
117   icon: master_data_report
118   order: 1000
119 - parent: master_data_reports
120   id: master_data_reports_customers
121   name: Customers
122   icon: customer_report
123   order: 100
124   access: customer_vendor_edit
125   params:
126     action: CustomerVendor/search
127     db: customer
128 - parent: master_data_reports
129   id: master_data_reports_vendors
130   name: Vendors
131   icon: vendor_report
132   order: 200
133   access: customer_vendor_edit
134   params:
135     action: CustomerVendor/search
136     db: vendor
137 - parent: master_data_reports
138   id: master_data_reports_contacts
139   name: Contacts
140   order: 300
141   access: customer_vendor_edit
142   params:
143     action: CustomerVendor/search_contact
144     db: customer
145 - parent: master_data_reports
146   id: master_data_reports_articles
147   name: Articles
148   icon: part_report
149   order: 500
150   access: part_service_assembly_details
151   module: ic.pl
152   params:
153     action: search
154     searchitems: article
155 - parent: master_data_reports
156   id: master_data_reports_projects
157   name: Projects
158   icon: project_report
159   order: 700
160   access: project_edit
161   params:
162     action: Project/list
163     filter.active: active
164     filter.valid: valid
165 - parent: master_data_reports
166   id: master_data_reports_requirement_spec_templates
167   name: Requirement Spec Templates
168   order: 800
169   access: requirement_spec_edit
170   params:
171     action: RequirementSpec/list
172     is_template: 1
173 - id: ar
174   name: AR
175   icon: ar
176   order: 200
177 - parent: ar
178   id: ar_add_requirement_spec
179   name: Add Requirement Spec
180   order: 100
181   access: requirement_spec_edit
182   params:
183     action: RequirementSpec/new
184 - parent: ar
185   id: ar_add_quotation
186   name: Add Quotation
187   icon: quotation_add
188   order: 200
189   access: sales_quotation_edit
190   module: oe.pl
191   params:
192     action: add
193     type: sales_quotation
194 - parent: ar
195   id: ar_add_sales_order
196   name: Add Sales Order
197   icon: sales_order_add
198   order: 300
199   access: sales_order_edit
200   module: oe.pl
201   params:
202     action: add
203     type: sales_order
204 - parent: ar
205   id: ar_add_delivery_order
206   name: Add Delivery Order
207   icon: delivery_order_add
208   order: 400
209   access: sales_delivery_order_edit
210   module: do.pl
211   params:
212     action: add
213     type: sales_delivery_order
214 - parent: ar
215   id: ar_add_sales_invoice
216   name: Add Sales Invoice
217   icon: sales_invoice_add
218   order: 500
219   access: invoice_edit
220   module: is.pl
221   params:
222     action: add
223     type: invoice
224 - parent: ar
225   id: ar_add_credit_note
226   name: Add Credit Note
227   icon: credit_note_add
228   order: 600
229   access: invoice_edit
230   module: is.pl
231   params:
232     action: add
233     type: credit_note
234 - parent: ar
235   id: ar_add_dunning
236   name: Add Dunning
237   icon: dunning_add
238   order: 700
239   access: dunning_edit
240   module: dn.pl
241   params:
242     action: add
243 - parent: ar
244   id: ar_add_letter
245   name: Add Letter
246   order: 800
247   access: sales_letter_edit
248   params:
249     action: Letter/add
250     is_sales: 1
251 - parent: ar
252   id: ar_invoices
253   name: Invoices
254   icon: sales_invoice_add
255   order: 850
256 - parent: ar_invoices
257   id: ar_invoices_mass_add_sales_invoice
258   name: Mass Create Print Sales Invoice from Delivery Order
259   order: 100
260   access: invoice_edit
261   params:
262     noshow: 1
263     action: MassInvoiceCreatePrint/list_sales_delivery_orders
264 - parent: ar
265   id: ar_reports
266   name: Reports
267   icon: ar_report
268   order: 900
269 - parent: ar_reports
270   id: ar_reports_requirement_specs
271   name: Requirement Specs
272   order: 100
273   access: requirement_spec_edit
274   params:
275     action: RequirementSpec/list
276 - parent: ar_reports
277   id: ar_reports_quotations
278   name: Quotations
279   icon: report_quotations
280   order: 200
281   access: sales_quotation_edit
282   module: oe.pl
283   params:
284     action: search
285     type: sales_quotation
286 - parent: ar_reports
287   id: ar_reports_sales_orders
288   name: Sales Orders
289   icon: report_sales_orders
290   order: 300
291   access: sales_order_edit
292   module: oe.pl
293   params:
294     action: search
295     type: sales_order
296 - parent: ar_reports
297   id: ar_reports_delivery_orders
298   name: Delivery Orders
299   icon: delivery_order_report
300   order: 400
301   access: sales_delivery_order_edit
302   module: do.pl
303   params:
304     action: search
305     type: sales_delivery_order
306 - parent: ar_reports
307   id: ar_reports_invoices_credit_notes_ar_transactions
308   name: Invoices, Credit Notes & AR Transactions
309   icon: invoices_report
310   order: 500
311   access: invoice_edit
312   module: ar.pl
313   params:
314     action: search
315     nextsub: ar_transactions
316 - parent: ar_reports
317   id: ar_reports_sales_report
318   name: Sales Report
319   order: 600
320   access: invoice_edit
321   module: vk.pl
322   params:
323     action: search_invoice
324     nextsub: invoice_transactions
325 - parent: ar_reports
326   id: ar_reports_dunnings
327   name: Dunnings
328   icon: dunnings_report
329   order: 700
330   access: dunning_edit
331   module: dn.pl
332   params:
333     action: search
334 - parent: ar_reports
335   id: ar_order_item_search
336   name: Order item search
337   order: 750
338   access: sales_order_edit
339   params:
340     action: OrderItem/search
341 - parent: ar_reports
342   id: ar_reports_delivery_plan
343   name: Delivery Plan
344   order: 800
345   access: delivery_plan
346   params:
347     action: DeliveryPlan/list
348     vc: customer
349 - parent: ar_reports
350   id: ar_reports_delivery_value_report
351   name: Delivery Value Report
352   order: 900
353   access: delivery_value_report
354   params:
355     action: DeliveryValueReport/list
356     vc: customer
357 - parent: ar_reports
358   id: ar_reports_financial_controlling
359   name: Financial Controlling
360   order: 1000
361   access: sales_order_edit
362   params:
363     action: FinancialControllingReport/list
364 - parent: ar_reports
365   id: ar_reports_letters
366   name: Letters
367   order: 1100
368   access: sales_letter_report
369   params:
370     action: Letter/list
371     is_sales: 1
372 - id: webshop
373   name: Webshop
374   order: 250
375 - parent: webshop
376   id: webshop_import
377   name: Webshop Import
378   access: shop_order
379   params:
380     action: ShopOrder/list
381     filter.transferred:eq_ignore_empty: 0
382     filter.obsolete: 0
383     db: shop_orders
384     sort_by: shop_ordernumber
385 - parent: webshop
386   id: webshop_articles
387   name: Webshop articles
388   access: shop_part_edit
389   params:
390     action: ShopPart/list_articles
391     db: shop_parts
392     sort_by: part.onhand
393 - id: ap
394   name: AP
395   icon: ap
396   order: 300
397 - parent: ap
398   id: ap_add_rfq
399   name: Add RFQ
400   icon: rfq_add
401   order: 100
402   access: request_quotation_edit
403   module: oe.pl
404   params:
405     action: add
406     type: request_quotation
407 - parent: ap
408   id: ap_add_purchase_order
409   name: Add Purchase Order
410   icon: purchase_order_add
411   order: 200
412   access: purchase_order_edit
413   module: oe.pl
414   params:
415     action: add
416     type: purchase_order
417 - parent: ap
418   id: ap_add_delivery_note
419   name: Add Delivery Note
420   order: 300
421   access: client/allow_new_purchase_delivery_order & purchase_delivery_order_edit
422   module: do.pl
423   params:
424     action: add
425     type: purchase_delivery_order
426 - parent: ap
427   id: ap_add_vendor_invoice
428   name: Add Vendor Invoice
429   order: 400
430   access: client/allow_new_purchase_invoice & vendor_invoice_edit
431   module: ir.pl
432   params:
433     action: add
434     type: invoice
435 - parent: ap
436   id: ap_add_letter
437   name: Add Letter
438   order: 450
439   access: purchase_letter_edit
440   params:
441     action: Letter/add
442     is_sales: 0
443 - parent: ap
444   id: ap_reports
445   name: Reports
446   icon: ap_report
447   order: 500
448 - parent: ap_reports
449   id: ap_reports_rfqs
450   name: RFQs
451   icon: rfq_report
452   order: 100
453   access: request_quotation_edit
454   module: oe.pl
455   params:
456     action: search
457     type: request_quotation
458 - parent: ap_reports
459   id: ap_reports_purchase_orders
460   name: Purchase Orders
461   icon: purchase_order_report
462   order: 200
463   access: purchase_order_edit
464   module: oe.pl
465   params:
466     action: search
467     type: purchase_order
468 - parent: ap_reports
469   id: ap_reports_delivery_orders
470   name: Delivery Orders
471   order: 300
472   access: purchase_delivery_order_edit
473   module: do.pl
474   params:
475     action: search
476     type: purchase_delivery_order
477 - parent: ap_reports
478   id: ap_reports_vendor_invoices_ap_transactions
479   name: Vendor Invoices & AP Transactions
480   order: 400
481   access: vendor_invoice_edit
482   module: ap.pl
483   params:
484     action: search
485 - parent: ap_reports
486   id: ap_reports_delivery_plan
487   name: Delivery Plan
488   order: 500
489   access: delivery_plan
490   params:
491     action: DeliveryPlan/list
492     vc: vendor
493 - parent: ap_reports
494   id: ap_reports_delivery_value_report
495   name: Delivery Value Report
496   order: 600
497   access: delivery_value_report
498   params:
499     action: DeliveryValueReport/list
500     vc: vendor
501 - parent: ap_reports
502   id: ap_reports_letters
503   name: Letters
504   order: 1100
505   access: purchase_letter_report
506   params:
507     action: Letter/list
508     is_sales: 0
509 - id: warehouse
510   name: Warehouse
511   icon: warehouse
512   order: 400
513 - parent: warehouse
514   id: warehouse_stock
515   name: Stock
516   order: 100
517   access: warehouse_management
518   params:
519     action: Inventory/stock_in
520 - parent: warehouse
521   id: warehouse_produce_assembly
522   name: Produce Assembly
523   icon: assembly_produce
524   order: 200
525   access: warehouse_management
526   module: wh.pl
527   params:
528     action: transfer_warehouse_selection
529     trans_type: assembly
530 - parent: warehouse
531   id: warehouse_transfer
532   name: Transfer
533   order: 300
534   access: warehouse_management
535   module: wh.pl
536   params:
537     action: transfer_warehouse_selection
538     trans_type: transfer
539 - parent: warehouse
540   id: warehouse_removal
541   name: Removal
542   order: 400
543   access: warehouse_management
544   module: wh.pl
545   params:
546     action: transfer_warehouse_selection
547     trans_type: removal
548 - parent: warehouse
549   id: warehouse_stocktaking
550   name: Stocktaking
551   order: 450
552   access: warehouse_management
553   params:
554     action: Inventory/stocktaking
555 - parent: warehouse
556   id: warehouse_reports
557   name: Reports
558   order: 500
559 - parent: warehouse_reports
560   id: warehouse_reports_warehouse_content
561   name: Warehouse content
562   order: 100
563   access: warehouse_contents | warehouse_management
564   module: wh.pl
565   params:
566     action: report
567 - parent: warehouse_reports
568   id: warehouse_reports_whjournal
569   name: WHJournal
570   order: 200
571   access: warehouse_management
572   module: wh.pl
573   params:
574     action: journal
575 - parent: warehouse_reports
576   id: warehouse_reports_whusage
577   name: WHUsage
578   icon: warehouse_usage
579   order: 300
580   access: warehouse_contents | warehouse_management
581   params:
582     action: Inventory/stock_usage
583 - parent: warehouse_reports
584   id: warehouse_stocktaking_journal
585   name: Stocktaking Journal
586   order: 400
587   access: warehouse_contents | warehouse_management
588   params:
589     action: Inventory/stocktaking_journal
590 - id: general_ledger
591   name: General Ledger
592   icon: gl
593   order: 500
594 - parent: general_ledger
595   id: general_ledger_add_transaction
596   name: Add Transaction
597   icon: transaction_add
598   order: 100
599   access: gl_transactions
600   module: gl.pl
601   params:
602     action: add
603 - parent: general_ledger
604   id: general_ledger_add_ar_transaction
605   name: Add AR Transaction
606   icon: ar_transaction_add
607   order: 200
608   access: ar_transactions
609   module: ar.pl
610   params:
611     action: add
612 - parent: general_ledger
613   id: general_ledger_add_ap_transaction
614   name: Add AP Transaction
615   icon: ap_transaction_add
616   order: 300
617   access: ap_transactions
618   module: ap.pl
619   params:
620     action: add
621 - parent: general_ledger
622   id: general_ledger_datev_export_assistent
623   name: DATEV - Export Assistent
624   icon: datev
625   order: 400
626   access: datev_export & client/feature_datev
627   module: datev.pl
628   params:
629     action: export
630 - parent: general_ledger
631   id: general_ledger_gobd_export
632   name: GoBD Export
633   icon: gobd
634   order: 450
635   access: general_ledger
636   params:
637     action: GoBD/filter
638 - parent: general_ledger
639   id: general_ledger_cbob_transactions
640   name: CB/OB Transactions
641   icon: cbob
642   order: 470
643   access: general_ledger
644   params:
645     action: YearEndTransactions/filter
646 - parent: general_ledger
647   id: general_ledger_reports
648   name: Reports
649   icon: gl_report
650   order: 500
651 - parent: general_ledger_reports
652   id: general_ledger_reports_ar_aging
653   name: AR Aging
654   icon: ar_aging
655   order: 100
656   access: general_ledger
657   module: rp.pl
658   params:
659     action: report
660     report: ar_aging
661 - parent: general_ledger_reports
662   id: general_ledger_reports_ap_aging
663   name: AP Aging
664   icon: ap_aging
665   order: 200
666   access: general_ledger
667   module: rp.pl
668   params:
669     action: report
670     report: ap_aging
671 - parent: general_ledger_reports
672   id: general_ledger_reports_journal
673   name: Journal
674   icon: journal
675   order: 300
676   access: general_ledger | gl_transactions
677   module: gl.pl
678   params:
679     action: search
680 - id: cash
681   name: Cash
682   icon: cash
683   order: 600
684 - parent: cash
685   id: cash_receipt
686   name: Receipt
687   icon: receipt
688   order: 100
689   access: cash
690   module: cp.pl
691   params:
692     action: payment
693     vc: customer
694     type: receipt
695 - parent: cash
696   id: cash_payment
697   name: Payment
698   icon: payment
699   order: 200
700   access: cash
701   module: cp.pl
702   params:
703     action: payment
704     vc: vendor
705     type: check
706 - parent: cash
707   id: cash_bank_collection_via_sepa
708   name: Bank collection via SEPA
709   order: 300
710   access: cash
711   module: sepa.pl
712   params:
713     action: bank_transfer_add
714     vc: customer
715 - parent: cash
716   id: cash_bank_transfer_via_sepa
717   name: Bank transfer via SEPA
718   order: 400
719   access: cash
720   module: sepa.pl
721   params:
722     action: bank_transfer_add
723     vc: vendor
724 - parent: cash
725   id: cash_bank_import_menu
726   name: Bank Import
727   order: 500
728   access: bank_transaction
729 - parent: cash_bank_import_menu
730   id: cash_bank_import_csv
731   name: Custom CSV format
732   order: 100
733   params:
734     action: CsvImport/new
735     profile.type: bank_transactions
736 - parent: cash_bank_import_menu
737   id: cash_bank_import_mt940
738   name: SWIFT MT940 format
739   order: 200
740   params:
741     action: BankImport/upload_mt940
742 - parent: cash
743   id: cash_bank_transactions_mt940
744   name: Bank transactions MT940
745   order: 600
746   access: bank_transaction
747   params:
748     action: BankTransaction/search
749 - parent: cash
750   id: cash_reconciliation_with_bank
751   name: Reconciliation with bank
752   order: 700
753   access: bank_transaction
754   params:
755     action: Reconciliation/search
756 - parent: cash
757   id: cash_reconciliation
758   name: Reconciliation
759   icon: reconcilliation
760   order: 800
761   access: cash
762   module: rc.pl
763   params:
764     action: reconciliation
765 - parent: cash
766   id: cash_reports
767   name: Reports
768   icon: cash_report
769   order: 900
770 - parent: cash_reports
771   id: cash_reports_receipts
772   name: Receipts
773   icon: receipt_report
774   order: 100
775   access: cash
776   module: rp.pl
777   params:
778     action: report
779     report: receipts
780 - parent: cash_reports
781   id: cash_reports_payments
782   name: Payments
783   icon: payment_report
784   order: 200
785   access: cash
786   module: rp.pl
787   params:
788     action: report
789     report: payments
790 - parent: cash_reports
791   id: cash_reports_bank_collections_via_sepa
792   name: Bank collections via SEPA
793   order: 300
794   access: cash
795   module: sepa.pl
796   params:
797     action: bank_transfer_search
798     vc: customer
799 - parent: cash_reports
800   id: cash_reports_bank_transfers_via_sepa
801   name: Bank transfers via SEPA
802   order: 400
803   access: cash
804   module: sepa.pl
805   params:
806     action: bank_transfer_search
807     vc: vendor
808 - parent: cash_reports
809   id: cash_reports_bank_transactions
810   name: Bank transactions
811   order: 500
812   access: bank_transaction
813   params:
814     action: BankTransaction/list_all
815 - id: reports
816   name: Reports
817   icon: report
818   order: 700
819 - parent: reports
820   id: reports_chart_of_accounts
821   name: Chart of Accounts
822   icon: chart_of_accounts
823   order: 100
824   access: report
825   module: ca.pl
826   params:
827     action: chart_of_accounts
828 - parent: reports
829   id: reports_trial_balance
830   name: Trial Balance
831   order: 200
832   access: report
833   module: rp.pl
834   params:
835     action: report
836     report: trial_balance
837 - parent: reports
838   id: reports_erfolgsrechnung
839   name: Erfolgsrechnung
840   icon: income_statement
841   order: 300
842   access: report & client/feature_erfolgsrechnung
843   module: rp.pl
844   params:
845     action: report
846     report: erfolgsrechnung
847 - parent: reports
848   id: reports_income_statement
849   name: Income Statement
850   icon: income_statement
851   order: 300
852   access: report & client/feature_eurechnung
853   module: rp.pl
854   params:
855     action: report
856     report: income_statement
857 - parent: reports
858   id: reports_bwa
859   name: BWA
860   order: 400
861   access: report & client/feature_eurechnung
862   module: rp.pl
863   params:
864     action: report
865     report: bwa
866 - parent: reports
867   id: reports_balance_sheet
868   name: Balance Sheet
869   icon: balance_sheet
870   order: 500
871   access: report & client/feature_balance
872   module: rp.pl
873   params:
874     action: report
875     report: balance_sheet
876 - parent: reports
877   id: reports_ustva
878   name: UStVa
879   icon: ustva
880   order: 600
881   access: advance_turnover_tax_return & client/feature_ustva
882   module: ustva.pl
883   params:
884     action: report
885 - parent: reports
886   id: reports_projecttransactions
887   name: Projecttransactions
888   order: 700
889   access: report
890   module: rp.pl
891   params:
892     action: report
893     report: projects
894 - parent: reports
895   id: reports_financial_overview
896   name: Financial Overview
897   order: 800
898   access: report
899   params:
900     action: FinancialOverview/list
901 - parent: reports
902   id: reports_liquidity_projection
903   name: Liquidity projection
904   order: 900
905   access: report
906   params:
907     action: LiquidityProjection/show
908 - id: batch_printing
909   name: Batch Printing
910   icon: printing
911   order: 800
912   access: batch_printing
913 - parent: batch_printing
914   id: batch_printing_sales_invoices
915   name: Sales Invoices
916   icon: sales_invoice_printing
917   order: 100
918   access: invoice_edit
919   module: bp.pl
920   params:
921     action: search
922     vc: customer
923     type: invoice
924 - parent: batch_printing
925   id: batch_printing_sales_orders
926   name: Sales Orders
927   icon: sales_order_printing
928   order: 200
929   access: sales_order_edit
930   module: bp.pl
931   params:
932     action: search
933     type: sales_order
934     vc: customer
935 - parent: batch_printing
936   id: batch_printing_quotations
937   name: Quotations
938   icon: quotation_printing
939   order: 300
940   access: sales_quotation_edit
941   module: bp.pl
942   params:
943     action: search
944     vc: customer
945     type: sales_quotation
946 - parent: batch_printing
947   id: batch_printing_packing_lists
948   name: Packing Lists
949   icon: package_lists
950   order: 400
951   access: invoice_edit | sales_order_edit
952   module: bp.pl
953   params:
954     action: search
955     type: packing_list
956     vc: customer
957 - parent: batch_printing
958   id: batch_printing_purchase_orders
959   name: Purchase Orders
960   icon: purchase_order_printing
961   order: 500
962   access: purchase_order_edit
963   module: bp.pl
964   params:
965     action: search
966     type: purchase_order
967     vc: vendor
968 - parent: batch_printing
969   id: batch_printing_rfqs
970   name: RFQs
971   icon: rfq_printing
972   order: 600
973   access: request_quotation_edit
974   module: bp.pl
975   params:
976     action: search
977     vc: vendor
978     type: request_quotation
979 - parent: batch_printing
980   id: batch_printing_checks
981   name: Checks
982   order: 700
983   access: cash
984   module: bp.pl
985   params:
986     action: search
987     type: check
988     vc: vendor
989 - parent: batch_printing
990   id: batch_printing_receipts
991   name: Receipts
992   icon: receipt_printing
993   order: 800
994   access: cash
995   module: bp.pl
996   params:
997     action: search
998     vc: customer
999     type: receipt
1000 - id: productivity
1001   name: Productivity
1002   icon: productivity
1003   order: 900
1004   access: productivity
1005 - parent: productivity
1006   id: productivity_show_todo_list
1007   name: Show TODO list
1008   order: 100
1009   module: todo.pl
1010   params:
1011     action: show_todo_list
1012 - parent: productivity
1013   id: productivity_add_follow_up
1014   name: Add Follow-Up
1015   order: 200
1016   module: fu.pl
1017   params:
1018     action: add
1019 - parent: productivity
1020   id: productivity_edit_access_rights
1021   name: Edit Access Rights
1022   order: 300
1023   module: fu.pl
1024   params:
1025     action: edit_access_rights
1026 - parent: productivity
1027   id: productivity_reports
1028   name: Reports
1029   order: 400
1030 - parent: productivity_reports
1031   id: productivity_reports_follow_ups
1032   name: Follow-Ups
1033   order: 100
1034   module: fu.pl
1035   params:
1036     action: search
1037 - parent: productivity_reports
1038   id: productivity_reports_email_journal
1039   name: Email journal
1040   order: 200
1041   module: controller.pl
1042   icon: mail_journal
1043   params:
1044     action: EmailJournal/list
1045 - id: system
1046   name: System
1047   icon: system
1048   order: 1000
1049   access: config
1050 - parent: system
1051   id: system_client_configuration
1052   name: Client Configuration
1053   order: 100
1054   access: admin
1055   params:
1056     action: ClientConfig/edit
1057 - parent: system
1058   id: system_ustva_einstellungen
1059   name: UStVa Einstellungen
1060   order: 200
1061   access: client/feature_ustva
1062   module: ustva.pl
1063   params:
1064     action: config_step1
1065 - parent: system
1066   id: system_edit_dunning
1067   name: Edit Dunning
1068   order: 300
1069   module: dn.pl
1070   params:
1071     action: edit_config
1072 - parent: system
1073   id: system_chart_of_accounts
1074   name: Chart of Accounts
1075   order: 400
1076 - parent: system_chart_of_accounts
1077   id: system_chart_of_accounts_add_account
1078   name: Add Account
1079   order: 100
1080   module: am.pl
1081   params:
1082     action: add_account
1083 - parent: system_chart_of_accounts
1084   id: system_chart_of_accounts_list_accounts
1085   name: List Accounts
1086   order: 200
1087   module: am.pl
1088   params:
1089     action: list_account
1090 - parent: system_chart_of_accounts
1091   id: system_chart_of_accounts_report_configuration_overview
1092   name: Report configuration overview
1093   order: 300
1094   params:
1095     action: Chart/show_report_configuration_overview
1096 - parent: system
1097   id: system_buchungsgruppen
1098   name: Booking groups
1099   order: 500
1100   params:
1101     action: Buchungsgruppen/list
1102 - parent: system
1103   id: system_taxzones
1104   name: Taxzones
1105   order: 600
1106   params:
1107     action: Taxzones/list
1108 - parent: system
1109   id: system_taxes
1110   name: Taxes
1111   order: 700
1112   module: am.pl
1113   params:
1114     action: list_tax
1115 - parent: system
1116   id: system_bank_accounts
1117   name: Bank accounts
1118   order: 800
1119   params:
1120     action: SimpleSystemSetting/list
1121     type: bank_account
1122 - parent: system
1123   id: system_partsgroups
1124   name: Partsgroups
1125   order: 900
1126   params:
1127     action: SimpleSystemSetting/list
1128     type: parts_group
1129 - parent: system
1130   id: system_part_classification
1131   name: Parts Classification
1132   icon: partsclassific
1133   order: 1100
1134   params:
1135     action: SimpleSystemSetting/list
1136     type: part_classification
1137 - parent: system
1138   id: system_pricegroups
1139   name: Pricegroups
1140   order: 1120
1141   params:
1142     action: SimpleSystemSetting/list
1143     type: pricegroup
1144 - parent: system
1145   id: system_edit_units
1146   name: Edit units
1147   order: 1140
1148   module: am.pl
1149   params:
1150     action: edit_units
1151 - parent: system
1152   id: system_price_factors
1153   name: Price Factors
1154   order: 1200
1155   params:
1156     action: SimpleSystemSetting/list
1157     type: price_factor
1158 - parent: system
1159   id: system_departments
1160   name: Departments
1161   order: 1300
1162   params:
1163     action: SimpleSystemSetting/list
1164     type: department
1165 - parent: system
1166   id: system_types_of_business
1167   name: Types of Business
1168   order: 1400
1169   params:
1170     action: SimpleSystemSetting/list
1171     type: business
1172 - parent: system
1173   id: system_project_types
1174   name: Project Types
1175   order: 1600
1176   params:
1177     action: SimpleSystemSetting/list
1178     type: project_type
1179 - parent: system
1180   id: system_project_status
1181   name: Project Status
1182   order: 1700
1183   params:
1184     action: SimpleSystemSetting/list
1185     type: project_status
1186 - parent: system
1187   id: system_requirement_specs
1188   name: Requirement specs
1189   order: 1800
1190 - parent: system_requirement_specs
1191   id: system_requirement_specs_pre_defined_texts
1192   name: Pre-defined Texts
1193   order: 100
1194   params:
1195     action: SimpleSystemSetting/list
1196     type: requirement_spec_predefined_text
1197 - parent: system_requirement_specs
1198   id: system_requirement_specs_requirement_spec_types
1199   name: Requirement Spec Types
1200   order: 200
1201   params:
1202     action: SimpleSystemSetting/list
1203     type: requirement_spec_type
1204 - parent: system_requirement_specs
1205   id: system_requirement_specs_requirement_spec_statuses
1206   name: Requirement Spec Statuses
1207   order: 300
1208   params:
1209     action: SimpleSystemSetting/list
1210     type: requirement_spec_status
1211 - parent: system_requirement_specs
1212   id: system_requirement_specs_complexities
1213   name: Complexities
1214   order: 400
1215   params:
1216     action: SimpleSystemSetting/list
1217     type: requirement_spec_complexity
1218 - parent: system_requirement_specs
1219   id: system_requirement_specs_risks
1220   name: Risks
1221   order: 500
1222   params:
1223     action: SimpleSystemSetting/list
1224     type: requirement_spec_risk
1225 - parent: system_requirement_specs
1226   id: system_requirement_specs_acceptance_statuses
1227   name: Acceptance Statuses
1228   order: 600
1229   params:
1230     action: SimpleSystemSetting/list
1231     type: requirement_spec_acceptance_status
1232 - parent: system
1233   id: system_languages_and_translations
1234   name: Languages and translations
1235   order: 1900
1236 - parent: system_languages_and_translations
1237   id: system_languages_and_translations_add_language
1238   name: Languages
1239   order: 100
1240   params:
1241     action: SimpleSystemSetting/list
1242     type: language
1243 - parent: system_languages_and_translations
1244   id: system_languages_and_translations_greetings
1245   name: Greetings
1246   order: 300
1247   module: generictranslations.pl
1248   params:
1249     action: edit_greetings
1250 - parent: system_languages_and_translations
1251   id: system_languages_and_translations_sepa_strings
1252   name: SEPA strings
1253   order: 400
1254   module: generictranslations.pl
1255   params:
1256     action: edit_sepa_strings
1257 - parent: system_languages_and_translations
1258   id: system_languages_and_translations_email_strings
1259   name: Preset email strings
1260   order: 500
1261   module: generictranslations.pl
1262   params:
1263     action: edit_email_strings
1264 - parent: system
1265   id: system_payment_terms
1266   name: Payment Terms
1267   order: 2000
1268   params:
1269     action: PaymentTerm/list
1270 - parent: system
1271   id: system_delivery_terms
1272   name: Delivery Terms
1273   order: 2100
1274   params:
1275     action: DeliveryTerm/list
1276 - parent: system
1277   id: system_manage_custom_variables
1278   name: Manage Custom Variables
1279   order: 2200
1280   params:
1281     action: CustomVariableConfig/list
1282 - parent: system
1283   id: system_warehouses
1284   name: Warehouses
1285   order: 2300
1286   module: am.pl
1287   params:
1288     action: list_warehouses
1289 - parent: system
1290   id: system_shops
1291   name: Web shops
1292   order: 2350
1293   access: edit_shop_config
1294   params:
1295     action: Shop/list
1296 - parent: system
1297   id: system_import_csv
1298   name: Import CSV
1299   order: 2400
1300 - parent: system_import_csv
1301   id: system_import_csv_customers_and_vendors
1302   name: Customers and vendors
1303   order: 100
1304   params:
1305     action: CsvImport/new
1306     profile.type: customers_vendors
1307 - parent: system_import_csv
1308   id: system_import_csv_contacts
1309   name: Contacts
1310   order: 200
1311   params:
1312     action: CsvImport/new
1313     profile.type: contacts
1314 - parent: system_import_csv
1315   id: system_import_csv_shipto
1316   name: Shipto
1317   order: 300
1318   params:
1319     action: CsvImport/new
1320     profile.type: addresses
1321 - parent: system_import_csv
1322   id: system_import_csv_parts
1323   name: Parts
1324   order: 400
1325   params:
1326     action: CsvImport/new
1327     profile.type: parts
1328 - parent: system_import_csv
1329   id: system_import_csv_inventories
1330   name: Inventories
1331   order: 500
1332   params:
1333     action: CsvImport/new
1334     profile.type: inventories
1335 - parent: system_import_csv
1336   id: system_import_csv_projects
1337   name: Projects
1338   order: 600
1339   params:
1340     action: CsvImport/new
1341     profile.type: projects
1342 - parent: system_import_csv
1343   id: system_import_csv_orders
1344   name: Orders
1345   order: 700
1346   params:
1347     action: CsvImport/new
1348     profile.type: orders
1349 - parent: system_import_csv
1350   id: system_import_csv_ar_transactions
1351   name: AR Transactions
1352   order: 800
1353   params:
1354     action: CsvImport/new
1355     profile.type: ar_transactions
1356 - parent: system
1357   id: system_templates
1358   name: Templates
1359   order: 2500
1360   access: admin
1361 - parent: system_templates
1362   id: system_templates_html_templates
1363   name: HTML Templates
1364   order: 100
1365   module: amtemplates.pl
1366   params:
1367     action: display_template_form
1368     type: templates
1369     format: html
1370 - parent: system_templates
1371   id: system_templates_latex_templates
1372   name: LaTeX Templates
1373   order: 200
1374   module: amtemplates.pl
1375   params:
1376     action: display_template_form
1377     format: tex
1378     type: templates
1379 - parent: system
1380   id: system_general_ledger_corrections
1381   name: General Ledger Corrections
1382   order: 2600
1383   module: acctranscorrections.pl
1384   params:
1385     action: analyze_filter
1386 - parent: system
1387   id: system_background_jobs_and_task_server
1388   name: Background jobs and task server
1389   order: 2700
1390   access: admin
1391 - parent: system_background_jobs_and_task_server
1392   id: system_background_jobs_and_task_server_list_current_background_jobs
1393   name: List current background jobs
1394   order: 100
1395   params:
1396     action: BackgroundJob/list
1397 - parent: system_background_jobs_and_task_server
1398   id: system_background_jobs_and_task_server_background_job_history
1399   name: Background job history
1400   order: 200
1401   params:
1402     action: BackgroundJobHistory/list
1403 - parent: system_background_jobs_and_task_server
1404   id: system_background_jobs_and_task_server_task_server_control
1405   name: Task server control
1406   order: 300
1407   params:
1408     action: TaskServer/show
1409 - parent: system
1410   id: system_audit_control
1411   name: Audit Control
1412   order: 2800
1413   module: am.pl
1414   params:
1415     action: audit_control
1416 - parent: system
1417   id: system_history_search_engine
1418   name: History Search Engine
1419   order: 2900
1420   module: am.pl
1421   params:
1422     action: show_history_search
1423 - parent: system
1424   id: system_employees
1425   name: Employees
1426   order: 3000
1427   access: admin
1428   params:
1429     action: Employee/list
1430 - id: program
1431   name: Program
1432   icon: program
1433   order: 1100
1434 - parent: program
1435   id: program_user_preferences
1436   name: User Preferences
1437   order: 100
1438   module: am.pl
1439   params:
1440     action: config
1441 - parent: program
1442   id: program_internal_phone_list
1443   name: Internal Phone List
1444   order: 200
1445   params:
1446     action: CTI/list_internal_extensions
1447 - parent: program
1448   id: program_version
1449   name: Version
1450   icon: version
1451   order: 300
1452   module: login.pl
1453   params:
1454     action: company_logo
1455     no_todo_list: 1
1456 - parent: program
1457   id: program_kivitendo_modul
1458   name: kivitendo modules
1459   order: 350
1460 - parent: program_kivitendo_modul
1461   id: program_kivitendo_modul_overview
1462   name: Overview kivitendo modules
1463   order: 100
1464   href: http://www.kivitendo-premium.de/module.shtml
1465   target: _blank
1466 - parent: program_kivitendo_modul
1467   id: program_kivitendo_modul_activate
1468   name: Activate kivitendo module
1469   order: 200
1470   href: http://www.kivitendo-premium.de/modul-aktivieren.shtml
1471   target: _blank
1472 - parent: program
1473   id: program_administration_area
1474   name: Administration area
1475   order: 400
1476   access: display_admin_link
1477   params:
1478     action: Admin/login
1479 - parent: program
1480   id: program_documentation_in_german_
1481   name: Documentation (in German)
1482   order: 500
1483   href: doc/kivitendo-Dokumentation.pdf
1484   target: _blank
1485 - parent: program
1486   id: program_kivitendo_website_external_
1487   name: kivitendo website (external)
1488   order: 600
1489   href: http://www.kivitendo.de/
1490   target: _blank
1491 - parent: program
1492   id: program_logout
1493   name: Logout
1494   icon: logout
1495   order: 700
1496   params:
1497     action: LoginScreen/logout