Jahresabschluß - YearEndTransactions neu implementiert
[kivitendo-erp.git] / menus / user / 00-erp.yaml
1 # This is the main menu config file for user space menu entries.
2 #
3 # Each menu entry can have the following properties:
4 #
5 # parent:  the id of a higher node in the tree, top-level node if missing
6 # id:      a unique identifier used by parent links and for overloading
7 # name:    translatable text for display
8 # icon:    stripped name of an icon for this menu entry
9 # order:   numeric value. lower will be displayed first
10 # access:  boolean expression of the rights needed to display and access this entry
11 #          ( ) & | are supported.  if binary operator is missing the last
12 #          operator in same scope is repeated, or "|" if none used in scope
13 #          yet. client config entries can be used as rights by prefixing them
14 #          with "client/".
15 #          ! is supported to negate the subsequent expression.
16 #          If missing, access will be granted.
17 #
18 #          Example:
19 #            client/feature_default_enabled | ( feature & system )
20 #
21 # href:   fully qualified external link
22 # module: defaults to "controller.pl". Should not be present if the link is for
23 #         Controller::Base dispatching to enable routing. Otherwise this
24 #         script will be used.
25 # target: target window for link. ex: "_blank"
26 # params: additional url parameter
27 ---
28 - id: master_data
29   name: Master Data
30   icon: master_data
31   order: 100
32 - parent: master_data
33   id: master_data_add_customer
34   name: Add Customer
35   icon: customer_add
36   order: 100
37   access: customer_vendor_edit
38   params:
39     action: CustomerVendor/add
40     db: customer
41 - parent: master_data
42   id: master_data_add_vendor
43   name: Add Vendor
44   icon: vendor_add
45   order: 200
46   access: customer_vendor_edit
47   params:
48     action: CustomerVendor/add
49     db: vendor
50 - parent: master_data
51   id: master_data_add_part
52   name: Add Part
53   icon: part_add
54   order: 300
55   access: part_service_assembly_edit
56   params:
57     action: Part/add_part
58 - parent: master_data
59   id: master_data_add_service
60   name: Add Service
61   icon: service_add
62   order: 400
63   access: part_service_assembly_edit
64   params:
65     action: Part/add_service
66 - parent: master_data
67   id: master_data_add_assembly
68   name: Add Assembly
69   icon: assembly_add
70   order: 500
71   access: part_service_assembly_edit
72   params:
73     action: Part/add_assembly
74 - parent: master_data
75   id: master_data_add_assortment
76   name: Add Assortment
77   icon: assortment_add
78   order: 550
79   access: part_service_assembly_edit & client/feature_experimental
80   params:
81     action: Part/add_assortment
82 - parent: master_data
83   id: master_data_add_project
84   name: Add Project
85   icon: project_add
86   order: 600
87   access: project_edit
88   params:
89     action: Project/new
90 - parent: master_data
91   id: master_data_add_requirement_spec_template
92   name: Add Requirement Spec Template
93   order: 700
94   access: requirement_spec_edit
95   params:
96     action: RequirementSpec/new
97     is_template: 1
98 - parent: master_data
99   id: master_data_update_prices
100   name: Update Prices
101   icon: prices_update
102   order: 800
103   access: part_service_assembly_edit
104   params:
105     action: PartsPriceUpdate/search_update_prices
106 - parent: master_data
107   id: master_data_price_rules
108   name: Price Rules
109   order: 900
110   access: part_service_assembly_edit
111   params:
112     action: PriceRule/list
113     filter.obsolete: 0
114 - parent: master_data
115   id: master_data_reports
116   name: Reports
117   icon: master_data_report
118   order: 1000
119 - parent: master_data_reports
120   id: master_data_reports_customers
121   name: Customers
122   icon: customer_report
123   order: 100
124   access: customer_vendor_edit
125   params:
126     action: CustomerVendor/search
127     db: customer
128 - parent: master_data_reports
129   id: master_data_reports_vendors
130   name: Vendors
131   icon: vendor_report
132   order: 200
133   access: customer_vendor_edit
134   params:
135     action: CustomerVendor/search
136     db: vendor
137 - parent: master_data_reports
138   id: master_data_reports_contacts
139   name: Contacts
140   order: 300
141   access: customer_vendor_edit
142   params:
143     action: CustomerVendor/search_contact
144     db: customer
145 - parent: master_data_reports
146   id: master_data_reports_articles
147   name: Articles
148   icon: part_report
149   order: 500
150   access: part_service_assembly_details
151   module: ic.pl
152   params:
153     action: search
154     searchitems: article
155 - parent: master_data_reports
156   id: master_data_reports_projects
157   name: Projects
158   icon: project_report
159   order: 700
160   access: project_edit
161   params:
162     action: Project/list
163     filter.active: active
164     filter.valid: valid
165 - parent: master_data_reports
166   id: master_data_reports_requirement_spec_templates
167   name: Requirement Spec Templates
168   order: 800
169   access: requirement_spec_edit
170   params:
171     action: RequirementSpec/list
172     is_template: 1
173 - id: ar
174   name: AR
175   icon: ar
176   order: 200
177 - parent: ar
178   id: ar_add_requirement_spec
179   name: Add Requirement Spec
180   order: 100
181   access: requirement_spec_edit
182   params:
183     action: RequirementSpec/new
184 - parent: ar
185   id: ar_add_quotation
186   name: Add Quotation
187   icon: quotation_add
188   order: 200
189   access: sales_quotation_edit
190   module: oe.pl
191   params:
192     action: add
193     type: sales_quotation
194 - parent: ar
195   id: ar_add_sales_order
196   name: Add Sales Order
197   icon: sales_order_add
198   order: 300
199   access: sales_order_edit
200   module: oe.pl
201   params:
202     action: add
203     type: sales_order
204 - parent: ar
205   id: ar_add_delivery_order
206   name: Add Delivery Order
207   icon: delivery_order_add
208   order: 400
209   access: sales_delivery_order_edit
210   module: do.pl
211   params:
212     action: add
213     type: sales_delivery_order
214 - parent: ar
215   id: ar_add_sales_invoice
216   name: Add Sales Invoice
217   icon: sales_invoice_add
218   order: 500
219   access: invoice_edit
220   module: is.pl
221   params:
222     action: add
223     type: invoice
224 - parent: ar
225   id: ar_add_credit_note
226   name: Add Credit Note
227   icon: credit_note_add
228   order: 600
229   access: invoice_edit
230   module: is.pl
231   params:
232     action: add
233     type: credit_note
234 - parent: ar
235   id: ar_add_dunning
236   name: Add Dunning
237   icon: dunning_add
238   order: 700
239   access: dunning_edit
240   module: dn.pl
241   params:
242     action: add
243 - parent: ar
244   id: ar_add_letter
245   name: Add Letter
246   order: 800
247   access: sales_letter_edit
248   params:
249     action: Letter/add
250     is_sales: 1
251 - parent: ar
252   id: ar_invoices
253   name: Invoices
254   icon: sales_invoice_add
255   order: 850
256 - parent: ar_invoices
257   id: ar_invoices_mass_add_sales_invoice
258   name: Mass Create Print Sales Invoice from Delivery Order
259   order: 100
260   access: invoice_edit
261   params:
262     noshow: 1
263     action: MassInvoiceCreatePrint/list_sales_delivery_orders
264 - parent: ar
265   id: ar_reports
266   name: Reports
267   icon: ar_report
268   order: 900
269 - parent: ar_reports
270   id: ar_reports_requirement_specs
271   name: Requirement Specs
272   order: 100
273   access: requirement_spec_edit
274   params:
275     action: RequirementSpec/list
276 - parent: ar_reports
277   id: ar_reports_quotations
278   name: Quotations
279   icon: report_quotations
280   order: 200
281   access: sales_quotation_edit
282   module: oe.pl
283   params:
284     action: search
285     type: sales_quotation
286 - parent: ar_reports
287   id: ar_reports_sales_orders
288   name: Sales Orders
289   icon: report_sales_orders
290   order: 300
291   access: sales_order_edit
292   module: oe.pl
293   params:
294     action: search
295     type: sales_order
296 - parent: ar_reports
297   id: ar_reports_delivery_orders
298   name: Delivery Orders
299   icon: delivery_order_report
300   order: 400
301   access: sales_delivery_order_edit
302   module: do.pl
303   params:
304     action: search
305     type: sales_delivery_order
306 - parent: ar_reports
307   id: ar_reports_invoices_credit_notes_ar_transactions
308   name: Invoices, Credit Notes & AR Transactions
309   icon: invoices_report
310   order: 500
311   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: general_ledger_reports
646   name: Reports
647   icon: gl_report
648   order: 500
649 - parent: general_ledger_reports
650   id: general_ledger_reports_ar_aging
651   name: AR Aging
652   icon: ar_aging
653   order: 100
654   access: general_ledger
655   module: rp.pl
656   params:
657     action: report
658     report: ar_aging
659 - parent: general_ledger_reports
660   id: general_ledger_reports_ap_aging
661   name: AP Aging
662   icon: ap_aging
663   order: 200
664   access: general_ledger
665   module: rp.pl
666   params:
667     action: report
668     report: ap_aging
669 - parent: general_ledger_reports
670   id: general_ledger_reports_journal
671   name: Journal
672   icon: journal
673   order: 300
674   access: general_ledger | gl_transactions
675   module: gl.pl
676   params:
677     action: search
678 - id: cash
679   name: Cash
680   icon: cash
681   order: 600
682 - parent: cash
683   id: cash_receipt
684   name: Receipt
685   icon: receipt
686   order: 100
687   access: cash
688   module: cp.pl
689   params:
690     action: payment
691     vc: customer
692     type: receipt
693 - parent: cash
694   id: cash_payment
695   name: Payment
696   icon: payment
697   order: 200
698   access: cash
699   module: cp.pl
700   params:
701     action: payment
702     vc: vendor
703     type: check
704 - parent: cash
705   id: cash_bank_collection_via_sepa
706   name: Bank collection via SEPA
707   order: 300
708   access: cash
709   module: sepa.pl
710   params:
711     action: bank_transfer_add
712     vc: customer
713 - parent: cash
714   id: cash_bank_transfer_via_sepa
715   name: Bank transfer via SEPA
716   order: 400
717   access: cash
718   module: sepa.pl
719   params:
720     action: bank_transfer_add
721     vc: vendor
722 - parent: cash
723   id: cash_bank_import_menu
724   name: Bank Import
725   order: 500
726   access: bank_transaction
727 - parent: cash_bank_import_menu
728   id: cash_bank_import_csv
729   name: Custom CSV format
730   order: 100
731   params:
732     action: CsvImport/new
733     profile.type: bank_transactions
734 - parent: cash_bank_import_menu
735   id: cash_bank_import_mt940
736   name: SWIFT MT940 format
737   order: 200
738   params:
739     action: BankImport/upload_mt940
740 - parent: cash
741   id: cash_bank_transactions_mt940
742   name: Bank transactions MT940
743   order: 600
744   access: bank_transaction
745   params:
746     action: BankTransaction/search
747 - parent: cash
748   id: cash_reconciliation_with_bank
749   name: Reconciliation with bank
750   order: 700
751   access: bank_transaction
752   params:
753     action: Reconciliation/search
754 - parent: cash
755   id: cash_reconciliation
756   name: Reconciliation
757   icon: reconcilliation
758   order: 800
759   access: cash
760   module: rc.pl
761   params:
762     action: reconciliation
763 - parent: cash
764   id: cash_reports
765   name: Reports
766   icon: cash_report
767   order: 900
768 - parent: cash_reports
769   id: cash_reports_receipts
770   name: Receipts
771   icon: receipt_report
772   order: 100
773   access: cash
774   module: rp.pl
775   params:
776     action: report
777     report: receipts
778 - parent: cash_reports
779   id: cash_reports_payments
780   name: Payments
781   icon: payment_report
782   order: 200
783   access: cash
784   module: rp.pl
785   params:
786     action: report
787     report: payments
788 - parent: cash_reports
789   id: cash_reports_bank_collections_via_sepa
790   name: Bank collections via SEPA
791   order: 300
792   access: cash
793   module: sepa.pl
794   params:
795     action: bank_transfer_search
796     vc: customer
797 - parent: cash_reports
798   id: cash_reports_bank_transfers_via_sepa
799   name: Bank transfers via SEPA
800   order: 400
801   access: cash
802   module: sepa.pl
803   params:
804     action: bank_transfer_search
805     vc: vendor
806 - parent: cash_reports
807   id: cash_reports_bank_transactions
808   name: Bank transactions
809   order: 500
810   access: bank_transaction
811   params:
812     action: BankTransaction/list_all
813 - id: reports
814   name: Reports
815   icon: report
816   order: 700
817 - parent: reports
818   id: reports_chart_of_accounts
819   name: Chart of Accounts
820   icon: chart_of_accounts
821   order: 100
822   access: report
823   module: ca.pl
824   params:
825     action: chart_of_accounts
826 - parent: reports
827   id: reports_trial_balance
828   name: Trial Balance
829   order: 200
830   access: report
831   module: rp.pl
832   params:
833     action: report
834     report: trial_balance
835 - parent: reports
836   id: reports_erfolgsrechnung
837   name: Erfolgsrechnung
838   icon: income_statement
839   order: 300
840   access: report & client/feature_erfolgsrechnung
841   module: rp.pl
842   params:
843     action: report
844     report: erfolgsrechnung
845 - parent: reports
846   id: reports_income_statement
847   name: Income Statement
848   icon: income_statement
849   order: 300
850   access: report & client/feature_eurechnung
851   module: rp.pl
852   params:
853     action: report
854     report: income_statement
855 - parent: reports
856   id: reports_bwa
857   name: BWA
858   order: 400
859   access: report & client/feature_eurechnung
860   module: rp.pl
861   params:
862     action: report
863     report: bwa
864 - parent: reports
865   id: reports_balance_sheet
866   name: Balance Sheet
867   icon: balance_sheet
868   order: 500
869   access: report & client/feature_balance
870   module: rp.pl
871   params:
872     action: report
873     report: balance_sheet
874 - parent: reports
875   id: reports_ustva
876   name: UStVa
877   icon: ustva
878   order: 600
879   access: advance_turnover_tax_return & client/feature_ustva
880   module: ustva.pl
881   params:
882     action: report
883 - parent: reports
884   id: reports_projecttransactions
885   name: Projecttransactions
886   order: 700
887   access: report
888   module: rp.pl
889   params:
890     action: report
891     report: projects
892 - parent: reports
893   id: reports_financial_overview
894   name: Financial Overview
895   order: 800
896   access: report
897   params:
898     action: FinancialOverview/list
899 - parent: reports
900   id: reports_liquidity_projection
901   name: Liquidity projection
902   order: 900
903   access: report
904   params:
905     action: LiquidityProjection/show
906 - id: batch_printing
907   name: Batch Printing
908   icon: printing
909   order: 800
910   access: batch_printing
911 - parent: batch_printing
912   id: batch_printing_sales_invoices
913   name: Sales Invoices
914   icon: sales_invoice_printing
915   order: 100
916   access: invoice_edit
917   module: bp.pl
918   params:
919     action: search
920     vc: customer
921     type: invoice
922 - parent: batch_printing
923   id: batch_printing_sales_orders
924   name: Sales Orders
925   icon: sales_order_printing
926   order: 200
927   access: sales_order_edit
928   module: bp.pl
929   params:
930     action: search
931     type: sales_order
932     vc: customer
933 - parent: batch_printing
934   id: batch_printing_quotations
935   name: Quotations
936   icon: quotation_printing
937   order: 300
938   access: sales_quotation_edit
939   module: bp.pl
940   params:
941     action: search
942     vc: customer
943     type: sales_quotation
944 - parent: batch_printing
945   id: batch_printing_packing_lists
946   name: Packing Lists
947   icon: package_lists
948   order: 400
949   access: invoice_edit | sales_order_edit
950   module: bp.pl
951   params:
952     action: search
953     type: packing_list
954     vc: customer
955 - parent: batch_printing
956   id: batch_printing_purchase_orders
957   name: Purchase Orders
958   icon: purchase_order_printing
959   order: 500
960   access: purchase_order_edit
961   module: bp.pl
962   params:
963     action: search
964     type: purchase_order
965     vc: vendor
966 - parent: batch_printing
967   id: batch_printing_rfqs
968   name: RFQs
969   icon: rfq_printing
970   order: 600
971   access: request_quotation_edit
972   module: bp.pl
973   params:
974     action: search
975     vc: vendor
976     type: request_quotation
977 - parent: batch_printing
978   id: batch_printing_checks
979   name: Checks
980   order: 700
981   access: cash
982   module: bp.pl
983   params:
984     action: search
985     type: check
986     vc: vendor
987 - parent: batch_printing
988   id: batch_printing_receipts
989   name: Receipts
990   icon: receipt_printing
991   order: 800
992   access: cash
993   module: bp.pl
994   params:
995     action: search
996     vc: customer
997     type: receipt
998 - id: productivity
999   name: Productivity
1000   icon: productivity
1001   order: 900
1002   access: productivity
1003 - parent: productivity
1004   id: productivity_show_todo_list
1005   name: Show TODO list
1006   order: 100
1007   module: todo.pl
1008   params:
1009     action: show_todo_list
1010 - parent: productivity
1011   id: productivity_add_follow_up
1012   name: Add Follow-Up
1013   order: 200
1014   module: fu.pl
1015   params:
1016     action: add
1017 - parent: productivity
1018   id: productivity_edit_access_rights
1019   name: Edit Access Rights
1020   order: 300
1021   module: fu.pl
1022   params:
1023     action: edit_access_rights
1024 - parent: productivity
1025   id: productivity_reports
1026   name: Reports
1027   order: 400
1028 - parent: productivity_reports
1029   id: productivity_reports_follow_ups
1030   name: Follow-Ups
1031   order: 100
1032   module: fu.pl
1033   params:
1034     action: search
1035 - parent: productivity_reports
1036   id: productivity_reports_email_journal
1037   name: Email journal
1038   order: 200
1039   module: controller.pl
1040   icon: mail_journal
1041   params:
1042     action: EmailJournal/list
1043 - id: system
1044   name: System
1045   icon: system
1046   order: 1000
1047   access: config
1048 - parent: system
1049   id: system_client_configuration
1050   name: Client Configuration
1051   order: 100
1052   access: admin
1053   params:
1054     action: ClientConfig/edit
1055 - parent: system
1056   id: system_ustva_einstellungen
1057   name: UStVa Einstellungen
1058   order: 200
1059   access: client/feature_ustva
1060   module: ustva.pl
1061   params:
1062     action: config_step1
1063 - parent: system
1064   id: system_edit_dunning
1065   name: Edit Dunning
1066   order: 300
1067   module: dn.pl
1068   params:
1069     action: edit_config
1070 - parent: system
1071   id: system_chart_of_accounts
1072   name: Chart of Accounts
1073   order: 400
1074 - parent: system_chart_of_accounts
1075   id: system_chart_of_accounts_add_account
1076   name: Add Account
1077   order: 100
1078   module: am.pl
1079   params:
1080     action: add_account
1081 - parent: system_chart_of_accounts
1082   id: system_chart_of_accounts_list_accounts
1083   name: List Accounts
1084   order: 200
1085   module: am.pl
1086   params:
1087     action: list_account
1088 - parent: system_chart_of_accounts
1089   id: system_chart_of_accounts_report_configuration_overview
1090   name: Report configuration overview
1091   order: 300
1092   params:
1093     action: Chart/show_report_configuration_overview
1094 - parent: system
1095   id: system_buchungsgruppen
1096   name: Booking groups
1097   order: 500
1098   params:
1099     action: Buchungsgruppen/list
1100 - parent: system
1101   id: system_taxzones
1102   name: Taxzones
1103   order: 600
1104   params:
1105     action: Taxzones/list
1106 - parent: system
1107   id: system_taxes
1108   name: Taxes
1109   order: 700
1110   module: am.pl
1111   params:
1112     action: list_tax
1113 - parent: system
1114   id: system_bank_accounts
1115   name: Bank accounts
1116   order: 800
1117   params:
1118     action: SimpleSystemSetting/list
1119     type: bank_account
1120 - parent: system
1121   id: system_partsgroups
1122   name: Partsgroups
1123   order: 900
1124   params:
1125     action: SimpleSystemSetting/list
1126     type: parts_group
1127 - parent: system
1128   id: system_part_classification
1129   name: Parts Classification
1130   icon: partsclassific
1131   order: 1100
1132   params:
1133     action: SimpleSystemSetting/list
1134     type: part_classification
1135 - parent: system
1136   id: system_pricegroups
1137   name: Pricegroups
1138   order: 1120
1139   params:
1140     action: SimpleSystemSetting/list
1141     type: pricegroup
1142 - parent: system
1143   id: system_edit_units
1144   name: Edit units
1145   order: 1140
1146   module: am.pl
1147   params:
1148     action: edit_units
1149 - parent: system
1150   id: system_price_factors
1151   name: Price Factors
1152   order: 1200
1153   params:
1154     action: SimpleSystemSetting/list
1155     type: price_factor
1156 - parent: system
1157   id: system_departments
1158   name: Departments
1159   order: 1300
1160   params:
1161     action: SimpleSystemSetting/list
1162     type: department
1163 - parent: system
1164   id: system_types_of_business
1165   name: Types of Business
1166   order: 1400
1167   params:
1168     action: SimpleSystemSetting/list
1169     type: business
1170 - parent: system
1171   id: system_project_types
1172   name: Project Types
1173   order: 1600
1174   params:
1175     action: SimpleSystemSetting/list
1176     type: project_type
1177 - parent: system
1178   id: system_project_status
1179   name: Project Status
1180   order: 1700
1181   params:
1182     action: SimpleSystemSetting/list
1183     type: project_status
1184 - parent: system
1185   id: system_requirement_specs
1186   name: Requirement specs
1187   order: 1800
1188 - parent: system_requirement_specs
1189   id: system_requirement_specs_pre_defined_texts
1190   name: Pre-defined Texts
1191   order: 100
1192   params:
1193     action: SimpleSystemSetting/list
1194     type: requirement_spec_predefined_text
1195 - parent: system_requirement_specs
1196   id: system_requirement_specs_requirement_spec_types
1197   name: Requirement Spec Types
1198   order: 200
1199   params:
1200     action: SimpleSystemSetting/list
1201     type: requirement_spec_type
1202 - parent: system_requirement_specs
1203   id: system_requirement_specs_requirement_spec_statuses
1204   name: Requirement Spec Statuses
1205   order: 300
1206   params:
1207     action: SimpleSystemSetting/list
1208     type: requirement_spec_status
1209 - parent: system_requirement_specs
1210   id: system_requirement_specs_complexities
1211   name: Complexities
1212   order: 400
1213   params:
1214     action: SimpleSystemSetting/list
1215     type: requirement_spec_complexity
1216 - parent: system_requirement_specs
1217   id: system_requirement_specs_risks
1218   name: Risks
1219   order: 500
1220   params:
1221     action: SimpleSystemSetting/list
1222     type: requirement_spec_risk
1223 - parent: system_requirement_specs
1224   id: system_requirement_specs_acceptance_statuses
1225   name: Acceptance Statuses
1226   order: 600
1227   params:
1228     action: SimpleSystemSetting/list
1229     type: requirement_spec_acceptance_status
1230 - parent: system
1231   id: system_languages_and_translations
1232   name: Languages and translations
1233   order: 1900
1234 - parent: system_languages_and_translations
1235   id: system_languages_and_translations_add_language
1236   name: Languages
1237   order: 100
1238   params:
1239     action: SimpleSystemSetting/list
1240     type: language
1241 - parent: system_languages_and_translations
1242   id: system_languages_and_translations_greetings
1243   name: Greetings
1244   order: 300
1245   module: generictranslations.pl
1246   params:
1247     action: edit_greetings
1248 - parent: system_languages_and_translations
1249   id: system_languages_and_translations_sepa_strings
1250   name: SEPA strings
1251   order: 400
1252   module: generictranslations.pl
1253   params:
1254     action: edit_sepa_strings
1255 - parent: system_languages_and_translations
1256   id: system_languages_and_translations_email_strings
1257   name: Preset email strings
1258   order: 500
1259   module: generictranslations.pl
1260   params:
1261     action: edit_email_strings
1262 - parent: system
1263   id: system_payment_terms
1264   name: Payment Terms
1265   order: 2000
1266   params:
1267     action: PaymentTerm/list
1268 - parent: system
1269   id: system_delivery_terms
1270   name: Delivery Terms
1271   order: 2100
1272   params:
1273     action: DeliveryTerm/list
1274 - parent: system
1275   id: system_manage_custom_variables
1276   name: Manage Custom Variables
1277   order: 2200
1278   params:
1279     action: CustomVariableConfig/list
1280 - parent: system
1281   id: system_warehouses
1282   name: Warehouses
1283   order: 2300
1284   module: am.pl
1285   params:
1286     action: list_warehouses
1287 - parent: system
1288   id: system_shops
1289   name: Web shops
1290   order: 2350
1291   access: edit_shop_config
1292   params:
1293     action: Shop/list
1294 - parent: system
1295   id: system_import_csv
1296   name: Import CSV
1297   order: 2400
1298 - parent: system_import_csv
1299   id: system_import_csv_customers_and_vendors
1300   name: Customers and vendors
1301   order: 100
1302   params:
1303     action: CsvImport/new
1304     profile.type: customers_vendors
1305 - parent: system_import_csv
1306   id: system_import_csv_contacts
1307   name: Contacts
1308   order: 200
1309   params:
1310     action: CsvImport/new
1311     profile.type: contacts
1312 - parent: system_import_csv
1313   id: system_import_csv_shipto
1314   name: Shipto
1315   order: 300
1316   params:
1317     action: CsvImport/new
1318     profile.type: addresses
1319 - parent: system_import_csv
1320   id: system_import_csv_parts
1321   name: Parts
1322   order: 400
1323   params:
1324     action: CsvImport/new
1325     profile.type: parts
1326 - parent: system_import_csv
1327   id: system_import_csv_inventories
1328   name: Inventories
1329   order: 500
1330   params:
1331     action: CsvImport/new
1332     profile.type: inventories
1333 - parent: system_import_csv
1334   id: system_import_csv_projects
1335   name: Projects
1336   order: 600
1337   params:
1338     action: CsvImport/new
1339     profile.type: projects
1340 - parent: system_import_csv
1341   id: system_import_csv_orders
1342   name: Orders
1343   order: 700
1344   params:
1345     action: CsvImport/new
1346     profile.type: orders
1347 - parent: system_import_csv
1348   id: system_import_csv_ar_transactions
1349   name: AR Transactions
1350   order: 800
1351   params:
1352     action: CsvImport/new
1353     profile.type: ar_transactions
1354 - parent: system
1355   id: system_templates
1356   name: Templates
1357   order: 2500
1358   access: admin
1359 - parent: system_templates
1360   id: system_templates_html_templates
1361   name: HTML Templates
1362   order: 100
1363   module: amtemplates.pl
1364   params:
1365     action: display_template_form
1366     type: templates
1367     format: html
1368 - parent: system_templates
1369   id: system_templates_latex_templates
1370   name: LaTeX Templates
1371   order: 200
1372   module: amtemplates.pl
1373   params:
1374     action: display_template_form
1375     format: tex
1376     type: templates
1377 - parent: system
1378   id: system_general_ledger_corrections
1379   name: General Ledger Corrections
1380   order: 2600
1381   module: acctranscorrections.pl
1382   params:
1383     action: analyze_filter
1384 - parent: system
1385   id: system_background_jobs_and_task_server
1386   name: Background jobs and task server
1387   order: 2700
1388   access: admin
1389 - parent: system_background_jobs_and_task_server
1390   id: system_background_jobs_and_task_server_list_current_background_jobs
1391   name: List current background jobs
1392   order: 100
1393   params:
1394     action: BackgroundJob/list
1395 - parent: system_background_jobs_and_task_server
1396   id: system_background_jobs_and_task_server_background_job_history
1397   name: Background job history
1398   order: 200
1399   params:
1400     action: BackgroundJobHistory/list
1401 - parent: system_background_jobs_and_task_server
1402   id: system_background_jobs_and_task_server_task_server_control
1403   name: Task server control
1404   order: 300
1405   params:
1406     action: TaskServer/show
1407 - parent: system
1408   id: system_audit_control
1409   name: Audit Control
1410   order: 2800
1411   module: am.pl
1412   params:
1413     action: audit_control
1414 - parent: system
1415   id: system_history_search_engine
1416   name: History Search Engine
1417   order: 2900
1418   module: am.pl
1419   params:
1420     action: show_history_search
1421 - parent: system
1422   id: system_employees
1423   name: Employees
1424   order: 3000
1425   access: admin
1426   params:
1427     action: Employee/list
1428 - id: program
1429   name: Program
1430   icon: program
1431   order: 1100
1432 - parent: program
1433   id: program_user_preferences
1434   name: User Preferences
1435   order: 100
1436   module: am.pl
1437   params:
1438     action: config
1439 - parent: program
1440   id: program_internal_phone_list
1441   name: Internal Phone List
1442   order: 200
1443   params:
1444     action: CTI/list_internal_extensions
1445 - parent: program
1446   id: program_version
1447   name: Version
1448   icon: version
1449   order: 300
1450   module: login.pl
1451   params:
1452     action: company_logo
1453     no_todo_list: 1
1454 - parent: program
1455   id: program_kivitendo_modul
1456   name: kivitendo modules
1457   order: 350
1458 - parent: program_kivitendo_modul
1459   id: program_kivitendo_modul_overview
1460   name: Overview kivitendo modules
1461   order: 100
1462   href: http://www.kivitendo-premium.de/module.shtml
1463   target: _blank
1464 - parent: program_kivitendo_modul
1465   id: program_kivitendo_modul_activate
1466   name: Activate kivitendo module
1467   order: 200
1468   href: http://www.kivitendo-premium.de/modul-aktivieren.shtml
1469   target: _blank
1470 - parent: program
1471   id: program_administration_area
1472   name: Administration area
1473   order: 400
1474   access: display_admin_link
1475   params:
1476     action: Admin/login
1477 - parent: program
1478   id: program_documentation_in_german_
1479   name: Documentation (in German)
1480   order: 500
1481   href: doc/kivitendo-Dokumentation.pdf
1482   target: _blank
1483 - parent: program
1484   id: program_kivitendo_website_external_
1485   name: kivitendo website (external)
1486   order: 600
1487   href: http://www.kivitendo.de/
1488   target: _blank
1489 - parent: program
1490   id: program_logout
1491   name: Logout
1492   icon: logout
1493   order: 700
1494   params:
1495     action: LoginScreen/logout