-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #227 from RitvikSardana/develop-ritvik-patch-so-si…
…-option feat: Option for user to create Sales Order Instead of Sales Invoice for generating fees
- Loading branch information
Showing
71 changed files
with
1,475 additions
and
1,059 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "15.2.1" | ||
__version__ = "15.3.0" |
4 changes: 2 additions & 2 deletions
4
education/education/doctype/academic_term/test_academic_term.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# Copyright (c) 2015, Frappe Technologies and Contributors | ||
# See license.txt | ||
|
||
import unittest | ||
from frappe.tests.utils import FrappeTestCase | ||
|
||
# test_records = frappe.get_test_records('Academic Term') | ||
|
||
|
||
class TestAcademicTerm(unittest.TestCase): | ||
class TestAcademicTerm(FrappeTestCase): | ||
pass |
27 changes: 0 additions & 27 deletions
27
education/education/doctype/academic_term/test_records.json
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
education/education/doctype/academic_year/test_academic_year.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 0 additions & 18 deletions
18
education/education/doctype/academic_year/test_records.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors | ||
# See license.txt | ||
|
||
import unittest | ||
|
||
from frappe.tests.utils import FrappeTestCase | ||
|
||
class TestArticle(unittest.TestCase): | ||
|
||
class TestArticle(FrappeTestCase): | ||
pass |
5 changes: 3 additions & 2 deletions
5
education/education/doctype/assessment_criteria/test_assessment_criteria.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors | ||
# See license.txt | ||
|
||
import unittest | ||
|
||
from frappe.tests.utils import FrappeTestCase | ||
|
||
# test_records = frappe.get_test_records('Assessment Criteria') | ||
|
||
|
||
class TestAssessmentCriteria(unittest.TestCase): | ||
class TestAssessmentCriteria(FrappeTestCase): | ||
pass |
14 changes: 7 additions & 7 deletions
14
education/education/doctype/assessment_criteria/test_records.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[ | ||
{ | ||
"assessment_criteria": "_Test Assessment Criteria" | ||
}, | ||
{ | ||
"assessment_criteria": "_Test Assessment Criteria 1" | ||
} | ||
] | ||
{ | ||
"assessment_criteria": "_Test Assessment Criteria" | ||
}, | ||
{ | ||
"assessment_criteria": "_Test Assessment Criteria 1" | ||
} | ||
] |
5 changes: 3 additions & 2 deletions
5
education/education/doctype/assessment_criteria_group/test_assessment_criteria_group.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors | ||
# See license.txt | ||
|
||
import unittest | ||
|
||
from frappe.tests.utils import FrappeTestCase | ||
|
||
# test_records = frappe.get_test_records('Assessment Criteria Group') | ||
|
||
|
||
class TestAssessmentCriteriaGroup(unittest.TestCase): | ||
class TestAssessmentCriteriaGroup(FrappeTestCase): | ||
pass |
5 changes: 3 additions & 2 deletions
5
education/education/doctype/assessment_group/test_assessment_group.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors | ||
# See license.txt | ||
|
||
import unittest | ||
|
||
from frappe.tests.utils import FrappeTestCase | ||
|
||
# test_records = frappe.get_test_records('Assessment Group') | ||
|
||
|
||
class TestAssessmentGroup(unittest.TestCase): | ||
class TestAssessmentGroup(FrappeTestCase): | ||
pass |
5 changes: 3 additions & 2 deletions
5
education/education/doctype/assessment_plan/test_assessment_plan.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors | ||
# See license.txt | ||
|
||
import unittest | ||
|
||
from frappe.tests.utils import FrappeTestCase | ||
|
||
# test_records = frappe.get_test_records('Assessment Plan') | ||
|
||
|
||
class TestAssessmentPlan(unittest.TestCase): | ||
class TestAssessmentPlan(FrappeTestCase): | ||
pass |
12 changes: 10 additions & 2 deletions
12
education/education/doctype/assessment_result/test_assessment_result.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
education/education/doctype/assessment_result_tool/test_assessment_result_tool.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors | ||
# See license.txt | ||
|
||
import unittest | ||
|
||
from frappe.tests.utils import FrappeTestCase | ||
|
||
class TestAssessmentResultTool(unittest.TestCase): | ||
|
||
class TestAssessmentResultTool(FrappeTestCase): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
education/education/doctype/course_activity/test_course_activity.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.