簡體   English   中英

一個包含所有項目的時鍾表,在 Org 模式下進行工作量估計

[英]A clock table with all items with an effort estimate in Org-mode

在 Emacs 的 Org 模式中,我如何制作一個時鍾表,顯示所有具有Effort 估計的項目,而不僅僅是那些已計時的項目

提前致謝。

即使不是你想要的,我在郵件列表中找到了這個解決方案:

#+TITLE: BIRD
#+COLUMNS: %50ITEM(Task) %Effort(Estimated){:} %CLOCKSUM(Clocked) %5TODO(State)

* Effort
#+BEGIN: columnview :hlines 2 :id "756fcb74-2e46-4757-82b8-461ed30a5f11"
| Task                                                | Estimated | Clocked | State |
|-----------------------------------------------------+-----------+---------+-------|
| User Stories                                        |     54:00 |    1:24 |       |
|-----------------------------------------------------+-----------+---------+-------|
| UI                                                  |        48 |    1:24 | DONE  |
| Remove Company, Street, Place, Country again        |           |    1:24 | DONE  |
|-----------------------------------------------------+-----------+---------+-------|
| Check preconditions                                 |         6 |         |       |
| Check hw preconditions: hard disk, core memory, etc |           |         | DONE  |
#+END:

* User Stories
  :PROPERTIES:
  :ID:       756fcb74-2e46-4757-82b8-461ed30a5f11
  :END:

** DONE UI [11/11]
   :PROPERTIES:
   :Effort:   48
   :END:

The user wants to have a familiar UI. Should look like xxxx,
etc. The user wants to be entertained within his or her monkey time.

[2012-06-25 Mon] Extended: Show every parameter on its own page.

*** DONE Remove Company, Street, Place, Country again
    - State "DONE"       from "OPEN"       [2012-07-17 Tue 09:51]
    - State "OPEN"       from "TODO"       [2012-07-17 Tue 08:27]
    CLOCK: [2012-07-17 Tue 08:27]--[2012-07-17 Tue 09:51] =>  1:24
    [2012-07-16 Mon]

- Am [2012-07-16 Mon] so mit xx besprochen

** Check preconditions [4/4]
   :PROPERTIES:
   :Effort:   6
   :END:

The admin wants only certain user classes in certain circumstances to
be allowed to trigger reinstallations. The admin wants the user to
migrate only clients, that she is logged in into. If the
reinstallation is not allowed, inform the user in an approbiate way
and abort. 

- Check dispersion of load
- Check user class (FF, XX, TT, etc) if allowed to reinstall
- Check if computer is allowed for reinstall 

*** DONE Check hw preconditions: hard disk, core memory, etc
    - State "DONE"       from "TODO"       [2012-07-17 Tue 09:21]
    [2012-07-09 Mon]

- Escript periodically retrieves values on client and sets computer property
- user.ps1 check computer property

它在塊中使用列視圖,該塊具有Effort,Clocked和State列。 該ID用於定義列視圖應捕獲的子樹。 您還可以指定global或最適合您的內容。

您可以使用:properties (更多信息在這里)。

所以,它會是這樣的:

#+BEGIN: clocktable :scope file :maxlevel 2 :properties ("Effort")
#+END:

您會注意到“努力”將顯示為時鍾表的第一列。 如果這是一個問題,您可以使用此處描述的解決方案(也使用:formatter

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM