Inventur: Eingabemaske und Journal im Inventory-Controller
[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/". If missing, access will be granted.
15 #
16 #          Example:
17 #            client/feature_default_enabled | ( feature & system )
18 #
19 # href:   fully qualified external link
20 # module: defaults to "controller.pl". Should not be present if the link is for
21 #         Controller::Base dispatching to enable routing. Otherwise this
22 #         script will be used.
23 # target: target window for link. ex: "_blank"
24 # params: additional url parameter
25 ---
26 - id: master_data
27   name: Master Data
28   icon: master_data
29   order: 100
30 - parent: master_data
31   id: master_data_add_customer
32   name: Add Customer
33   icon: customer_add
34   order: 100
35   access: customer_vendor_edit
36   params:
37     action: CustomerVendor/add
38     db: customer
39 - parent: master_data
40   id: master_data_add_vendor
41   name: Add Vendor
42   icon: vendor_add
43   order: 200
44   access: customer_vendor_edit
45   params:
46     action: CustomerVendor/add
47     db: vendor
48 - parent: master_data
49   id: master_data_add_part
50   name: Add Part
51   icon: part_add
52   order: 300
53   access: part_service_assembly_edit
54   params:
55     action: Part/add_part
56 - parent: master_data
57   id: master_data_add_service
58   name: Add Service
59   icon: service_add
60   order: 400
61   access: part_service_assembly_edit
62   params:
63     action: Part/add_service
64 - parent: master_data
65   id: master_data_add_assembly
66   name: Add Assembly
67   icon: assembly_add
68   order: 500
69   access: part_service_assembly_edit
70   params:
71     action: Part/add_assembly
72 - parent: master_data
73   id: master_data_add_assortment
74   name: Add Assortment
75   icon: assortment_add
76   order: 550
77   access: part_service_assembly_edit & client/feature_experimental
78   params:
79     action: Part/add_assortment
80 - parent: master_data
81   id: master_data_add_project
82   name: Add Project
83   icon: project_add
84   order: 600
85   access: project_edit
86   params:
87     action: Project/new
88 - parent: master_data
89   id: master_data_add_requirement_spec_template
90   name: Add Requirement Spec Template
91   order: 700
92   access: requirement_spec_edit
93   params:
94     action: RequirementSpec/new
95     is_template: 1
96 - parent: master_data
97   id: master_data_update_prices
98   name: Update Prices
99   icon: prices_update
100   order: 800
101   access: part_service_assembly_edit
102   params:
103     action: PartsPriceUpdate/search_update_prices
104 - parent: master_data
105   id: master_data_price_rules
106   name: Price Rules
107   order: 900
108   access: part_service_assembly_edit
109   params:
110     action: PriceRule/list
111     filter.obsolete: 0
112 - parent: master_data
113   id: master_data_reports
114   name: Reports
115   icon: master_data_report
116   order: 1000
117 - parent: master_data_reports
118   id: master_data_reports_customers
119   name: Customers
120   icon: customer_report
121   order: 100
122   access: customer_vendor_edit
123   params:
124     action: CustomerVendor/search
125     db: customer
126 - parent: master_data_reports
127   id: master_data_reports_vendors
128   name: Vendors
129   icon: vendor_report
130   order: 200
131   access: customer_vendor_edit
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   access: customer_vendor_edit
140   params:
141     action: CustomerVendor/search_contact
142     db: customer
143 - parent: master_data_reports
144   id: master_data_reports_articles
145   name: Articles
146   icon: part_report
147   order: 500
148   access: part_service_assembly_details
149   module: ic.pl
150   params:
151     action: search
152     searchitems: article
153 - parent: master_data_reports
154   id: master_data_reports_projects
155   name: Projects
156   icon: project_report
157   order: 700
158   access: project_edit
159   params:
160     action: Project/list
161     filter.active: active
162     filter.valid: valid
163 - parent: master_data_reports
164   id: master_data_reports_requirement_spec_templates
165   name: Requirement Spec Templates
166   order: 800
167   access: requirement_spec_edit
168   params:
169     action: RequirementSpec/list
170     is_template: 1
171 - id: ar
172   name: AR
173   icon: ar
174   order: 200
175 - parent: ar
176   id: ar_add_requirement_spec
177   name: Add Requirement Spec
178   order: 100
179   access: requirement_spec_edit
180   params:
181     action: RequirementSpec/new
182 - parent: ar
183   id: ar_add_quotation
184   name: Add Quotation
185   icon: quotation_add
186   order: 200
187   access: sales_quotation_edit
188   module: oe.pl
189   params:
190     action: add
191     type: sales_quotation
192 - parent: ar
193   id: ar_add_sales_order
194   name: Add Sales Order
195   icon: sales_order_add
196   order: 300
197   access: sales_order_edit
198   module: oe.pl
199   params:
200     action: add
201     type: sales_order
202 - parent: ar
203   id: ar_add_delivery_order
204   name: Add Delivery Order
205   icon: delivery_order_add
206   order: 400
207   access: sales_delivery_order_edit
208   module: do.pl
209   params:
210     action: add
211     type: sales_delivery_order
212 - parent: ar
213   id: ar_add_sales_invoice
214   name: Add Sales Invoice
215   icon: sales_invoice_add
216   order: 500
217   access: invoice_edit
218   module: is.pl
219   params:
220     action: add
221     type: invoice
222 - parent: ar
223   id: ar_add_credit_note
224   name: Add Credit Note
225   icon: credit_note_add
226   order: 600
227   access: invoice_edit
228   module: is.pl
229   params:
230     action: add
231     type: credit_note
232 - parent: ar
233   id: ar_add_dunning
234   name: Add Dunning
235   icon: dunning_add
236   order: 700
237   access: dunning_edit
238   module: dn.pl
239   params:
240     action: add
241 - parent: ar
242   id: ar_add_letter
243   name: Add Letter
244   order: 800
245   access: sales_letter_edit
246   params:
247     action: Letter/add
248     is_sales: 1
249 - parent: ar
250   id: ar_invoices
251   name: Invoices
252   icon: sales_invoice_add
253   order: 850
254 - parent: ar_invoices
255   id: ar_invoices_mass_add_sales_invoice
256   name: Mass Create Print Sales Invoice from Delivery Order
257   order: 100
258   access: invoice_edit
259   params:
260     noshow: 1
261     action: MassInvoiceCreatePrint/list_sales_delivery_orders
262 - parent: ar
263   id: ar_reports
264   name: Reports
265   icon: ar_report
266   order: 900
267 - parent: ar_reports
268   id: ar_reports_requirement_specs
269   name: Requirement Specs
270   order: 100
271   access: requirement_spec_edit
272   params:
273     action: RequirementSpec/list
274 - parent: ar_reports
275   id: ar_reports_quotations
276   name: Quotations
277   icon: report_quotations
278   order: 200
279   access: sales_quotation_edit
280   module: oe.pl
281   params:
282     action: search
283     type: sales_quotation
284 - parent: ar_reports
285   id: ar_reports_sales_orders
286   name: Sales Orders
287   icon: report_sales_orders
288   order: 300
289   access: sales_order_edit
290   module: oe.pl
291   params:
292     action: search
293     type: sales_order
294 - parent: ar_reports
295   id: ar_reports_delivery_orders
296   name: Delivery Orders
297   icon: delivery_order_report
298   order: 400
299   access: sales_delivery_order_edit
300   module: do.pl
301   params:
302     action: search
303     type: sales_delivery_order
304 - parent: ar_reports
305   id: ar_reports_invoices_credit_notes_ar_transactions
306   name: Invoices, Credit Notes & AR Transactions
307   icon: invoices_report
308   order: 500
309   access: invoice_edit
310   module: ar.pl
311   params:
312     action: search
313     nextsub: ar_transactions
314 - parent: ar_reports
315   id: ar_reports_sales_report
316   name: Sales Report
317   order: 600
318   access: invoice_edit
319   module: vk.pl
320   params:
321     action: search_invoice
322     nextsub: invoice_transactions
323 - parent: ar_reports
324   id: ar_reports_dunnings
325   name: Dunnings
326   icon: dunnings_report
327   order: 700
328   access: dunning_edit
329   module: dn.pl
330   params:
331     action: search
332 - parent: ar_reports
333   id: ar_order_item_search
334   name: Order item search
335   order: 750
336   access: sales_order_edit
337   params:
338     action: OrderItem/search
339 - parent: ar_reports
340   id: ar_reports_delivery_plan
341   name: Delivery Plan
342   order: 800
343   access: delivery_plan
344   params:
345     action: DeliveryPlan/list
346     vc: customer
347 - parent: ar_reports
348   id: ar_reports_delivery_value_report
349   name: Delivery Value Report
350   order: 900
351   access: delivery_value_report
352   params:
353     action: DeliveryValueReport/list
354     vc: customer
355 - parent: ar_reports
356   id: ar_reports_financial_controlling
357   name: Financial Controlling
358   order: 1000
359   access: sales_order_edit
360   params:
361     action: FinancialControllingReport/list
362 - parent: ar_reports
363   id: ar_reports_letters
364   name: Letters
365   order: 1100
366   access: sales_letter_report
367   params:
368     action: Letter/list
369     is_sales: 1
370 - id: webshop
371   name: Webshop
372   order: 250
373 - parent: webshop
374   id: webshop_import
375   name: Webshop Import
376   access: shop_order
377   params:
378     action: ShopOrder/list
379     filter.transferred:eq_ignore_empty: 0
380     filter.obsolete: 0
381     db: shop_orders
382     sort_by: shop_ordernumber
383 - parent: webshop
384   id: webshop_articles
385   name: Webshop articles
386   access: shop_part_edit
387   params:
388     action: ShopPart/list_articles
389     db: shop_parts
390     sort_by: part.onhand
391 - id: ap
392   name: AP
393   icon: ap
394   order: 300
395 - parent: ap
396   id: ap_add_rfq
397   name: Add RFQ
398   icon: rfq_add
399   order: 100
400   access: request_quotation_edit
401   module: oe.pl
402   params:
403     action: add
404     type: request_quotation
405 - parent: ap
406   id: ap_add_purchase_order
407   name: Add Purchase Order
408   icon: purchase_order_add
409   order: 200
410   access: purchase_order_edit
411   module: oe.pl
412   params:
413     action: add
414     type: purchase_order
415 - parent: ap
416   id: ap_add_delivery_note
417   name: Add Delivery Note
418   order: 300
419   access: client/allow_new_purchase_delivery_order & purchase_delivery_order_edit
420   module: do.pl
421   params:
422     action: add
423     type: purchase_delivery_order
424 - parent: ap
425   id: ap_add_vendor_invoice
426   name: Add Vendor Invoice
427   order: 400
428   access: client/allow_new_purchase_invoice & vendor_invoice_edit
429   module: ir.pl
430   params:
431     action: add
432     type: invoice
433 - parent: ap
434   id: ap_add_letter
435   name: Add Letter
436   order: 450
437   access: purchase_letter_edit
438   params:
439     action: Letter/add
440     is_sales: 0
441 - parent: ap
442   id: ap_reports
443   name: Reports
444   icon: ap_report
445   order: 500
446 - parent: ap_reports
447   id: ap_reports_rfqs
448   name: RFQs
449   icon: rfq_report
450   order: 100
451   access: request_quotation_edit
452   module: oe.pl
453   params:
454     action: search
455     type: request_quotation
456 - parent: ap_reports
457   id: ap_reports_purchase_orders
458   name: Purchase Orders
459   icon: purchase_order_report
460   order: 200
461   access: purchase_order_edit
462   module: oe.pl
463   params:
464     action: search
465     type: purchase_order
466 - parent: ap_reports
467   id: ap_reports_delivery_orders
468   name: Delivery Orders
469   order: 300
470   access: purchase_delivery_order_edit
471   module: do.pl
472   params:
473     action: search
474     type: purchase_delivery_order
475 - parent: ap_reports
476   id: ap_reports_vendor_invoices_ap_transactions
477   name: Vendor Invoices & AP Transactions
478   order: 400
479   access: vendor_invoice_edit
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: general_ledger_cbob_transactions
638   name: CB/OB Transactions
639   icon: cbob
640   order: 470
641   access: general_ledger
642   params:
643     action: YearEndTransactions/filter
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