[OJS 3.1.1] Accepted Dated

Greetings,

Can anyone give me a hint on how to extract submission accepted date?

I extracted submitted date as {$article->getDateSubmitted()|date_format}

I extracted published date as {$article->getDatePublished()|date_format}

But I am unable to extract accepted date.

Best regards,

Hi @anupent,

The acceptance date is a property of the most recent editorial decision, not the submission; in that case you’ll need to get the decisions and look at the list. See EditDecisionDAO.

Regards,
Alec Smecher
Public Knowledge Project Team

Hello @asmecher
I am using OJS-3.3.0-13 and I have searched so many articles but have not had success to get the Acceptance date using EditDecisionDAO. So kindly help me to get the acceptance date on the article_detail page.
I trying below mentioned code

<h2 class="label">
    {translate key="submission.accepted"}
</h2>	
    <div class="value">
    <span>{$acceptanceDate|date_format:$dateFormatShort}</span>
   </div>

I have found the date submitted but was not able to get the acceptance date.