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