Abteilungen bei Ansprechpersonen: SimpleSettings-Controller zum Editieren
[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_assortment
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   module: ar.pl
312   params:
313     action: search
314     nextsub: ar_transactions
315 - parent: ar_reports
316   id: ar_reports_sales_report
317   name: Sales Report
318   order: 600
319   access: invoice_edit
320   module: vk.pl
321   params:
322     action: search_invoice
323     nextsub: invoice_transactions
324 - parent: ar_reports
325   id: ar_reports_dunnings
326   name: Dunnings
327   icon: dunnings_report
328   order: 700
329   access: dunning_edit
330   module: dn.pl
331   params:
332     action: search
333 - parent: ar_reports
334   id: ar_order_item_search
335   name: Order item search
336   order: 750
337   access: sales_order_edit
338   params:
339     action: OrderItem/search
340 - parent: ar_reports
341   id: ar_reports_delivery_plan
342   name: Delivery Plan
343   order: 800
344   access: delivery_plan
345   params:
346     action: DeliveryPlan/list
347     vc: customer
348 - parent: ar_reports
349   id: ar_reports_delivery_value_report
350   name: Delivery Value Report
351   order: 900
352   access: delivery_value_report
353   params:
354     action: DeliveryValueReport/list
355     vc: customer
356 - parent: ar_reports
357   id: ar_reports_financial_controlling
358   name: Financial Controlling
359   order: 1000
360   access: sales_order_edit
361   params:
362     action: FinancialControllingReport/list
363 - parent: ar_reports
364   id: ar_reports_letters
365   name: Letters
366   order: 1100
367   access: sales_letter_report
368   params:
369     action: Letter/list
370     is_sales: 1
371 - id: webshop
372   name: Webshop
373   order: 250
374 - parent: webshop
375   id: webshop_import
376   name: Webshop Import
377   access: shop_order
378   params:
379     action: ShopOrder/list
380     filter.transferred:eq_ignore_empty: 0
381     filter.obsolete: 0
382     db: shop_orders
383     sort_by: shop_ordernumber
384 - parent: webshop
385   id: webshop_articles
386   name: Webshop articles
387   access: shop_part_edit
388   params:
389     action: ShopPart/list_articles
390     db: shop_parts
391     sort_by: part.onhand
392 - id: ap
393   name: AP
394   icon: ap
395   order: 300
396 - parent: ap
397   id: ap_add_rfq
398   name: Add RFQ
399   icon: rfq_add
400   order: 100
401   access: request_quotation_edit
402   module: oe.pl
403   params:
404     action: add
405     type: request_quotation
406 - parent: ap
407   id: ap_add_purchase_order
408   name: Add Purchase Order
409   icon: purchase_order_add
410   order: 200
411   access: purchase_order_edit
412   module: oe.pl
413   params:
414     action: add
415     type: purchase_order
416 - parent: ap
417   id: ap_add_delivery_note
418   name: Add Delivery Note
419   order: 300
420   access: client/allow_new_purchase_delivery_order & purchase_delivery_order_edit
421   module: do.pl
422   params:
423     action: add
424     type: purchase_delivery_order
425 - parent: ap
426   id: ap_add_vendor_invoice
427   name: Add Vendor Invoice
428   order: 400
429   access: client/allow_new_purchase_invoice & vendor_invoice_edit
430   module: ir.pl
431   params:
432     action: add
433     type: invoice
434 - parent: ap
435   id: ap_add_letter
436   name: Add Letter
437   order: 450
438   access: purchase_letter_edit
439   params:
440     action: Letter/add
441     is_sales: 0
442 - parent: ap
443   id: ap_reports
444   name: Reports
445   icon: ap_report
446   order: 500
447 - parent: ap_reports
448   id: ap_reports_rfqs
449   name: RFQs
450   icon: rfq_report
451   order: 100
452   access: request_quotation_edit
453   module: oe.pl
454   params:
455     action: search
456     type: request_quotation
457 - parent: ap_reports
458   id: ap_reports_purchase_orders
459   name: Purchase Orders
460   icon: purchase_order_report
461   order: 200
462   access: purchase_order_edit
463   module: oe.pl
464   params:
465     action: search
466     type: purchase_order
467 - parent: ap_reports
468   id: ap_reports_delivery_orders
469   name: Delivery Orders
470   order: 300
471   access: purchase_delivery_order_edit
472   module: do.pl
473   params:
474     action: search
475     type: purchase_delivery_order
476 - parent: ap_reports
477   id: ap_reports_vendor_invoices_ap_transactions
478   name: Vendor Invoices & AP Transactions
479   order: 400
480   module: ap.pl
481   params:
482     action: search
483 - parent: ap_reports
484   id: ap_reports_delivery_plan
485   name: Delivery Plan
486   order: 500
487   access: delivery_plan
488   params:
489     action: DeliveryPlan/list
490     vc: vendor
491 - parent: ap_reports
492   id: ap_reports_delivery_value_report
493   name: Delivery Value Report
494   order: 600
495   access: delivery_value_report
496   params:
497     action: DeliveryValueReport/list
498     vc: vendor
499 - parent: ap_reports
500   id: ap_reports_letters
501   name: Letters
502   order: 1100
503   access: purchase_letter_report
504   params:
505     action: Letter/list
506     is_sales: 0
507 - id: warehouse
508   name: Warehouse
509   icon: warehouse
510   order: 400
511 - parent: warehouse
512   id: warehouse_stock
513   name: Stock
514   order: 100
515   access: warehouse_management
516   params:
517     action: Inventory/stock_in
518 - parent: warehouse
519   id: warehouse_produce_assembly
520   name: Produce Assembly
521   icon: assembly_produce
522   order: 200
523   access: warehouse_management
524   module: wh.pl
525   params:
526     action: transfer_warehouse_selection
527     trans_type: assembly
528 - parent: warehouse
529   id: warehouse_transfer
530   name: Transfer
531   order: 300
532   access: warehouse_management
533   module: wh.pl
534   params:
535     action: transfer_warehouse_selection
536     trans_type: transfer
537 - parent: warehouse
538   id: warehouse_removal
539   name: Removal
540   order: 400
541   access: warehouse_management
542   module: wh.pl
543   params:
544     action: transfer_warehouse_selection
545     trans_type: removal
546 - parent: warehouse
547   id: warehouse_stocktaking
548   name: Stocktaking
549   order: 450
550   access: warehouse_management
551   params:
552     action: Inventory/stocktaking
553 - parent: warehouse
554   id: warehouse_reports
555   name: Reports
556   order: 500
557 - parent: warehouse_reports
558   id: warehouse_reports_warehouse_content
559   name: Warehouse content
560   order: 100
561   access: warehouse_contents | warehouse_management
562   module: wh.pl
563   params:
564     action: report
565 - parent: warehouse_reports
566   id: warehouse_reports_whjournal
567   name: WHJournal
568   order: 200
569   access: warehouse_management
570   module: wh.pl
571   params:
572     action: journal
573 - parent: warehouse_reports
574   id: warehouse_reports_whusage
575   name: WHUsage
576   icon: warehouse_usage
577   order: 300
578   access: warehouse_contents | warehouse_management
579   params:
580     action: Inventory/stock_usage
581 - parent: warehouse_reports
582   id: warehouse_stocktaking_journal
583   name: Stocktaking Journal
584   order: 400
585   access: warehouse_contents | warehouse_management
586   params:
587     action: Inventory/stocktaking_journal
588 - id: general_ledger
589   name: General Ledger
590   icon: gl
591   order: 500
592 - parent: general_ledger
593   id: general_ledger_add_transaction
594   name: Add Transaction
595   icon: transaction_add
596   order: 100
597   access: gl_transactions
598   module: gl.pl
599   params:
600     action: add
601 - parent: general_ledger
602   id: general_ledger_add_ar_transaction
603   name: Add AR Transaction
604   icon: ar_transaction_add
605   order: 200
606   access: ar_transactions
607   module: ar.pl
608   params:
609     action: add
610 - parent: general_ledger
611   id: general_ledger_add_ap_transaction
612   name: Add AP Transaction
613   icon: ap_transaction_add
614   order: 300
615   access: ap_transactions
616   module: ap.pl
617   params:
618     action: add
619 - parent: general_ledger
620   id: general_ledger_datev_export_assistent
621   name: DATEV - Export Assistent
622   icon: datev
623   order: 400
624   access: datev_export & client/feature_datev
625   module: datev.pl
626   params:
627     action: export
628 - parent: general_ledger
629   id: general_ledger_gobd_export
630   name: GoBD Export
631   icon: gobd
632   order: 450
633   access: general_ledger
634   params:
635     action: GoBD/filter
636 - parent: general_ledger
637   id: year_end_closing
638   name: Year-end closing
639   icon: cbob
640   order: 470
641   access: general_ledger
642   params:
643     action: YearEndTransactions/form
644 - parent: general_ledger
645   id: zugferd_import
646   name: ZugFeRD Import
647   icon: cbob
648   order: 485
649   access: ap_transactions
650   params:
651     action: ZUGFeRD/upload_zugferd
652 - parent: general_ledger
653   id: general_ledger_reports
654   name: Reports
655   icon: gl_report
656   order: 500
657 - parent: general_ledger_reports
658   id: general_ledger_reports_ar_aging
659   name: AR Aging
660   icon: ar_aging
661   order: 100
662   access: general_ledger
663   module: rp.pl
664   params:
665     action: report
666     report: ar_aging
667 - parent: general_ledger_reports
668   id: general_ledger_reports_ap_aging
669   name: AP Aging
670   icon: ap_aging
671   order: 200
672   access: general_ledger
673   module: rp.pl
674   params:
675     action: report
676     report: ap_aging
677 - parent: general_ledger_reports
678   id: general_ledger_reports_journal
679   name: Journal
680   icon: journal
681   order: 300
682   access: general_ledger | gl_transactions
683   module: gl.pl
684   params:
685     action: search
686 - id: cash
687   name: Cash
688   icon: cash
689   order: 600
690 - parent: cash
691   id: cash_receipt
692   name: Receipt
693   icon: receipt
694   order: 100
695   access: cash
696   module: cp.pl
697   params:
698     action: payment
699     vc: customer
700     type: receipt
701 - parent: cash
702   id: cash_payment
703   name: Payment
704   icon: payment
705   order: 200
706   access: cash
707   module: cp.pl
708   params:
709     action: payment
710     vc: vendor
711     type: check
712 - parent: cash
713   id: cash_bank_collection_via_sepa
714   name: Bank collection via SEPA
715   order: 300
716   access: cash
717   module: sepa.pl
718   params:
719     action: bank_transfer_add
720     vc: customer
721 - parent: cash
722   id: cash_bank_transfer_via_sepa
723   name: Bank transfer via SEPA
724   order: 400
725   access: cash
726   module: sepa.pl
727   params:
728     action: bank_transfer_add
729     vc: vendor
730 - parent: cash
731   id: cash_bank_import_menu
732   name: Bank Import
733   order: 500
734   access: bank_transaction
735 - parent: cash_bank_import_menu
736   id: cash_bank_import_csv
737   name: Custom CSV format
738   order: 100
739   params:
740     action: CsvImport/new
741     profile.type: bank_transactions
742 - parent: cash_bank_import_menu
743   id: cash_bank_import_mt940
744   name: SWIFT MT940 format
745   order: 200
746   params:
747     action: BankImport/upload_mt940
748 - parent: cash
749   id: cash_bank_transactions_mt940
750   name: Bank transactions MT940
751   order: 600
752   access: bank_transaction
753   params:
754     action: BankTransaction/search
755 - parent: cash
756   id: cash_reconciliation_with_bank
757   name: Reconciliation with bank
758   order: 700
759   access: bank_transaction
760   params:
761     action: Reconciliation/search
762 - parent: cash
763   id: cash_reconciliation
764   name: Reconciliation
765   icon: reconcilliation
766   order: 800
767   access: cash
768   module: rc.pl
769   params:
770     action: reconciliation
771 - parent: cash
772   id: cash_reports
773   name: Reports
774   icon: cash_report
775   order: 900
776 - parent: cash_reports
777   id: cash_reports_receipts
778   name: Receipts
779   icon: receipt_report
780   order: 100
781   access: cash
782   module: rp.pl
783   params:
784     action: report
785     report: receipts
786 - parent: cash_reports
787   id: cash_reports_payments
788   name: Payments
789   icon: payment_report
790   order: 200
791   access: cash
792   module: rp.pl
793   params:
794     action: report
795     report: payments
796 - parent: cash_reports
797   id: cash_reports_bank_collections_via_sepa
798   name: Bank collections via SEPA
799   order: 300
800   access: cash
801   module: sepa.pl
802   params:
803     action: bank_transfer_search
804     vc: customer
805 - parent: cash_reports
806   id: cash_reports_bank_transfers_via_sepa
807   name: Bank transfers via SEPA
808   order: 400
809   access: cash
810   module: sepa.pl
811   params:
812     action: bank_transfer_search
813     vc: vendor
814 - parent: cash_reports
815   id: cash_reports_bank_transactions
816   name: Bank transactions
817   order: 500
818   access: bank_transaction
819   params:
820     action: BankTransaction/list_all
821 - id: reports
822   name: Reports
823   icon: report
824   order: 700
825 - parent: reports
826   id: reports_chart_of_accounts
827   name: Chart of Accounts
828   icon: chart_of_accounts
829   order: 100
830   access: report
831   module: ca.pl
832   params:
833     action: chart_of_accounts
834 - parent: reports
835   id: reports_trial_balance
836   name: Trial Balance
837   order: 200
838   access: report
839   module: rp.pl
840   params:
841     action: report
842     report: trial_balance
843 - parent: reports
844   id: reports_erfolgsrechnung
845   name: Erfolgsrechnung
846   icon: income_statement
847   order: 300
848   access: report & client/feature_erfolgsrechnung
849   module: rp.pl
850   params:
851     action: report
852     report: erfolgsrechnung
853 - parent: reports
854   id: reports_income_statement
855   name: Income Statement
856   icon: income_statement
857   order: 300
858   access: report & client/feature_eurechnung
859   module: rp.pl
860   params:
861     action: report
862     report: income_statement
863 - parent: reports
864   id: reports_bwa
865   name: BWA
866   order: 400
867   access: report & client/feature_eurechnung
868   module: rp.pl
869   params:
870     action: report
871     report: bwa
872 - parent: reports
873   id: reports_balance_sheet
874   name: Balance Sheet
875   icon: balance_sheet
876   order: 500
877   access: report & client/feature_balance
878   module: rp.pl
879   params:
880     action: report
881     report: balance_sheet
882 - parent: reports
883   id: reports_ustva
884   name: UStVa
885   icon: ustva
886   order: 600
887   access: advance_turnover_tax_return & client/feature_ustva
888   module: ustva.pl
889   params:
890     action: report
891 - parent: reports
892   id: reports_projecttransactions
893   name: Projecttransactions
894   order: 700
895   access: report
896   module: rp.pl
897   params:
898     action: report
899     report: projects
900 - parent: reports
901   id: reports_financial_overview
902   name: Financial Overview
903   order: 800
904   access: report
905   params:
906     action: FinancialOverview/list
907 - parent: reports
908   id: reports_liquidity_projection
909   name: Liquidity projection
910   order: 900
911   access: report
912   params:
913     action: LiquidityProjection/show
914 - id: batch_printing
915   name: Batch Printing
916   icon: printing
917   order: 800
918   access: batch_printing
919 - parent: batch_printing
920   id: batch_printing_sales_invoices
921   name: Sales Invoices
922   icon: sales_invoice_printing
923   order: 100
924   access: invoice_edit
925   module: bp.pl
926   params:
927     action: search
928     vc: customer
929     type: invoice
930 - parent: batch_printing
931   id: batch_printing_sales_orders
932   name: Sales Orders
933   icon: sales_order_printing
934   order: 200
935   access: sales_order_edit
936   module: bp.pl
937   params:
938     action: search
939     type: sales_order
940     vc: customer
941 - parent: batch_printing
942   id: batch_printing_quotations
943   name: Quotations
944   icon: quotation_printing
945   order: 300
946   access: sales_quotation_edit
947   module: bp.pl
948   params:
949     action: search
950     vc: customer
951     type: sales_quotation
952 - parent: batch_printing
953   id: batch_printing_packing_lists
954   name: Packing Lists
955   icon: package_lists
956   order: 400
957   access: invoice_edit | sales_order_edit
958   module: bp.pl
959   params:
960     action: search
961     type: packing_list
962     vc: customer
963 - parent: batch_printing
964   id: batch_printing_purchase_orders
965   name: Purchase Orders
966   icon: purchase_order_printing
967   order: 500
968   access: purchase_order_edit
969   module: bp.pl
970   params:
971     action: search
972     type: purchase_order
973     vc: vendor
974 - parent: batch_printing
975   id: batch_printing_rfqs
976   name: RFQs
977   icon: rfq_printing
978   order: 600
979   access: request_quotation_edit
980   module: bp.pl
981   params:
982     action: search
983     vc: vendor
984     type: request_quotation
985 - parent: batch_printing
986   id: batch_printing_checks
987   name: Checks
988   order: 700
989   access: cash
990   module: bp.pl
991   params:
992     action: search
993     type: check
994     vc: vendor
995 - parent: batch_printing
996   id: batch_printing_receipts
997   name: Receipts
998   icon: receipt_printing
999   order: 800
1000   access: cash
1001   module: bp.pl
1002   params:
1003     action: search
1004     vc: customer
1005     type: receipt
1006 - id: productivity
1007   name: Productivity
1008   icon: productivity
1009   order: 900
1010   access: productivity
1011 - parent: productivity
1012   id: productivity_show_todo_list
1013   name: Show TODO list
1014   order: 100
1015   module: todo.pl
1016   params:
1017     action: show_todo_list
1018 - parent: productivity
1019   id: productivity_add_follow_up
1020   name: Add Follow-Up
1021   order: 200
1022   module: fu.pl
1023   params:
1024     action: add
1025 - parent: productivity
1026   id: productivity_edit_access_rights
1027   name: Edit Access Rights
1028   order: 300
1029   module: fu.pl
1030   params:
1031     action: edit_access_rights
1032 - parent: productivity
1033   id: productivity_reports
1034   name: Reports
1035   order: 400
1036 - parent: productivity_reports
1037   id: productivity_reports_follow_ups
1038   name: Follow-Ups
1039   order: 100
1040   module: fu.pl
1041   params:
1042     action: search
1043 - parent: productivity_reports
1044   id: productivity_reports_email_journal
1045   name: Email journal
1046   order: 200
1047   module: controller.pl
1048   icon: mail_journal
1049   params:
1050     action: EmailJournal/list
1051 - id: system
1052   name: System
1053   icon: system
1054   order: 1000
1055   access: config
1056 - parent: system
1057   id: system_client_configuration
1058   name: Client Configuration
1059   order: 100
1060   access: admin
1061   params:
1062     action: ClientConfig/edit
1063 - parent: system
1064   id: system_ustva_einstellungen
1065   name: UStVa Einstellungen
1066   order: 200
1067   access: client/feature_ustva
1068   module: ustva.pl
1069   params:
1070     action: config_step1
1071 - parent: system
1072   id: system_edit_dunning
1073   name: Edit Dunning
1074   order: 300
1075   module: dn.pl
1076   params:
1077     action: edit_config
1078 - parent: system
1079   id: system_chart_of_accounts
1080   name: Chart of Accounts
1081   order: 400
1082 - parent: system_chart_of_accounts
1083   id: system_chart_of_accounts_add_account
1084   name: Add Account
1085   order: 100
1086   module: am.pl
1087   params:
1088     action: add_account
1089 - parent: system_chart_of_accounts
1090   id: system_chart_of_accounts_list_accounts
1091   name: List Accounts
1092   order: 200
1093   module: am.pl
1094   params:
1095     action: list_account
1096 - parent: system_chart_of_accounts
1097   id: system_chart_of_accounts_report_configuration_overview
1098   name: Report configuration overview
1099   order: 300
1100   params:
1101     action: Chart/show_report_configuration_overview
1102 - parent: system
1103   id: system_buchungsgruppen
1104   name: Booking groups
1105   order: 500
1106   params:
1107     action: Buchungsgruppen/list
1108 - parent: system
1109   id: system_taxzones
1110   name: Taxzones
1111   order: 600
1112   params:
1113     action: Taxzones/list
1114 - parent: system
1115   id: system_taxes
1116   name: Taxes
1117   order: 700
1118   module: am.pl
1119   params:
1120     action: list_tax
1121 - parent: system
1122   id: system_bank_accounts
1123   name: Bank accounts
1124   order: 800
1125   params:
1126     action: SimpleSystemSetting/list
1127     type: bank_account
1128 - parent: system
1129   id: system_partsgroups
1130   name: Partsgroups
1131   order: 900
1132   params:
1133     action: SimpleSystemSetting/list
1134     type: parts_group
1135 - parent: system
1136   id: system_part_classification
1137   name: Parts Classification
1138   icon: partsclassific
1139   order: 1100
1140   params:
1141     action: SimpleSystemSetting/list
1142     type: part_classification
1143 - parent: system
1144   id: system_pricegroups
1145   name: Pricegroups
1146   order: 1120
1147   params:
1148     action: SimpleSystemSetting/list
1149     type: pricegroup
1150 - parent: system
1151   id: system_edit_units
1152   name: Edit units
1153   order: 1140
1154   module: am.pl
1155   params:
1156     action: edit_units
1157 - parent: system
1158   id: system_price_factors
1159   name: Price Factors
1160   order: 1200
1161   params:
1162     action: SimpleSystemSetting/list
1163     type: price_factor
1164 - parent: system
1165   id: system_greetings
1166   name: Greetings
1167   order: 1250
1168   params:
1169     action: SimpleSystemSetting/list
1170     type: greeting
1171 - parent: system
1172   id: system_departments
1173   name: Departments
1174   order: 1300
1175   params:
1176     action: SimpleSystemSetting/list
1177     type: department
1178 - parent: system
1179   id: system_types_of_business
1180   name: Types of Business
1181   order: 1400
1182   params:
1183     action: SimpleSystemSetting/list
1184     type: business
1185 - parent: system
1186   id: system_contact_titles
1187   name: Contact Titles
1188   order: 1420
1189   params:
1190     action: SimpleSystemSetting/list
1191     type: contact_title
1192 - parent: system
1193   id: system_contact_departments
1194   name: Contact Departments
1195   order: 1430
1196   params:
1197     action: SimpleSystemSetting/list
1198     type: contact_department
1199 - parent: system
1200   id: system_project_types
1201   name: Project Types
1202   order: 1600
1203   params:
1204     action: SimpleSystemSetting/list
1205     type: project_type
1206 - parent: system
1207   id: system_project_status
1208   name: Project Status
1209   order: 1700
1210   params:
1211     action: SimpleSystemSetting/list
1212     type: project_status
1213 - parent: system
1214   id: system_requirement_specs
1215   name: Requirement specs
1216   order: 1800
1217 - parent: system_requirement_specs
1218   id: system_requirement_specs_pre_defined_texts
1219   name: Pre-defined Texts
1220   order: 100
1221   params:
1222     action: SimpleSystemSetting/list
1223     type: requirement_spec_predefined_text
1224 - parent: system_requirement_specs
1225   id: system_requirement_specs_requirement_spec_types
1226   name: Requirement Spec Types
1227   order: 200
1228   params:
1229     action: SimpleSystemSetting/list
1230     type: requirement_spec_type
1231 - parent: system_requirement_specs
1232   id: system_requirement_specs_requirement_spec_statuses
1233   name: Requirement Spec Statuses
1234   order: 300
1235   params:
1236     action: SimpleSystemSetting/list
1237     type: requirement_spec_status
1238 - parent: system_requirement_specs
1239   id: system_requirement_specs_complexities
1240   name: Complexities
1241   order: 400
1242   params:
1243     action: SimpleSystemSetting/list
1244     type: requirement_spec_complexity
1245 - parent: system_requirement_specs
1246   id: system_requirement_specs_risks
1247   name: Risks
1248   order: 500
1249   params:
1250     action: SimpleSystemSetting/list
1251     type: requirement_spec_risk
1252 - parent: system_requirement_specs
1253   id: system_requirement_specs_acceptance_statuses
1254   name: Acceptance Statuses
1255   order: 600
1256   params:
1257     action: SimpleSystemSetting/list
1258     type: requirement_spec_acceptance_status
1259 - parent: system
1260   id: system_languages_and_translations
1261   name: Languages and translations
1262   order: 1900
1263 - parent: system_languages_and_translations
1264   id: system_languages_and_translations_add_language
1265   name: Languages
1266   order: 100
1267   params:
1268     action: SimpleSystemSetting/list
1269     type: language
1270 - parent: system_languages_and_translations
1271   id: system_languages_and_translations_greetings
1272   name: Greetings
1273   order: 300
1274   module: generictranslations.pl
1275   params:
1276     action: edit_greetings
1277 - parent: system_languages_and_translations
1278   id: system_languages_and_translations_sepa_strings
1279   name: SEPA strings
1280   order: 400
1281   module: generictranslations.pl
1282   params:
1283     action: edit_sepa_strings
1284 - parent: system_languages_and_translations
1285   id: system_languages_and_translations_zugferd_notes
1286   name: ZUGFeRD notes for each invoice
1287   order: 450
1288   module: generictranslations.pl
1289   params:
1290     action: edit_zugferd_notes
1291 - parent: system_languages_and_translations
1292   id: system_languages_and_translations_email_strings
1293   name: Preset email strings
1294   order: 500
1295   module: generictranslations.pl
1296   params:
1297     action: edit_email_strings
1298 - parent: system
1299   id: system_payment_terms
1300   name: Payment Terms
1301   order: 2000
1302   params:
1303     action: PaymentTerm/list
1304 - parent: system
1305   id: system_delivery_terms
1306   name: Delivery Terms
1307   order: 2100
1308   params:
1309     action: DeliveryTerm/list
1310 - parent: system
1311   id: system_manage_custom_variables
1312   name: Manage Custom Variables
1313   order: 2200
1314   params:
1315     action: CustomVariableConfig/list
1316 - parent: system
1317   id: system_warehouses
1318   name: Warehouses
1319   order: 2300
1320   module: am.pl
1321   params:
1322     action: list_warehouses
1323 - parent: system
1324   id: system_shops
1325   name: Web shops
1326   order: 2350
1327   access: edit_shop_config
1328   params:
1329     action: Shop/list
1330 - parent: system
1331   id: system_import_csv
1332   name: Import CSV
1333   order: 2400
1334 - parent: system_import_csv
1335   id: system_import_csv_customers_and_vendors
1336   name: Customers and vendors
1337   order: 100
1338   params:
1339     action: CsvImport/new
1340     profile.type: customers_vendors
1341 - parent: system_import_csv
1342   id: system_import_csv_contacts
1343   name: Contacts
1344   order: 200
1345   params:
1346     action: CsvImport/new
1347     profile.type: contacts
1348 - parent: system_import_csv
1349   id: system_import_csv_shipto
1350   name: Shipto
1351   order: 300
1352   params:
1353     action: CsvImport/new
1354     profile.type: addresses
1355 - parent: system_import_csv
1356   id: system_import_csv_parts
1357   name: Parts
1358   order: 400
1359   params:
1360     action: CsvImport/new
1361     profile.type: parts
1362 - parent: system_import_csv
1363   id: system_import_csv_inventories
1364   name: Inventories
1365   order: 500
1366   params:
1367     action: CsvImport/new
1368     profile.type: inventories
1369 - parent: system_import_csv
1370   id: system_import_csv_projects
1371   name: Projects
1372   order: 600
1373   params:
1374     action: CsvImport/new
1375     profile.type: projects
1376 - parent: system_import_csv
1377   id: system_import_csv_orders
1378   name: Orders
1379   order: 700
1380   params:
1381     action: CsvImport/new
1382     profile.type: orders
1383 - parent: system_import_csv
1384   id: system_import_csv_ar_transactions
1385   name: AR Transactions
1386   order: 800
1387   params:
1388     action: CsvImport/new
1389     profile.type: ar_transactions
1390 - parent: system
1391   id: system_templates
1392   name: Templates
1393   order: 2500
1394   access: admin
1395 - parent: system_templates
1396   id: system_templates_html_templates
1397   name: HTML Templates
1398   order: 100
1399   module: amtemplates.pl
1400   params:
1401     action: display_template_form
1402     type: templates
1403     format: html
1404 - parent: system_templates
1405   id: system_templates_latex_templates
1406   name: LaTeX Templates
1407   order: 200
1408   module: amtemplates.pl
1409   params:
1410     action: display_template_form
1411     format: tex
1412     type: templates
1413 - parent: system
1414   id: system_general_ledger_corrections
1415   name: General Ledger Corrections
1416   order: 2600
1417   module: acctranscorrections.pl
1418   params:
1419     action: analyze_filter
1420 - parent: system
1421   id: system_background_jobs_and_task_server
1422   name: Background jobs and task server
1423   order: 2700
1424   access: admin
1425 - parent: system_background_jobs_and_task_server
1426   id: system_background_jobs_and_task_server_list_current_background_jobs
1427   name: List current background jobs
1428   order: 100
1429   params:
1430     action: BackgroundJob/list
1431 - parent: system_background_jobs_and_task_server
1432   id: system_background_jobs_and_task_server_background_job_history
1433   name: Background job history
1434   order: 200
1435   params:
1436     action: BackgroundJobHistory/list
1437 - parent: system_background_jobs_and_task_server
1438   id: system_background_jobs_and_task_server_task_server_control
1439   name: Task server control
1440   order: 300
1441   params:
1442     action: TaskServer/show
1443 - parent: system
1444   id: system_audit_control
1445   name: Audit Control
1446   order: 2800
1447   module: am.pl
1448   params:
1449     action: audit_control
1450 - parent: system
1451   id: system_history_search_engine
1452   name: History Search Engine
1453   order: 2900
1454   module: am.pl
1455   params:
1456     action: show_history_search
1457 - parent: system
1458   id: system_employees
1459   name: Employees
1460   order: 3000
1461   access: admin
1462   params:
1463     action: Employee/list
1464 - id: program
1465   name: Program
1466   icon: program
1467   order: 1100
1468 - parent: program
1469   id: program_user_preferences
1470   name: User Preferences
1471   order: 100
1472   module: am.pl
1473   params:
1474     action: config
1475 - parent: program
1476   id: program_internal_phone_list
1477   name: Internal Phone List
1478   order: 200
1479   params:
1480     action: CTI/list_internal_extensions
1481 - parent: program
1482   id: program_version
1483   name: Version
1484   icon: version
1485   order: 300
1486   module: login.pl
1487   params:
1488     action: company_logo
1489     no_todo_list: 1
1490 - parent: program
1491   id: program_kivitendo_modul
1492   name: kivitendo modules
1493   order: 350
1494 - parent: program_kivitendo_modul
1495   id: program_kivitendo_modul_overview
1496   name: Overview kivitendo modules
1497   order: 100
1498   href: http://www.kivitendo-premium.de/module.shtml
1499   target: _blank
1500 - parent: program_kivitendo_modul
1501   id: program_kivitendo_modul_activate
1502   name: Activate kivitendo module
1503   order: 200
1504   href: http://www.kivitendo-premium.de/modul-aktivieren.shtml
1505   target: _blank
1506 - parent: program
1507   id: program_administration_area
1508   name: Administration area
1509   order: 400
1510   access: display_admin_link
1511   params:
1512     action: Admin/login
1513 - parent: program
1514   id: program_documentation_in_german_
1515   name: Documentation (in German)
1516   order: 500
1517   href: doc/kivitendo-Dokumentation.pdf
1518   target: _blank
1519 - parent: program
1520   id: program_kivitendo_website_external_
1521   name: kivitendo website (external)
1522   order: 600
1523   href: http://www.kivitendo.de/
1524   target: _blank
1525 - parent: program
1526   id: program_logout
1527   name: Logout
1528   icon: logout
1529   order: 700
1530   params:
1531     action: LoginScreen/logout