From: Mamoru Miura <mamo3gr@gmail.com>
To: Ihor Radchenko <yantar92@gmail.com>
Cc: bzg@gnu.org, emacs-orgmode@gnu.org, s.vlasov@uvt.nl
Subject: Re: Bug: Appointments duration and effort sums in agenda column view [9.3.7 (release_9.3.7-700-ga1e5be @ ~/.emacs.d/straight/build/org/)]
Date: Wed, 20 Jul 2022 08:17:40 +0900 [thread overview]
Message-ID: <CADX2rP_NnULRKXMK4KnHWtEJSVSQkp_m-qSMu2oje3MAOvtRSQ@mail.gmail.com> (raw)
In-Reply-To: <87mtd542uv.fsf@localhost>
[-- Attachment #1: Type: text/plain, Size: 1991 bytes --]
Dear Ihor,
Thank you for responding.
The issue is failing to collect (and sum) appointments' duration as
effort even when `org-agenda-columns-add-appointments-to-effort-sum'
is t.
My environment:
* Emacs 28.1
* Org 9.5.4
Here's the setting (~/.emacs.d/init.el):
(setq org-directory "~/org/")
(setq org-agenda-files (list org-directory))
(setq org-columns-default-format "%Item %Effort{:}")
(setq org-agenda-columns-add-appointments-to-effort-sum t)
With putting org-file (~/org/test.org):
* My appointment
SCHEDULED: <2022-07-20 Wed 10:00-11:00>
* My appointment with effort
SCHEDULED: <2022-07-20 Wed 11:00-12:00>
:PROPERTIES:
:Effort: 0:30
:END:
Steps to see this issue:
1. run M-x org-agenda
2. type "a" to show "agenda for current week or day"
3. run M-x org-agenda-columns (C-c C-x C-c)
Then, you see that the column "Effort" for the item "My appointment"
is empty and not added to the daily effort summation.
Bug investigation and solving approach:
* The function `org-columns--collect-values' collects appointment
duration: https://github.com/bzg/org-mode/blob/e0b05b07528dea684f3439c017370436b8d37b50/lisp/org-colview.el#L291
* With running M-x describe-text-properties on the item "My
appointment" in the *Org Agenda* buffer, it has a text property
"duration" and its value is correct (60.0).
Given these facts, the property "duration" seems to disappear
somewhere or the function fails to collect it. (Unfortunately, I
didn't have the room to deep dive into further details.)
* To solve this, instead of collecting value, get the corresponding
item (entry) and recompute the duration from it. I found a computing
function `org-agenda-format-item' and re-use it.
I re-attach a patch because the previous patch contains a bug.
See also (insightful reports by Stanislav):
* https://emacs.stackexchange.com/questions/58875/how-do-i-add-appointments-to-effort-sum
* https://lists.gnu.org/archive/html/emacs-orgmode/2020-08/msg00090.html
Kind regards,
Mamoru
[-- Attachment #2: 0001-lisp-org-colview.el-Fix-missing-addition-of-appointm.patch --]
[-- Type: application/octet-stream, Size: 1442 bytes --]
From bfdb96b0646eac2174d3ac632986e97e45711225 Mon Sep 17 00:00:00 2001
From: Mamoru Miura <mamo3gr@gmail.com>
Date: Wed, 20 Jul 2022 07:06:32 +0900
Subject: [PATCH] lisp/org-colview.el: Fix missing addition of appointments to
effort
* lisp/org-colview.el (org-columns--collect-values): re-compute
appointments' duration because this funtion can not get text property
`'duration'.
TINYCHANGE
---
lisp/org-colview.el | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/lisp/org-colview.el b/lisp/org-colview.el
index 13643101b..eae09e096 100644
--- a/lisp/org-colview.el
+++ b/lisp/org-colview.el
@@ -288,10 +288,9 @@ possible to override it with optional argument COMPILED-FMT."
;; to use appointment duration.
org-agenda-columns-add-appointments-to-effort-sum
(string= p (upcase org-effort-property))
- (get-text-property (point) 'duration)
- (propertize (org-duration-from-minutes
- (get-text-property (point) 'duration))
- 'face 'org-warning))
+ (when-let* ((formatted-item (org-agenda-format-item nil (org-get-entry) nil nil nil t))
+ (duration-string (get-text-property 0 'duration formatted-item)))
+ (propertize (org-duration-from-minutes duration-string) 'face 'org-warning)))
"")))
;; A non-nil COMPILED-FMT means we're calling from Org
;; Agenda mode, where we do not want leading stars for
--
2.37.0
next prev parent reply other threads:[~2022-07-19 23:18 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-18 14:41 Bug: Appointments duration and effort sums in agenda column view [9.3.7 (release_9.3.7-700-ga1e5be @ ~/.emacs.d/straight/build/org/)] Mamoru Miura
2022-07-19 14:02 ` Ihor Radchenko
2022-07-19 23:17 ` Mamoru Miura [this message]
2022-07-21 11:48 ` Ihor Radchenko
2022-07-27 0:49 ` Mamoru Miura
2022-07-27 4:06 ` Ihor Radchenko
2022-07-27 8:12 ` Mamoru Miura
-- strict thread matches above, loose matches on Subject: below --
2020-08-03 19:25 Stanislav Vlasov
2020-09-07 5:12 ` Bastien
2021-05-16 23:11 ` Bastien
2022-07-18 15:27 ` Mamoru Miura
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CADX2rP_NnULRKXMK4KnHWtEJSVSQkp_m-qSMu2oje3MAOvtRSQ@mail.gmail.com \
--to=mamo3gr@gmail.com \
--cc=bzg@gnu.org \
--cc=emacs-orgmode@gnu.org \
--cc=s.vlasov@uvt.nl \
--cc=yantar92@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).