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