aa038df7264a6a7d549720568bf989f7556419af
[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: Factur-X/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 - parent: productivity
1011   id: productivity_show_todo_list
1012   name: Show TODO list
1013   order: 100
1014   access: productivity
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   access: productivity
1023   module: fu.pl
1024   params:
1025     action: add
1026 - parent: productivity
1027   id: productivity_edit_access_rights
1028   name: Edit Access Rights
1029   order: 300
1030   access: productivity
1031   module: fu.pl
1032   params:
1033     action: edit_access_rights
1034 - parent: productivity
1035   id: productivity_reports
1036   name: Reports
1037   order: 400
1038 - parent: productivity_reports
1039   id: productivity_reports_follow_ups
1040   name: Follow-Ups
1041   order: 100
1042   access: productivity
1043   module: fu.pl
1044   params:
1045     action: search
1046 - parent: productivity_reports
1047   id: productivity_reports_email_journal
1048   name: Email journal
1049   order: 200
1050   access: email_journal
1051   module: controller.pl
1052   icon: mail_journal
1053   params:
1054     action: EmailJournal/list
1055 - id: system
1056   name: System
1057   icon: system
1058   order: 1000
1059   access: config
1060 - parent: system
1061   id: system_client_configuration
1062   name: Client Configuration
1063   order: 100
1064   access: admin
1065   params:
1066     action: ClientConfig/edit
1067 - parent: system
1068   id: system_ustva_einstellungen
1069   name: UStVa Einstellungen
1070   order: 200
1071   access: client/feature_ustva
1072   module: ustva.pl
1073   params:
1074     action: config_step1
1075 - parent: system
1076   id: system_edit_dunning
1077   name: Edit Dunning
1078   order: 300
1079   module: dn.pl
1080   params:
1081     action: edit_config
1082 - parent: system
1083   id: system_chart_of_accounts
1084   name: Chart of Accounts
1085   order: 400
1086 - parent: system_chart_of_accounts
1087   id: system_chart_of_accounts_add_account
1088   name: Add Account
1089   order: 100
1090   module: am.pl
1091   params:
1092     action: add_account
1093 - parent: system_chart_of_accounts
1094   id: system_chart_of_accounts_list_accounts
1095   name: List Accounts
1096   order: 200
1097   module: am.pl
1098   params:
1099     action: list_account
1100 - parent: system_chart_of_accounts
1101   id: system_chart_of_accounts_report_configuration_overview
1102   name: Report configuration overview
1103   order: 300
1104   params:
1105     action: Chart/show_report_configuration_overview
1106 - parent: system
1107   id: system_buchungsgruppen
1108   name: Booking groups
1109   order: 500
1110   params:
1111     action: Buchungsgruppen/list
1112 - parent: system
1113   id: system_taxzones
1114   name: Taxzones
1115   order: 600
1116   params:
1117     action: Taxzones/list
1118 - parent: system
1119   id: system_taxes
1120   name: Taxes
1121   order: 700
1122   module: am.pl
1123   params:
1124     action: list_tax
1125 - parent: system
1126   id: system_bank_accounts
1127   name: Bank accounts
1128   order: 800
1129   params:
1130     action: SimpleSystemSetting/list
1131     type: bank_account
1132 - parent: system
1133   id: system_partsgroups
1134   name: Partsgroups
1135   order: 900
1136   params:
1137     action: SimpleSystemSetting/list
1138     type: parts_group
1139 - parent: system
1140   id: system_part_classification
1141   name: Parts Classification
1142   icon: partsclassific
1143   order: 1100
1144   params:
1145     action: SimpleSystemSetting/list
1146     type: part_classification
1147 - parent: system
1148   id: system_pricegroups
1149   name: Pricegroups
1150   order: 1120
1151   params:
1152     action: SimpleSystemSetting/list
1153     type: pricegroup
1154 - parent: system
1155   id: system_edit_units
1156   name: Edit units
1157   order: 1140
1158   module: am.pl
1159   params:
1160     action: edit_units
1161 - parent: system
1162   id: system_price_factors
1163   name: Price Factors
1164   order: 1200
1165   params:
1166     action: SimpleSystemSetting/list
1167     type: price_factor
1168 - parent: system
1169   id: system_greetings
1170   name: Greetings
1171   order: 1250
1172   params:
1173     action: SimpleSystemSetting/list
1174     type: greeting
1175 - parent: system
1176   id: system_departments
1177   name: Departments
1178   order: 1300
1179   params:
1180     action: SimpleSystemSetting/list
1181     type: department
1182 - parent: system
1183   id: system_types_of_business
1184   name: Types of Business
1185   order: 1400
1186   params:
1187     action: SimpleSystemSetting/list
1188     type: business
1189 - parent: system
1190   id: system_contact_titles
1191   name: Contact Titles
1192   order: 1420
1193   params:
1194     action: SimpleSystemSetting/list
1195     type: contact_title
1196 - parent: system
1197   id: system_contact_departments
1198   name: Contact Departments
1199   order: 1430
1200   params:
1201     action: SimpleSystemSetting/list
1202     type: contact_department
1203 - parent: system
1204   id: system_project_types
1205   name: Project Types
1206   order: 1600
1207   params:
1208     action: SimpleSystemSetting/list
1209     type: project_type
1210 - parent: system
1211   id: system_project_status
1212   name: Project Status
1213   order: 1700
1214   params:
1215     action: SimpleSystemSetting/list
1216     type: project_status
1217 - parent: system
1218   id: system_requirement_specs
1219   name: Requirement specs
1220   order: 1800
1221 - parent: system_requirement_specs
1222   id: system_requirement_specs_pre_defined_texts
1223   name: Pre-defined Texts
1224   order: 100
1225   params:
1226     action: SimpleSystemSetting/list
1227     type: requirement_spec_predefined_text
1228 - parent: system_requirement_specs
1229   id: system_requirement_specs_requirement_spec_types
1230   name: Requirement Spec Types
1231   order: 200
1232   params:
1233     action: SimpleSystemSetting/list
1234     type: requirement_spec_type
1235 - parent: system_requirement_specs
1236   id: system_requirement_specs_requirement_spec_statuses
1237   name: Requirement Spec Statuses
1238   order: 300
1239   params:
1240     action: SimpleSystemSetting/list
1241     type: requirement_spec_status
1242 - parent: system_requirement_specs
1243   id: system_requirement_specs_complexities
1244   name: Complexities
1245   order: 400
1246   params:
1247     action: SimpleSystemSetting/list
1248     type: requirement_spec_complexity
1249 - parent: system_requirement_specs
1250   id: system_requirement_specs_risks
1251   name: Risks
1252   order: 500
1253   params:
1254     action: SimpleSystemSetting/list
1255     type: requirement_spec_risk
1256 - parent: system_requirement_specs
1257   id: system_requirement_specs_acceptance_statuses
1258   name: Acceptance Statuses
1259   order: 600
1260   params:
1261     action: SimpleSystemSetting/list
1262     type: requirement_spec_acceptance_status
1263 - parent: system
1264   id: system_languages_and_translations
1265   name: Languages and translations
1266   order: 1900
1267 - parent: system_languages_and_translations
1268   id: system_languages_and_translations_add_language
1269   name: Languages
1270   order: 100
1271   params:
1272     action: SimpleSystemSetting/list
1273     type: language
1274 - parent: system_languages_and_translations
1275   id: system_languages_and_translations_greetings
1276   name: Greetings
1277   order: 300
1278   module: generictranslations.pl
1279   params:
1280     action: edit_greetings
1281 - parent: system_languages_and_translations
1282   id: system_languages_and_translations_sepa_strings
1283   name: SEPA strings
1284   order: 400
1285   module: generictranslations.pl
1286   params:
1287     action: edit_sepa_strings
1288 - parent: system_languages_and_translations
1289   id: system_languages_and_translations_zugferd_notes
1290   name: Factur-X/ZUGFeRD notes for each invoice
1291   order: 450
1292   module: generictranslations.pl
1293   params:
1294     action: edit_zugferd_notes
1295 - parent: system_languages_and_translations
1296   id: system_languages_and_translations_email_strings
1297   name: Preset email strings
1298   order: 500
1299   module: generictranslations.pl
1300   params:
1301     action: edit_email_strings
1302 - parent: system
1303   id: system_payment_terms
1304   name: Payment Terms
1305   order: 2000
1306   params:
1307     action: PaymentTerm/list
1308 - parent: system
1309   id: system_delivery_terms
1310   name: Delivery Terms
1311   order: 2100
1312   params:
1313     action: DeliveryTerm/list
1314 - parent: system
1315   id: system_manage_custom_variables
1316   name: Manage Custom Variables
1317   order: 2200
1318   params:
1319     action: CustomVariableConfig/list
1320 - parent: system
1321   id: system_warehouses
1322   name: Warehouses
1323   order: 2300
1324   module: am.pl
1325   params:
1326     action: list_warehouses
1327 - parent: system
1328   id: system_shops
1329   name: Web shops
1330   order: 2350
1331   access: edit_shop_config
1332   params:
1333     action: Shop/list
1334 - parent: system
1335   id: system_import_csv
1336   name: Import CSV
1337   order: 2400
1338 - parent: system_import_csv
1339   id: system_import_csv_customers_and_vendors
1340   name: Customers and vendors
1341   order: 100
1342   params:
1343     action: CsvImport/new
1344     profile.type: customers_vendors
1345 - parent: system_import_csv
1346   id: system_import_csv_contacts
1347   name: Contacts
1348   order: 200
1349   params:
1350     action: CsvImport/new
1351     profile.type: contacts
1352 - parent: system_import_csv
1353   id: system_import_csv_shipto
1354   name: Shipto
1355   order: 300
1356   params:
1357     action: CsvImport/new
1358     profile.type: addresses
1359 - parent: system_import_csv
1360   id: system_import_csv_parts
1361   name: Parts
1362   order: 400
1363   params:
1364     action: CsvImport/new
1365     profile.type: parts
1366 - parent: system_import_csv
1367   id: system_import_csv_inventories
1368   name: Inventories
1369   order: 500
1370   params:
1371     action: CsvImport/new
1372     profile.type: inventories
1373 - parent: system_import_csv
1374   id: system_import_csv_projects
1375   name: Projects
1376   order: 600
1377   params:
1378     action: CsvImport/new
1379     profile.type: projects
1380 - parent: system_import_csv
1381   id: system_import_csv_orders
1382   name: Orders
1383   order: 700
1384   params:
1385     action: CsvImport/new
1386     profile.type: orders
1387 - parent: system_import_csv
1388   id: system_import_csv_delivery_orders
1389   name: Delivery Orders
1390   order: 720
1391   params:
1392     action: CsvImport/new
1393     profile.type: delivery_orders
1394 - parent: system_import_csv
1395   id: system_import_csv_ar_transactions
1396   name: AR Transactions
1397   order: 800
1398   params:
1399     action: CsvImport/new
1400     profile.type: ar_transactions
1401 - parent: system
1402   id: system_templates
1403   name: Templates
1404   order: 2500
1405   access: admin
1406 - parent: system_templates
1407   id: system_templates_html_templates
1408   name: HTML Templates
1409   order: 100
1410   module: amtemplates.pl
1411   params:
1412     action: display_template_form
1413     type: templates
1414     format: html
1415 - parent: system_templates
1416   id: system_templates_latex_templates
1417   name: LaTeX Templates
1418   order: 200
1419   module: amtemplates.pl
1420   params:
1421     action: display_template_form
1422     format: tex
1423     type: templates
1424 - parent: system
1425   id: system_general_ledger_corrections
1426   name: General Ledger Corrections
1427   order: 2600
1428   module: acctranscorrections.pl
1429   params:
1430     action: analyze_filter
1431 - parent: system
1432   id: system_background_jobs_and_task_server
1433   name: Background jobs and task server
1434   order: 2700
1435   access: admin
1436 - parent: system_background_jobs_and_task_server
1437   id: system_background_jobs_and_task_server_list_current_background_jobs
1438   name: List current background jobs
1439   order: 100
1440   params:
1441     action: BackgroundJob/list
1442 - parent: system_background_jobs_and_task_server
1443   id: system_background_jobs_and_task_server_background_job_history
1444   name: Background job history
1445   order: 200
1446   params:
1447     action: BackgroundJobHistory/list
1448 - parent: system_background_jobs_and_task_server
1449   id: system_background_jobs_and_task_server_task_server_control
1450   name: Task server control
1451   order: 300
1452   params:
1453     action: TaskServer/show
1454 - parent: system
1455   id: system_audit_control
1456   name: Audit Control
1457   order: 2800
1458   module: am.pl
1459   params:
1460     action: audit_control
1461 - parent: system
1462   id: system_history_search_engine
1463   name: History Search Engine
1464   order: 2900
1465   module: am.pl
1466   params:
1467     action: show_history_search
1468 - parent: system
1469   id: system_employees
1470   name: Employees
1471   order: 3000
1472   access: admin
1473   params:
1474     action: Employee/list
1475 - id: program
1476   name: Program
1477   icon: program
1478   order: 1100
1479 - parent: program
1480   id: program_user_preferences
1481   name: User Preferences
1482   order: 100
1483   module: am.pl
1484   params:
1485     action: config
1486 - parent: program
1487   id: program_internal_phone_list
1488   name: Internal Phone List
1489   order: 200
1490   params:
1491     action: CTI/list_internal_extensions
1492 - parent: program
1493   id: program_version
1494   name: Version
1495   icon: version
1496   order: 300
1497   module: login.pl
1498   params:
1499     action: company_logo
1500     no_todo_list: 1
1501 - parent: program
1502   id: program_kivitendo_modul
1503   name: kivitendo modules
1504   order: 350
1505 - parent: program_kivitendo_modul
1506   id: program_kivitendo_modul_overview
1507   name: Overview kivitendo modules
1508   order: 100
1509   href: http://www.kivitendo-premium.de/module.shtml
1510   target: _blank
1511 - parent: program_kivitendo_modul
1512   id: program_kivitendo_modul_activate
1513   name: Activate kivitendo module
1514   order: 200
1515   href: http://www.kivitendo-premium.de/modul-aktivieren.shtml
1516   target: _blank
1517 - parent: program
1518   id: program_administration_area
1519   name: Administration area
1520   order: 400
1521   access: display_admin_link
1522   params:
1523     action: Admin/login
1524 - parent: program
1525   id: program_documentation_in_german_
1526   name: Documentation (in German)
1527   order: 500
1528   href: doc/kivitendo-Dokumentation.pdf
1529   target: _blank
1530 - parent: program
1531   id: program_kivitendo_website_external_
1532   name: kivitendo website (external)
1533   order: 600
1534   href: http://www.kivitendo.de/
1535   target: _blank
1536 - parent: program
1537   id: program_logout
1538   name: Logout
1539   icon: logout
1540   order: 700
1541   params:
1542     action: LoginScreen/logout