Recht: Ansehen von Belegen bei Angebot und Auftrag berücksichtigen
[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 | sales_quotation_view
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 | sales_order_view
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 | request_quotation_view
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 | purchase_order_view
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_supplier_delivery_orders
475   name: Supplier Delivery Orders
476   order: 350
477   access: purchase_delivery_order_edit
478   module: do.pl
479   params:
480     action: search
481     type: supplier_delivery_order
482 - parent: ap_reports
483   id: ap_reports_vendor_invoices_ap_transactions
484   name: Vendor Invoices & AP Transactions
485   order: 400
486   module: ap.pl
487   params:
488     action: search
489 - parent: ap_reports
490   id: ap_reports_delivery_plan
491   name: Delivery Plan
492   order: 500
493   access: delivery_plan
494   params:
495     action: DeliveryPlan/list
496     vc: vendor
497 - parent: ap_reports
498   id: ap_reports_delivery_value_report
499   name: Delivery Value Report
500   order: 600
501   access: delivery_value_report
502   params:
503     action: DeliveryValueReport/list
504     vc: vendor
505 - parent: ap_reports
506   id: ap_reports_letters
507   name: Letters
508   order: 1100
509   access: purchase_letter_report
510   params:
511     action: Letter/list
512     is_sales: 0
513 - id: warehouse
514   name: Warehouse
515   icon: warehouse
516   order: 400
517 - parent: warehouse
518   id: warehouse_stock
519   name: Stock
520   order: 100
521   access: warehouse_management
522   params:
523     action: Inventory/stock_in
524 - parent: warehouse
525   id: warehouse_produce_assembly
526   name: Produce Assembly
527   icon: assembly_produce
528   order: 200
529   access: warehouse_management
530   module: wh.pl
531   params:
532     action: transfer_warehouse_selection
533     trans_type: assembly
534 - parent: warehouse
535   id: warehouse_transfer
536   name: Transfer
537   order: 300
538   access: warehouse_management
539   module: wh.pl
540   params:
541     action: transfer_warehouse_selection
542     trans_type: transfer
543 - parent: warehouse
544   id: warehouse_removal
545   name: Removal
546   order: 400
547   access: warehouse_management
548   module: wh.pl
549   params:
550     action: transfer_warehouse_selection
551     trans_type: removal
552 - parent: warehouse
553   id: warehouse_stocktaking
554   name: Stocktaking
555   order: 450
556   access: warehouse_management
557   params:
558     action: Inventory/stocktaking
559 - parent: warehouse
560   id: warehouse_reports
561   name: Reports
562   order: 500
563 - parent: warehouse_reports
564   id: warehouse_reports_warehouse_content
565   name: Warehouse content
566   order: 100
567   access: warehouse_contents | warehouse_management
568   module: wh.pl
569   params:
570     action: report
571 - parent: warehouse_reports
572   id: warehouse_reports_whjournal
573   name: WHJournal
574   order: 200
575   access: warehouse_management
576   module: wh.pl
577   params:
578     action: journal
579 - parent: warehouse_reports
580   id: warehouse_reports_whusage
581   name: WHUsage
582   icon: warehouse_usage
583   order: 300
584   access: warehouse_contents | warehouse_management
585   params:
586     action: Inventory/stock_usage
587 - parent: warehouse_reports
588   id: warehouse_stocktaking_journal
589   name: Stocktaking Journal
590   order: 400
591   access: warehouse_contents | warehouse_management
592   params:
593     action: Inventory/stocktaking_journal
594 - id: general_ledger
595   name: General Ledger
596   icon: gl
597   order: 500
598 - parent: general_ledger
599   id: general_ledger_add_transaction
600   name: Add Transaction
601   icon: transaction_add
602   order: 100
603   access: gl_transactions
604   module: gl.pl
605   params:
606     action: add
607 - parent: general_ledger
608   id: general_ledger_add_ar_transaction
609   name: Add AR Transaction
610   icon: ar_transaction_add
611   order: 200
612   access: ar_transactions
613   module: ar.pl
614   params:
615     action: add
616 - parent: general_ledger
617   id: general_ledger_add_ap_transaction
618   name: Add AP Transaction
619   icon: ap_transaction_add
620   order: 300
621   access: ap_transactions
622   module: ap.pl
623   params:
624     action: add
625 - parent: general_ledger
626   id: general_ledger_datev_export_assistent
627   name: DATEV - Export Assistent
628   icon: datev
629   order: 400
630   access: datev_export & client/feature_datev
631   module: datev.pl
632   params:
633     action: export
634 - parent: general_ledger
635   id: general_ledger_gobd_export
636   name: GoBD Export
637   icon: gobd
638   order: 450
639   access: general_ledger
640   params:
641     action: GoBD/filter
642 - parent: general_ledger
643   id: year_end_closing
644   name: Year-end closing
645   icon: cbob
646   order: 470
647   access: general_ledger
648   params:
649     action: YearEndTransactions/form
650 - parent: general_ledger
651   id: zugferd_import
652   name: Factur-X/ZUGFeRD import
653   icon: cbob
654   order: 485
655   access: ap_transactions
656   params:
657     action: ZUGFeRD/upload_zugferd
658 - parent: general_ledger
659   id: pay_posting_import
660   name: DATEV - Pay Postings Import
661   icon: datev
662   order: 495
663   access: datev_export & client/feature_datev
664   params:
665     action: PayPostingImport/upload_pay_postings
666 - parent: general_ledger
667   id: general_ledger_reports
668   name: Reports
669   icon: gl_report
670   order: 500
671 - parent: general_ledger_reports
672   id: general_ledger_reports_ar_aging
673   name: AR Aging
674   icon: ar_aging
675   order: 100
676   access: general_ledger
677   module: rp.pl
678   params:
679     action: report
680     report: ar_aging
681 - parent: general_ledger_reports
682   id: general_ledger_reports_ap_aging
683   name: AP Aging
684   icon: ap_aging
685   order: 200
686   access: general_ledger
687   module: rp.pl
688   params:
689     action: report
690     report: ap_aging
691 - parent: general_ledger_reports
692   id: general_ledger_reports_journal
693   name: Journal
694   icon: journal
695   order: 300
696   access: general_ledger | gl_transactions
697   module: gl.pl
698   params:
699     action: search
700 - id: cash
701   name: Cash
702   icon: cash
703   order: 600
704 - parent: cash
705   id: cash_receipt
706   name: Receipt
707   icon: receipt
708   order: 100
709   access: cash
710   module: cp.pl
711   params:
712     action: payment
713     vc: customer
714     type: receipt
715 - parent: cash
716   id: cash_payment
717   name: Payment
718   icon: payment
719   order: 200
720   access: cash
721   module: cp.pl
722   params:
723     action: payment
724     vc: vendor
725     type: check
726 - parent: cash
727   id: cash_bank_collection_via_sepa
728   name: Bank collection via SEPA
729   order: 300
730   access: cash
731   module: sepa.pl
732   params:
733     action: bank_transfer_add
734     vc: customer
735 - parent: cash
736   id: cash_bank_transfer_via_sepa
737   name: Bank transfer via SEPA
738   order: 400
739   access: cash
740   module: sepa.pl
741   params:
742     action: bank_transfer_add
743     vc: vendor
744 - parent: cash
745   id: cash_bank_import_menu
746   name: Bank Import
747   order: 500
748   access: bank_transaction
749 - parent: cash_bank_import_menu
750   id: cash_bank_import_csv
751   name: Custom CSV format
752   order: 100
753   params:
754     action: CsvImport/new
755     profile.type: bank_transactions
756 - parent: cash_bank_import_menu
757   id: cash_bank_import_mt940
758   name: SWIFT MT940 format
759   order: 200
760   params:
761     action: BankImport/upload_mt940
762 - parent: cash
763   id: cash_bank_transactions_mt940
764   name: Bank transactions MT940
765   order: 600
766   access: bank_transaction
767   params:
768     action: BankTransaction/search
769 - parent: cash
770   id: cash_reconciliation_with_bank
771   name: Reconciliation with bank
772   order: 700
773   access: bank_transaction
774   params:
775     action: Reconciliation/search
776 - parent: cash
777   id: cash_reconciliation
778   name: Reconciliation
779   icon: reconcilliation
780   order: 800
781   access: cash
782   module: rc.pl
783   params:
784     action: reconciliation
785 - parent: cash
786   id: cash_reports
787   name: Reports
788   icon: cash_report
789   order: 900
790 - parent: cash_reports
791   id: cash_reports_receipts
792   name: Receipts
793   icon: receipt_report
794   order: 100
795   access: cash
796   module: rp.pl
797   params:
798     action: report
799     report: receipts
800 - parent: cash_reports
801   id: cash_reports_payments
802   name: Payments
803   icon: payment_report
804   order: 200
805   access: cash
806   module: rp.pl
807   params:
808     action: report
809     report: payments
810 - parent: cash_reports
811   id: cash_reports_bank_collections_via_sepa
812   name: Bank collections via SEPA
813   order: 300
814   access: cash
815   module: sepa.pl
816   params:
817     action: bank_transfer_search
818     vc: customer
819 - parent: cash_reports
820   id: cash_reports_bank_transfers_via_sepa
821   name: Bank transfers via SEPA
822   order: 400
823   access: cash
824   module: sepa.pl
825   params:
826     action: bank_transfer_search
827     vc: vendor
828 - parent: cash_reports
829   id: cash_reports_bank_transactions
830   name: Bank transactions
831   order: 500
832   access: bank_transaction
833   params:
834     action: BankTransaction/list_all
835 - id: reports
836   name: Reports
837   icon: report
838   order: 700
839 - parent: reports
840   id: reports_chart_of_accounts
841   name: Chart of Accounts
842   icon: chart_of_accounts
843   order: 100
844   access: report
845   module: ca.pl
846   params:
847     action: chart_of_accounts
848 - parent: reports
849   id: reports_trial_balance
850   name: Trial Balance
851   order: 200
852   access: report
853   module: rp.pl
854   params:
855     action: report
856     report: trial_balance
857 - parent: reports
858   id: reports_erfolgsrechnung
859   name: Erfolgsrechnung
860   icon: income_statement
861   order: 300
862   access: report & client/feature_erfolgsrechnung
863   module: rp.pl
864   params:
865     action: report
866     report: erfolgsrechnung
867 - parent: reports
868   id: reports_income_statement
869   name: Income Statement
870   icon: income_statement
871   order: 300
872   access: report & client/feature_eurechnung
873   module: rp.pl
874   params:
875     action: report
876     report: income_statement
877 - parent: reports
878   id: reports_bwa
879   name: BWA
880   order: 400
881   access: report & client/feature_eurechnung
882   module: rp.pl
883   params:
884     action: report
885     report: bwa
886 - parent: reports
887   id: reports_balance_sheet
888   name: Balance Sheet
889   icon: balance_sheet
890   order: 500
891   access: report & client/feature_balance
892   module: rp.pl
893   params:
894     action: report
895     report: balance_sheet
896 - parent: reports
897   id: reports_ustva
898   name: UStVa
899   icon: ustva
900   order: 600
901   access: advance_turnover_tax_return & client/feature_ustva
902   module: ustva.pl
903   params:
904     action: report
905 - parent: reports
906   id: reports_projecttransactions
907   name: Projecttransactions
908   order: 700
909   access: report
910   module: rp.pl
911   params:
912     action: report
913     report: projects
914 - parent: reports
915   id: reports_financial_overview
916   name: Financial Overview
917   order: 800
918   access: report
919   params:
920     action: FinancialOverview/list
921 - parent: reports
922   id: reports_liquidity_projection
923   name: Liquidity projection
924   order: 900
925   access: report
926   params:
927     action: LiquidityProjection/show
928 - id: batch_printing
929   name: Batch Printing
930   icon: printing
931   order: 800
932   access: batch_printing
933 - parent: batch_printing
934   id: batch_printing_sales_invoices
935   name: Sales Invoices
936   icon: sales_invoice_printing
937   order: 100
938   access: invoice_edit
939   module: bp.pl
940   params:
941     action: search
942     vc: customer
943     type: invoice
944 - parent: batch_printing
945   id: batch_printing_sales_orders
946   name: Sales Orders
947   icon: sales_order_printing
948   order: 200
949   access: sales_order_edit
950   module: bp.pl
951   params:
952     action: search
953     type: sales_order
954     vc: customer
955 - parent: batch_printing
956   id: batch_printing_quotations
957   name: Quotations
958   icon: quotation_printing
959   order: 300
960   access: sales_quotation_edit
961   module: bp.pl
962   params:
963     action: search
964     vc: customer
965     type: sales_quotation
966 - parent: batch_printing
967   id: batch_printing_packing_lists
968   name: Packing Lists
969   icon: package_lists
970   order: 400
971   access: invoice_edit | sales_order_edit
972   module: bp.pl
973   params:
974     action: search
975     type: packing_list
976     vc: customer
977 - parent: batch_printing
978   id: batch_printing_purchase_orders
979   name: Purchase Orders
980   icon: purchase_order_printing
981   order: 500
982   access: purchase_order_edit
983   module: bp.pl
984   params:
985     action: search
986     type: purchase_order
987     vc: vendor
988 - parent: batch_printing
989   id: batch_printing_rfqs
990   name: RFQs
991   icon: rfq_printing
992   order: 600
993   access: request_quotation_edit
994   module: bp.pl
995   params:
996     action: search
997     vc: vendor
998     type: request_quotation
999 - parent: batch_printing
1000   id: batch_printing_checks
1001   name: Checks
1002   order: 700
1003   access: cash
1004   module: bp.pl
1005   params:
1006     action: search
1007     type: check
1008     vc: vendor
1009 - parent: batch_printing
1010   id: batch_printing_receipts
1011   name: Receipts
1012   icon: receipt_printing
1013   order: 800
1014   access: cash
1015   module: bp.pl
1016   params:
1017     action: search
1018     vc: customer
1019     type: receipt
1020 - id: productivity
1021   name: Productivity
1022   icon: productivity
1023   order: 900
1024 - parent: productivity
1025   id: productivity_show_todo_list
1026   name: Show TODO list
1027   order: 100
1028   access: productivity
1029   module: todo.pl
1030   params:
1031     action: show_todo_list
1032 - parent: productivity
1033   id: productivity_add_follow_up
1034   name: Add Follow-Up
1035   order: 200
1036   access: productivity
1037   module: fu.pl
1038   params:
1039     action: add
1040 - parent: productivity
1041   id: productivity_edit_access_rights
1042   name: Edit Access Rights
1043   order: 300
1044   access: productivity
1045   module: fu.pl
1046   params:
1047     action: edit_access_rights
1048 - parent: productivity
1049   id: productivity_reports
1050   name: Reports
1051   order: 400
1052 - parent: productivity_reports
1053   id: productivity_reports_follow_ups
1054   name: Follow-Ups
1055   order: 100
1056   access: productivity
1057   module: fu.pl
1058   params:
1059     action: search
1060 - parent: productivity_reports
1061   id: productivity_reports_email_journal
1062   name: Email journal
1063   order: 200
1064   access: email_journal
1065   module: controller.pl
1066   icon: mail_journal
1067   params:
1068     action: EmailJournal/list
1069 - id: system
1070   name: System
1071   icon: system
1072   order: 1000
1073   access: config
1074 - parent: system
1075   id: system_client_configuration
1076   name: Client Configuration
1077   order: 100
1078   access: admin
1079   params:
1080     action: ClientConfig/edit
1081 - parent: system
1082   id: system_ustva_einstellungen
1083   name: UStVa Einstellungen
1084   order: 200
1085   access: client/feature_ustva
1086   module: ustva.pl
1087   params:
1088     action: config_step1
1089 - parent: system
1090   id: system_edit_dunning
1091   name: Edit Dunning
1092   order: 300
1093   module: dn.pl
1094   params:
1095     action: edit_config
1096 - parent: system
1097   id: system_chart_of_accounts
1098   name: Chart of Accounts
1099   order: 400
1100 - parent: system_chart_of_accounts
1101   id: system_chart_of_accounts_add_account
1102   name: Add Account
1103   order: 100
1104   module: am.pl
1105   params:
1106     action: add_account
1107 - parent: system_chart_of_accounts
1108   id: system_chart_of_accounts_list_accounts
1109   name: List Accounts
1110   order: 200
1111   module: am.pl
1112   params:
1113     action: list_account
1114 - parent: system_chart_of_accounts
1115   id: system_chart_of_accounts_report_configuration_overview
1116   name: Report configuration overview
1117   order: 300
1118   params:
1119     action: Chart/show_report_configuration_overview
1120 - parent: system
1121   id: system_buchungsgruppen
1122   name: Booking groups
1123   order: 500
1124   params:
1125     action: Buchungsgruppen/list
1126 - parent: system
1127   id: system_taxzones
1128   name: Taxzones
1129   order: 600
1130   params:
1131     action: Taxzones/list
1132 - parent: system
1133   id: system_taxes
1134   name: Taxes
1135   order: 700
1136   module: am.pl
1137   params:
1138     action: list_tax
1139 - parent: system
1140   id: system_bank_accounts
1141   name: Bank accounts
1142   order: 800
1143   params:
1144     action: SimpleSystemSetting/list
1145     type: bank_account
1146 - parent: system
1147   id: system_partsgroups
1148   name: Partsgroups
1149   order: 900
1150   params:
1151     action: SimpleSystemSetting/list
1152     type: parts_group
1153 - parent: system
1154   id: system_part_classification
1155   name: Parts Classification
1156   icon: partsclassific
1157   order: 1100
1158   params:
1159     action: SimpleSystemSetting/list
1160     type: part_classification
1161 - parent: system
1162   id: system_pricegroups
1163   name: Pricegroups
1164   order: 1120
1165   params:
1166     action: SimpleSystemSetting/list
1167     type: pricegroup
1168 - parent: system
1169   id: system_edit_units
1170   name: Edit units
1171   order: 1140
1172   module: am.pl
1173   params:
1174     action: edit_units
1175 - parent: system
1176   id: system_price_factors
1177   name: Price Factors
1178   order: 1200
1179   params:
1180     action: SimpleSystemSetting/list
1181     type: price_factor
1182 - parent: system
1183   id: system_greetings
1184   name: Greetings
1185   order: 1250
1186   params:
1187     action: SimpleSystemSetting/list
1188     type: greeting
1189 - parent: system
1190   id: system_departments
1191   name: Departments
1192   order: 1300
1193   params:
1194     action: SimpleSystemSetting/list
1195     type: department
1196 - parent: system
1197   id: system_types_of_business
1198   name: Types of Business
1199   order: 1400
1200   params:
1201     action: SimpleSystemSetting/list
1202     type: business
1203 - parent: system
1204   id: system_contact_titles
1205   name: Contact Titles
1206   order: 1420
1207   params:
1208     action: SimpleSystemSetting/list
1209     type: contact_title
1210 - parent: system
1211   id: system_contact_departments
1212   name: Contact Departments
1213   order: 1430
1214   params:
1215     action: SimpleSystemSetting/list
1216     type: contact_department
1217 - parent: system
1218   id: system_project_types
1219   name: Project Types
1220   order: 1600
1221   params:
1222     action: SimpleSystemSetting/list
1223     type: project_type
1224 - parent: system
1225   id: system_project_status
1226   name: Project Status
1227   order: 1700
1228   params:
1229     action: SimpleSystemSetting/list
1230     type: project_status
1231 - parent: system
1232   id: system_requirement_specs
1233   name: Requirement specs
1234   order: 1800
1235 - parent: system_requirement_specs
1236   id: system_requirement_specs_pre_defined_texts
1237   name: Pre-defined Texts
1238   order: 100
1239   params:
1240     action: SimpleSystemSetting/list
1241     type: requirement_spec_predefined_text
1242 - parent: system_requirement_specs
1243   id: system_requirement_specs_requirement_spec_types
1244   name: Requirement Spec Types
1245   order: 200
1246   params:
1247     action: SimpleSystemSetting/list
1248     type: requirement_spec_type
1249 - parent: system_requirement_specs
1250   id: system_requirement_specs_requirement_spec_statuses
1251   name: Requirement Spec Statuses
1252   order: 300
1253   params:
1254     action: SimpleSystemSetting/list
1255     type: requirement_spec_status
1256 - parent: system_requirement_specs
1257   id: system_requirement_specs_complexities
1258   name: Complexities
1259   order: 400
1260   params:
1261     action: SimpleSystemSetting/list
1262     type: requirement_spec_complexity
1263 - parent: system_requirement_specs
1264   id: system_requirement_specs_risks
1265   name: Risks
1266   order: 500
1267   params:
1268     action: SimpleSystemSetting/list
1269     type: requirement_spec_risk
1270 - parent: system_requirement_specs
1271   id: system_requirement_specs_acceptance_statuses
1272   name: Acceptance Statuses
1273   order: 600
1274   params:
1275     action: SimpleSystemSetting/list
1276     type: requirement_spec_acceptance_status
1277 - parent: system
1278   id: system_languages_and_translations
1279   name: Languages and translations
1280   order: 1900
1281 - parent: system_languages_and_translations
1282   id: system_languages_and_translations_add_language
1283   name: Languages
1284   order: 100
1285   params:
1286     action: SimpleSystemSetting/list
1287     type: language
1288 - parent: system_languages_and_translations
1289   id: system_languages_and_translations_greetings
1290   name: Greetings
1291   order: 300
1292   module: generictranslations.pl
1293   params:
1294     action: edit_greetings
1295 - parent: system_languages_and_translations
1296   id: system_languages_and_translations_sepa_strings
1297   name: SEPA strings
1298   order: 400
1299   module: generictranslations.pl
1300   params:
1301     action: edit_sepa_strings
1302 - parent: system_languages_and_translations
1303   id: system_languages_and_translations_zugferd_notes
1304   name: Factur-X/ZUGFeRD notes for each invoice
1305   order: 450
1306   module: generictranslations.pl
1307   params:
1308     action: edit_zugferd_notes
1309 - parent: system_languages_and_translations
1310   id: system_languages_and_translations_email_strings
1311   name: Preset email strings
1312   order: 500
1313   module: generictranslations.pl
1314   params:
1315     action: edit_email_strings
1316 - parent: system
1317   id: system_payment_terms
1318   name: Payment Terms
1319   order: 2000
1320   params:
1321     action: PaymentTerm/list
1322 - parent: system
1323   id: system_delivery_terms
1324   name: Delivery Terms
1325   order: 2100
1326   params:
1327     action: DeliveryTerm/list
1328 - parent: system
1329   id: system_manage_custom_variables
1330   name: Manage Custom Variables
1331   order: 2200
1332   params:
1333     action: CustomVariableConfig/list
1334 - parent: system
1335   id: system_warehouses
1336   name: Warehouses
1337   order: 2300
1338   module: am.pl
1339   params:
1340     action: list_warehouses
1341 - parent: system
1342   id: system_shops
1343   name: Web shops
1344   order: 2350
1345   access: edit_shop_config
1346   params:
1347     action: Shop/list
1348 - parent: system
1349   id: system_import_csv
1350   name: Import CSV
1351   order: 2400
1352 - parent: system_import_csv
1353   id: system_import_csv_customers_and_vendors
1354   name: Customers and vendors
1355   order: 100
1356   params:
1357     action: CsvImport/new
1358     profile.type: customers_vendors
1359 - parent: system_import_csv
1360   id: system_import_csv_contacts
1361   name: Contacts
1362   order: 200
1363   params:
1364     action: CsvImport/new
1365     profile.type: contacts
1366 - parent: system_import_csv
1367   id: system_import_csv_additional_billing_address
1368   name: Additional Billing Addresses
1369   order: 250
1370   params:
1371     action: CsvImport/new
1372     profile.type: billing_addresses
1373 - parent: system_import_csv
1374   id: system_import_csv_shipto
1375   name: Shipto
1376   order: 300
1377   params:
1378     action: CsvImport/new
1379     profile.type: addresses
1380 - parent: system_import_csv
1381   id: system_import_csv_parts
1382   name: Parts
1383   order: 400
1384   params:
1385     action: CsvImport/new
1386     profile.type: parts
1387 - parent: system_import_csv
1388   id: system_import_csv_inventories
1389   name: Inventories
1390   order: 500
1391   params:
1392     action: CsvImport/new
1393     profile.type: inventories
1394 - parent: system_import_csv
1395   id: system_import_csv_projects
1396   name: Projects
1397   order: 600
1398   params:
1399     action: CsvImport/new
1400     profile.type: projects
1401 - parent: system_import_csv
1402   id: system_import_csv_orders
1403   name: Orders
1404   order: 700
1405   params:
1406     action: CsvImport/new
1407     profile.type: orders
1408 - parent: system_import_csv
1409   id: system_import_csv_delivery_orders
1410   name: Delivery Orders
1411   order: 720
1412   params:
1413     action: CsvImport/new
1414     profile.type: delivery_orders
1415 - parent: system_import_csv
1416   id: system_import_csv_ar_transactions
1417   name: AR Transactions
1418   order: 800
1419   params:
1420     action: CsvImport/new
1421     profile.type: ar_transactions
1422 - parent: system
1423   id: system_templates
1424   name: Templates
1425   order: 2500
1426   access: admin
1427 - parent: system_templates
1428   id: system_templates_html_templates
1429   name: HTML Templates
1430   order: 100
1431   module: amtemplates.pl
1432   params:
1433     action: display_template_form
1434     type: templates
1435     format: html
1436 - parent: system_templates
1437   id: system_templates_latex_templates
1438   name: LaTeX Templates
1439   order: 200
1440   module: amtemplates.pl
1441   params:
1442     action: display_template_form
1443     format: tex
1444     type: templates
1445 - parent: system
1446   id: system_general_ledger_corrections
1447   name: General Ledger Corrections
1448   order: 2600
1449   module: acctranscorrections.pl
1450   params:
1451     action: analyze_filter
1452 - parent: system
1453   id: system_background_jobs_and_task_server
1454   name: Background jobs and task server
1455   order: 2700
1456   access: admin
1457 - parent: system_background_jobs_and_task_server
1458   id: system_background_jobs_and_task_server_list_current_background_jobs
1459   name: List current background jobs
1460   order: 100
1461   params:
1462     action: BackgroundJob/list
1463 - parent: system_background_jobs_and_task_server
1464   id: system_background_jobs_and_task_server_background_job_history
1465   name: Background job history
1466   order: 200
1467   params:
1468     action: BackgroundJobHistory/list
1469 - parent: system_background_jobs_and_task_server
1470   id: system_background_jobs_and_task_server_task_server_control
1471   name: Task server control
1472   order: 300
1473   params:
1474     action: TaskServer/show
1475 - parent: system
1476   id: system_audit_control
1477   name: Audit Control
1478   order: 2800
1479   module: am.pl
1480   params:
1481     action: audit_control
1482 - parent: system
1483   id: system_history_search_engine
1484   name: History Search Engine
1485   order: 2900
1486   module: am.pl
1487   params:
1488     action: show_history_search
1489 - parent: system
1490   id: system_employees
1491   name: Employees
1492   order: 3000
1493   access: admin
1494   params:
1495     action: Employee/list
1496 - id: program
1497   name: Program
1498   icon: program
1499   order: 1100
1500 - parent: program
1501   id: program_user_preferences
1502   name: User Preferences
1503   order: 100
1504   module: am.pl
1505   params:
1506     action: config
1507 - parent: program
1508   id: program_internal_phone_list
1509   name: Internal Phone List
1510   order: 200
1511   params:
1512     action: CTI/list_internal_extensions
1513 - parent: program
1514   id: program_version
1515   name: Version
1516   icon: version
1517   order: 300
1518   module: login.pl
1519   params:
1520     action: company_logo
1521     no_todo_list: 1
1522 - parent: program
1523   id: program_kivitendo_modul
1524   name: kivitendo modules
1525   order: 350
1526 - parent: program_kivitendo_modul
1527   id: program_kivitendo_modul_overview
1528   name: Overview kivitendo modules
1529   order: 100
1530   href: http://www.kivitendo-premium.de/module.shtml
1531   target: _blank
1532 - parent: program_kivitendo_modul
1533   id: program_kivitendo_modul_activate
1534   name: Activate kivitendo module
1535   order: 200
1536   href: http://www.kivitendo-premium.de/modul-aktivieren.shtml
1537   target: _blank
1538 - parent: program
1539   id: program_administration_area
1540   name: Administration area
1541   order: 400
1542   access: display_admin_link
1543   params:
1544     action: Admin/login
1545 - parent: program
1546   id: program_documentation_in_german_
1547   name: Documentation (in German)
1548   order: 500
1549   href: doc/kivitendo-Dokumentation.pdf
1550   target: _blank
1551 - parent: program
1552   id: program_kivitendo_website_external_
1553   name: kivitendo website (external)
1554   order: 600
1555   href: http://www.kivitendo.de/
1556   target: _blank
1557 - parent: program
1558   id: program_logout
1559   name: Logout
1560   icon: logout
1561   order: 700
1562   params:
1563     action: LoginScreen/logout
1564
1565 - id: develop
1566   name: Developer Tools
1567   icon: developer
1568   order: 1200
1569   access: developer
1570 - parent: develop
1571   id: part_test
1572   name: Part Test
1573   access: developer
1574   icon: part
1575   order: 100
1576   params:
1577     action: Part/test_page