Skip to content

Commit

Permalink
Merge for v13.0.5 (#517)
Browse files Browse the repository at this point in the history
* Update dqc_0015 input remove 7084

* Update v13 (#515)

* Updated DQC13 for none issue

* Update resources.zip

* Updated version

* Compiled Rules

Co-authored-by: campbellpryde
  • Loading branch information
davidtauriello committed Jan 15, 2021
1 parent e5457e9 commit 7406ba0
Show file tree
Hide file tree
Showing 12 changed files with 6 additions and 6 deletions.
Binary file modified dqc_us_rules/dqc-ifrs-2018-v13-ruleset.zip
Binary file not shown.
Binary file modified dqc_us_rules/dqc-ifrs-2019-v13-ruleset.zip
Binary file not shown.
Binary file modified dqc_us_rules/dqc-ifrs-2020-v13-ruleset.zip
Binary file not shown.
Binary file modified dqc_us_rules/dqc-us-2018-V13-ruleset.zip
Binary file not shown.
Binary file modified dqc_us_rules/dqc-us-2019-V13-ruleset.zip
Binary file not shown.
Binary file modified dqc_us_rules/dqc-us-2020-V13-ruleset.zip
Binary file not shown.
Binary file modified dqc_us_rules/resources.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion dqc_us_rules/source/lib/version.xule
Expand Up @@ -9,7 +9,7 @@ DQC Rules

/** Define the rule version **/

constant $ruleVersion = '13.0.4'
constant $ruleVersion = '13.0.5'

/** Define Additional Attribute types that can be associated with a rule **/

Expand Down
2 changes: 1 addition & 1 deletion dqc_us_rules/source/us/2018/DQC_0015.xule
Expand Up @@ -20,7 +20,7 @@ $fact1 =
};
$rule_suffix_id = $non_neg_items[$fact1.concept.name];

$fact1 != none
true

message
"{$fact1.concept} has a value of {$fact1} which is less than zero. This element should not have a negative value. The preparer should consider if the value is input correctly for this assertion and, after considering the appropriateness of the input, if incorrect, input the amount as a positive (i.e., absolute) value and provide a negated label.
Expand Down
2 changes: 1 addition & 1 deletion dqc_us_rules/source/us/2019/DQC_0015.xule
Expand Up @@ -20,7 +20,7 @@ $fact1 =
};
$rule_suffix_id = $non_neg_items[$fact1.concept.name];

$fact1 != none
true

message
"{$fact1.concept} has a value of {$fact1} which is less than zero. This element should not have a negative value. The preparer should consider if the value is input correctly for this assertion and, after considering the appropriateness of the input, if incorrect, input the amount as a positive (i.e., absolute) value and provide a negated label.
Expand Down
2 changes: 1 addition & 1 deletion dqc_us_rules/source/us/2020/DQC_0015.xule
Expand Up @@ -20,7 +20,7 @@ $fact1 =
};
$rule_suffix_id = $non_neg_items[$fact1.concept.name];

$fact1 != none
true

message
"{$fact1.concept} has a value of {$fact1} which is less than zero. This element should not have a negative value. The preparer should consider if the value is input correctly for this assertion and, after considering the appropriateness of the input, if incorrect, input the amount as a positive (i.e., absolute) value and provide a negated label.
Expand Down
4 changes: 2 additions & 2 deletions dqc_us_rules/source/us/2020/constant.xule
Expand Up @@ -93,8 +93,8 @@ constant $exclude_non_neg_string_members = set(

constant $non_neg_string_ref = filter ($dqc-rules.concept(dqcrules:Dqc_0015_ExcludeNonNegMemberStringsAbstract).references("http://fasb.org/us-gaap/role/dqc/dqcNote")) where ($item.part-by-name(dqcrules:allowableSubString).part-value != none)

constant $exclude_non_neg_string_members = for $ref in $non_neg_string_ref
$ref.part-by-name(dqcrules:allowableSubString).part-value.split(" ").to-set
constant $exclude_non_neg_string_members = set(for $ref in $non_neg_string_ref
for $x in $ref.part-by-name(dqcrules:allowableSubString).part-value.split(" ") $x ) + set('basisswap')


/**
Expand Down

0 comments on commit 7406ba0

Please sign in to comment.