• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Help with handling CF/SQL Date Arithmatic?

Participant ,
Nov 30, 2016 Nov 30, 2016

Copy link to clipboard

Copied

Hello

There is an order entry date: order_create_date.

I am able to display the aging by: #DateDiff("d", thequery.order_create_date, nowtime)#

I now need to stop the aging clock ticking with: order_onhold_date,

And resume the aging clock with: order_offhold_date

So it would be something like #DateDiff("d", thequery.order_create_date, nowtime)# minus #DateDiff("d",thequery.order_onhold_date,thequery.order_offhold_date)#

?

Any help would be appreciated- Thanks

TOPICS
Advanced techniques

Views

435

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Advocate , Dec 01, 2016 Dec 01, 2016

That's correct, only you will need to take into account whether or not the order was placed on hold, and if so, whether or not it is still on hold.

I'm going to assume you have data integrity rules in place to prevent the on-hold dates from preceding the order date, that way you don't have to worry about it in code.

What you want to do is something like this:

<cfset nDaysOld = dateDiff('d', thequery.order_create_date, nowtime)>

<cfif thequery.order_onhold_date neq ''>

  <cfif thequery.order_offhold_d

...

Votes

Translate

Translate
Participant ,
Nov 30, 2016 Nov 30, 2016

Copy link to clipboard

Copied

Oops- arithmetic- sorry the nuns would have killed me for that

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Dec 01, 2016 Dec 01, 2016

Copy link to clipboard

Copied

LATEST

That's correct, only you will need to take into account whether or not the order was placed on hold, and if so, whether or not it is still on hold.

I'm going to assume you have data integrity rules in place to prevent the on-hold dates from preceding the order date, that way you don't have to worry about it in code.

What you want to do is something like this:

<cfset nDaysOld = dateDiff('d', thequery.order_create_date, nowtime)>

<cfif thequery.order_onhold_date neq ''>

  <cfif thequery.order_offhold_date eq ''>

    <cfset nDaysOnHold = dateDiff('d', thequery.order_onhold_date, nowtime)>

  <cfelse>

    <cfset nDaysOnHold = dateDiff('d', thequery.order_onhold_date, order_offhold_date)>

  </cfif>

  <cfset nDaysOld -= nDaysOnHold>

</cfif>

Age: #nDaysOld#

Cheers

Eddie

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation