-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: replace quotation with invoice in first onboarding (backport #35389
) (#35394) fix: replace quotation with invoice in first onboarding (#35389) (cherry picked from commit b0eb72f) Co-authored-by: Ankush Menat <ankush@frappe.io>
- Loading branch information
1 parent
88ecc93
commit 9b9772e
Showing
6 changed files
with
68 additions
and
16 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
erpnext/accounts/form_tour/sales_invoice/sales_invoice.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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"creation": "2023-05-23 09:58:17.235916", | ||
"docstatus": 0, | ||
"doctype": "Form Tour", | ||
"first_document": 0, | ||
"idx": 0, | ||
"include_name_field": 0, | ||
"is_standard": 1, | ||
"modified": "2023-05-23 13:10:56.227127", | ||
"modified_by": "Administrator", | ||
"module": "Accounts", | ||
"name": "Sales Invoice", | ||
"owner": "Administrator", | ||
"reference_doctype": "Sales Invoice", | ||
"save_on_complete": 1, | ||
"steps": [ | ||
{ | ||
"description": "Select a customer for whom this invoice is being prepared.", | ||
"fieldname": "customer", | ||
"fieldtype": "Link", | ||
"has_next_condition": 1, | ||
"is_table_field": 0, | ||
"label": "Customer", | ||
"next_step_condition": "eval: doc.customer", | ||
"position": "Right", | ||
"title": "Select Customer" | ||
}, | ||
{ | ||
"child_doctype": "Sales Invoice Item", | ||
"description": "Select item that you have sold along with quantity and rate.", | ||
"fieldname": "items", | ||
"fieldtype": "Table", | ||
"has_next_condition": 0, | ||
"is_table_field": 0, | ||
"parent_fieldname": "items", | ||
"position": "Top", | ||
"title": "Select Item" | ||
} | ||
], | ||
"title": "Sales Invoice" | ||
} |
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
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
20 changes: 20 additions & 0 deletions
20
...etup/onboarding_step/create_your_first_sales_invoice/create_your_first_sales_invoice.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"action": "Create Entry", | ||
"creation": "2020-05-14 17:48:21.019019", | ||
"description": "# All about sales invoice\n\nA Sales Invoice is a bill that you send to your Customers against which the Customer makes the payment. Sales Invoice is an accounting transaction. On submission of Sales Invoice, the system updates the receivable and books income against a Customer Account.", | ||
"docstatus": 0, | ||
"doctype": "Onboarding Step", | ||
"idx": 0, | ||
"is_complete": 0, | ||
"is_single": 0, | ||
"is_skipped": 0, | ||
"modified": "2023-05-22 21:20:15.589644", | ||
"modified_by": "Administrator", | ||
"name": "Create Your First Sales Invoice", | ||
"owner": "Administrator", | ||
"reference_document": "Sales Invoice", | ||
"show_form_tour": 1, | ||
"show_full_form": 1, | ||
"title": "Create Your First Sales Invoice ", | ||
"validate_action": 1 | ||
} |