Merge branch 'hotfix'
This commit is contained in:
commit
31d7433946
@ -5,7 +5,7 @@ import frappe
|
||||
from erpnext.hooks import regional_overrides
|
||||
from frappe.utils import getdate
|
||||
|
||||
__version__ = '10.0.2'
|
||||
__version__ = '10.0.3'
|
||||
|
||||
def get_default_company(user=None):
|
||||
'''Get default company for user'''
|
||||
|
@ -200,8 +200,15 @@ def get_data_with_opening_closing(filters, account_details, gl_entries):
|
||||
debit_in_account_currency = totals.closing.get('debit_in_account_currency', 0)
|
||||
credit_in_account_currency = totals.closing.get('credit_in_account_currency', 0)
|
||||
|
||||
total_closing['debit'] = total_debit - total_credit
|
||||
total_closing['debit_in_account_currency'] = debit_in_account_currency - credit_in_account_currency
|
||||
total_amount = total_debit - total_credit
|
||||
|
||||
if total_amount > 0:
|
||||
total_closing['debit'] = total_amount
|
||||
total_closing['debit_in_account_currency'] = debit_in_account_currency - credit_in_account_currency
|
||||
else:
|
||||
total_closing['credit'] = abs(total_amount)
|
||||
total_closing['credit_in_account_currency'] = abs(debit_in_account_currency - credit_in_account_currency)
|
||||
|
||||
data.append(totals.total_closing)
|
||||
|
||||
return data
|
||||
|
@ -544,6 +544,7 @@ def get_itemised_tax_breakup_html(doc):
|
||||
|
||||
get_rounded_tax_amount(itemised_tax, doc.precision("tax_amount", "taxes"))
|
||||
|
||||
update_itemised_tax_data(doc)
|
||||
frappe.flags.company = None
|
||||
|
||||
return frappe.render_template(
|
||||
@ -556,6 +557,12 @@ def get_itemised_tax_breakup_html(doc):
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
@erpnext.allow_regional
|
||||
def update_itemised_tax_data(doc):
|
||||
#Don't delete this method, used for localization
|
||||
pass
|
||||
|
||||
@erpnext.allow_regional
|
||||
def get_itemised_tax_breakup_header(item_doctype, tax_accounts):
|
||||
return [_("Item"), _("Taxable Amount")] + tax_accounts
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 377 KiB |
@ -1,12 +1,21 @@
|
||||
# Program Enrollment
|
||||
|
||||
Program Enrollment describes an educational model where students must complete a defined set of courses towards their academic objective in a specified sequence. Enrollment is a program driven process in which the student select the Program to enrol for in a Academic Year.
|
||||
**Program Enrollment** is the record of enrollment of a student in a given program and choose courses for a particular Academic Year and Academic Term (optional). If a student is enrolled in a program then his/her Program Enrollment must be created. The mandatory course in that program is automatically filled in Enrolled Courses table while the elective/optional courses can be selected manually.
|
||||
|
||||
Once a student have applied for the **Program** and the application is approved, the program enrollment is done for that student.
|
||||
If the student has applied online for the admission in a particular **Program** and the application is approved, then the Program Enrollment can be created from within the Student Applicant record via clicking on the **Enroll** button.
|
||||
|
||||
Else, to create the new Program Enrollment manually, go to:
|
||||
> Education > Program Enrollment > New
|
||||
|
||||
<img class="screenshot" alt="Student Applicant Enrollment" src="/docs/assets/img/education/admission/program-enrollment.gif">
|
||||
|
||||
- A student can be enrolled in multiple Course for a program in a given academeic year.
|
||||
- Based on the Fee structure selected at the time of enrollment Fee detials are created of the student.
|
||||
If any institution has skipped the online admission process then Program Enrollment can also be considered as the confirmation of the admission in a particular Program.
|
||||
|
||||
{next}
|
||||
> TIP: Academic Term is optional in the Program Enrollment. If your institution has only annual curriculum, you can skip the Academic Term
|
||||
|
||||
Student Batch: To categorize student into different sections/batches, you can assign the batch to the student. On the basis of this field, later student groups can be created.
|
||||
|
||||
Student Category: For the Institutions having multiple Fees Structure, this field can be used to differentiate the student enrollment in a given fee category.
|
||||
|
||||
|
||||
{next}
|
@ -1,18 +1,20 @@
|
||||
# Instructor
|
||||
|
||||
An instructoe is a teacher, or professor, of a specialised subject that involves skill.
|
||||
An Instructor can be a teacher, tutor, coach, or professor, of a specialised subject that involves any skill.
|
||||
|
||||
You can create an Instructor and link it to the Employee master and a Departmemt.
|
||||
To create new Instructor go to:
|
||||
|
||||
> Education > Instructor > New
|
||||
|
||||
<img class="screenshot" alt="Instructor" src="/docs/assets/img/education/setup/instructor.png">
|
||||
|
||||
An **Instructor** is further linked to a **Course Schedule**, where you can define the schedule for a **Course** for a give date and **Room no**.
|
||||
An **Instructor** can also be linked to a **Course Schedule**, where you can define the schedule for a **Course** for a give date and **Room no**.
|
||||
|
||||
<img class="screenshot" alt="Instructor" src="/docs/assets/img/education/setup/instructor.gif">
|
||||
It is also linked to **Student group** where an **Instructor** is assigned to the Student group.
|
||||
It is also linked to **Student group** where an **Instructor** is assigned to the Student Group.
|
||||
|
||||
<img class="screenshot" alt="Instructor" src="/docs/assets/img/education/setup/student-group-instructor.gif">
|
||||
While creating the **Assessment Plan** for a Student Group, **Instructor** can be linked as the Examiner or the Supervisor for that assessment.
|
||||
|
||||
Further, the log for the Instructor can be entered in the Instructor Log table which can be used for keeping the records of subjects taught by that Instructor.
|
||||
|
||||
An **Instructor** is also linked to an **Assesment Plan** for a Student group. The Instructor can be an Examiner or the supervisor for the assesment.
|
||||
|
||||
{next}
|
@ -175,7 +175,7 @@
|
||||
"issingle": 1,
|
||||
"istable": 0,
|
||||
"max_attachments": 0,
|
||||
"modified": "2017-11-10 18:55:54.438981",
|
||||
"modified": "2017-12-27 09:36:37.155890",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Education",
|
||||
"name": "Assessment Result Tool",
|
||||
@ -201,6 +201,26 @@
|
||||
"share": 0,
|
||||
"submit": 0,
|
||||
"write": 1
|
||||
},
|
||||
{
|
||||
"amend": 0,
|
||||
"apply_user_permissions": 0,
|
||||
"cancel": 0,
|
||||
"create": 1,
|
||||
"delete": 0,
|
||||
"email": 0,
|
||||
"export": 0,
|
||||
"if_owner": 0,
|
||||
"import": 0,
|
||||
"permlevel": 0,
|
||||
"print": 0,
|
||||
"read": 1,
|
||||
"report": 0,
|
||||
"role": "Instructor",
|
||||
"set_user_permissions": 0,
|
||||
"share": 0,
|
||||
"submit": 0,
|
||||
"write": 1
|
||||
}
|
||||
],
|
||||
"quick_entry": 1,
|
||||
|
@ -3,11 +3,29 @@ cur_frm.add_fetch("employee", "image", "image");
|
||||
|
||||
frappe.ui.form.on("Instructor", "refresh", function(frm) {
|
||||
if(!frm.doc.__islocal) {
|
||||
frm.add_custom_button(__("Student Group"), function() {
|
||||
frappe.route_options = {
|
||||
instructor: frm.doc.name
|
||||
}
|
||||
frappe.set_route("List", "Student Group");
|
||||
});
|
||||
frm.add_custom_button(__("Course Schedule"), function() {
|
||||
frappe.route_options = {
|
||||
instructor: frm.doc.name
|
||||
}
|
||||
frappe.set_route("List", "Course Schedule");
|
||||
});
|
||||
frm.add_custom_button(__("As Examiner"), function() {
|
||||
frappe.route_options = {
|
||||
examiner: frm.doc.name
|
||||
}
|
||||
frappe.set_route("List", "Assessment Plan");
|
||||
}, __("Assessment Plan"));
|
||||
frm.add_custom_button(__("As Supervisor"), function() {
|
||||
frappe.route_options = {
|
||||
supervisor: frm.doc.name
|
||||
}
|
||||
frappe.set_route("List", "Assessment Plan");
|
||||
}, __("Assessment Plan"));
|
||||
}
|
||||
});
|
||||
|
@ -194,6 +194,67 @@
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "log_details",
|
||||
"fieldtype": "Section Break",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Instructor Log",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "instructor_log",
|
||||
"fieldtype": "Table",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Instructor Log",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "Instructor Log",
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
}
|
||||
],
|
||||
"has_web_view": 0,
|
||||
@ -208,13 +269,33 @@
|
||||
"istable": 0,
|
||||
"max_attachments": 0,
|
||||
"menu_index": 0,
|
||||
"modified": "2017-11-10 19:00:20.354954",
|
||||
"modified": "2017-12-27 09:23:46.973763",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Education",
|
||||
"name": "Instructor",
|
||||
"name_case": "",
|
||||
"owner": "Administrator",
|
||||
"permissions": [
|
||||
{
|
||||
"amend": 0,
|
||||
"apply_user_permissions": 0,
|
||||
"cancel": 0,
|
||||
"create": 0,
|
||||
"delete": 0,
|
||||
"email": 1,
|
||||
"export": 0,
|
||||
"if_owner": 0,
|
||||
"import": 0,
|
||||
"permlevel": 0,
|
||||
"print": 1,
|
||||
"read": 1,
|
||||
"report": 1,
|
||||
"role": "Instructor",
|
||||
"set_user_permissions": 0,
|
||||
"share": 0,
|
||||
"submit": 0,
|
||||
"write": 0
|
||||
},
|
||||
{
|
||||
"amend": 0,
|
||||
"apply_user_permissions": 0,
|
||||
@ -229,8 +310,8 @@
|
||||
"print": 1,
|
||||
"read": 1,
|
||||
"report": 1,
|
||||
"role": "Academics User",
|
||||
"set_user_permissions": 0,
|
||||
"role": "Education Manager",
|
||||
"set_user_permissions": 1,
|
||||
"share": 1,
|
||||
"submit": 0,
|
||||
"write": 1
|
||||
|
315
erpnext/education/doctype/instructor_log/instructor_log.json
Normal file
315
erpnext/education/doctype/instructor_log/instructor_log.json
Normal file
@ -0,0 +1,315 @@
|
||||
{
|
||||
"allow_copy": 0,
|
||||
"allow_guest_to_view": 0,
|
||||
"allow_import": 0,
|
||||
"allow_rename": 0,
|
||||
"beta": 0,
|
||||
"creation": "2017-12-27 08:55:52.680284",
|
||||
"custom": 0,
|
||||
"docstatus": 0,
|
||||
"doctype": "DocType",
|
||||
"document_type": "",
|
||||
"editable_grid": 1,
|
||||
"engine": "InnoDB",
|
||||
"fields": [
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "academic_year",
|
||||
"fieldtype": "Link",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 1,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Academic Year",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "Academic Year",
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "academic_term",
|
||||
"fieldtype": "Link",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 1,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Academic Term",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "Academic Term",
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "department",
|
||||
"fieldtype": "Link",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Department",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "Department",
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "column_break_3",
|
||||
"fieldtype": "Column Break",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "program",
|
||||
"fieldtype": "Link",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 1,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Program",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "Program",
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "course",
|
||||
"fieldtype": "Link",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 1,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Course",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "Course",
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "student_group",
|
||||
"fieldtype": "Link",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Student Group",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "Student Group",
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "section_break_8",
|
||||
"fieldtype": "Section Break",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "other_details",
|
||||
"fieldtype": "Small Text",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Other details",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
}
|
||||
],
|
||||
"has_web_view": 0,
|
||||
"hide_heading": 0,
|
||||
"hide_toolbar": 0,
|
||||
"idx": 0,
|
||||
"image_view": 0,
|
||||
"in_create": 0,
|
||||
"is_submittable": 0,
|
||||
"issingle": 0,
|
||||
"istable": 1,
|
||||
"max_attachments": 0,
|
||||
"modified": "2017-12-27 10:05:22.307860",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Education",
|
||||
"name": "Instructor Log",
|
||||
"name_case": "",
|
||||
"owner": "Administrator",
|
||||
"permissions": [],
|
||||
"quick_entry": 1,
|
||||
"read_only": 0,
|
||||
"read_only_onload": 0,
|
||||
"show_name_in_global_search": 0,
|
||||
"sort_field": "modified",
|
||||
"sort_order": "DESC",
|
||||
"track_changes": 1,
|
||||
"track_seen": 0
|
||||
}
|
10
erpnext/education/doctype/instructor_log/instructor_log.py
Normal file
10
erpnext/education/doctype/instructor_log/instructor_log.py
Normal file
@ -0,0 +1,10 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors
|
||||
# For license information, please see license.txt
|
||||
|
||||
from __future__ import unicode_literals
|
||||
import frappe
|
||||
from frappe.model.document import Document
|
||||
|
||||
class InstructorLog(Document):
|
||||
pass
|
@ -112,19 +112,19 @@
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "school_house",
|
||||
"fieldname": "student_batch_name",
|
||||
"fieldtype": "Link",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_global_search": 1,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "School House",
|
||||
"label": "Student Batch",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "School House",
|
||||
"options": "Student Batch Name",
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
@ -139,14 +139,12 @@
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"allow_on_submit": 1,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"default": "0",
|
||||
"description": "Check this if the Student is residing at the Institute's Hostel.",
|
||||
"fieldname": "boarding_student",
|
||||
"fieldtype": "Check",
|
||||
"fieldname": "school_house",
|
||||
"fieldtype": "Link",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
@ -154,10 +152,10 @@
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Boarding Student",
|
||||
"label": "School House",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "",
|
||||
"options": "School House",
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
@ -230,37 +228,6 @@
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 1,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"fieldname": "student_batch_name",
|
||||
"fieldtype": "Link",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 1,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Student Batch",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "Student Batch Name",
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
@ -294,7 +261,7 @@
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 1,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
@ -354,6 +321,39 @@
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"default": "0",
|
||||
"description": "Check this if the Student is residing at the Institute's Hostel.",
|
||||
"fieldname": "boarding_student",
|
||||
"fieldtype": "Check",
|
||||
"hidden": 0,
|
||||
"ignore_user_permissions": 0,
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_global_search": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Boarding Student",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "",
|
||||
"permlevel": 0,
|
||||
"precision": "",
|
||||
"print_hide": 0,
|
||||
"print_hide_if_no_value": 0,
|
||||
"read_only": 0,
|
||||
"remember_last_selected_value": 0,
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 0,
|
||||
"allow_on_submit": 0,
|
||||
@ -671,7 +671,7 @@
|
||||
"istable": 0,
|
||||
"max_attachments": 0,
|
||||
"menu_index": 0,
|
||||
"modified": "2017-11-16 13:20:28.650637",
|
||||
"modified": "2017-12-27 10:59:36.838548",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Education",
|
||||
"name": "Program Enrollment",
|
||||
|
@ -22,8 +22,14 @@ class ProgramEnrollment(Document):
|
||||
self.make_fee_records()
|
||||
|
||||
def validate_duplication(self):
|
||||
enrollment = frappe.db.sql("""select name from `tabProgram Enrollment` where student= %s and program= %s
|
||||
and academic_year= %s and docstatus<2 and name != %s""", (self.student, self.program, self.academic_year, self.name))
|
||||
enrollment = frappe.get_all("Program Enrollment", filters={
|
||||
"student": self.student,
|
||||
"program": self.program,
|
||||
"academic_year": self.academic_year,
|
||||
"academic_term": self.academic_term,
|
||||
"docstatus": ("<", 2),
|
||||
"name": ("!=", self.name)
|
||||
})
|
||||
if enrollment:
|
||||
frappe.throw(_("Student is already enrolled."))
|
||||
|
||||
|
@ -328,7 +328,7 @@
|
||||
"issingle": 1,
|
||||
"istable": 0,
|
||||
"max_attachments": 0,
|
||||
"modified": "2017-11-10 19:39:54.858394",
|
||||
"modified": "2017-12-27 09:35:45.002469",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Education",
|
||||
"name": "Program Enrollment Tool",
|
||||
@ -349,7 +349,7 @@
|
||||
"print": 0,
|
||||
"read": 1,
|
||||
"report": 0,
|
||||
"role": "Academics User",
|
||||
"role": "Education Manager",
|
||||
"set_user_permissions": 0,
|
||||
"share": 0,
|
||||
"submit": 0,
|
||||
|
@ -269,7 +269,7 @@
|
||||
"issingle": 1,
|
||||
"istable": 0,
|
||||
"max_attachments": 0,
|
||||
"modified": "2017-11-10 19:40:07.862203",
|
||||
"modified": "2017-12-27 09:35:30.211254",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Education",
|
||||
"name": "Student Group Creation Tool",
|
||||
@ -290,7 +290,7 @@
|
||||
"print": 0,
|
||||
"read": 1,
|
||||
"report": 0,
|
||||
"role": "Academics User",
|
||||
"role": "Education Manager",
|
||||
"set_user_permissions": 0,
|
||||
"share": 0,
|
||||
"submit": 0,
|
||||
|
@ -258,5 +258,11 @@ regional_overrides = {
|
||||
'erpnext.tests.test_regional.test_method': 'erpnext.regional.india.utils.test_method',
|
||||
'erpnext.controllers.taxes_and_totals.get_itemised_tax_breakup_header': 'erpnext.regional.india.utils.get_itemised_tax_breakup_header',
|
||||
'erpnext.controllers.taxes_and_totals.get_itemised_tax_breakup_data': 'erpnext.regional.india.utils.get_itemised_tax_breakup_data'
|
||||
},
|
||||
'United Arab Emirates': {
|
||||
'erpnext.controllers.taxes_and_totals.update_itemised_tax_data': 'erpnext.regional.united_arab_emirates.utils.update_itemised_tax_data'
|
||||
},
|
||||
'Saudi Arabia': {
|
||||
'erpnext.controllers.taxes_and_totals.update_itemised_tax_data': 'erpnext.regional.united_arab_emirates.utils.update_itemised_tax_data'
|
||||
}
|
||||
}
|
||||
|
@ -478,9 +478,10 @@ erpnext.patches.v9_2.rename_net_weight_in_item_master
|
||||
erpnext.patches.v9_2.delete_process_payroll
|
||||
erpnext.patches.v10_0.add_agriculture_domain
|
||||
erpnext.patches.v10_0.add_non_profit_domain
|
||||
erpnext.patches.v10_0.setup_vat_for_uae_and_saudi_arabia
|
||||
erpnext.patches.v10_0.setup_vat_for_uae_and_saudi_arabia #2017-12-27
|
||||
erpnext.patches.v10_0.set_primary_contact_for_customer
|
||||
erpnext.patches.v10_0.copy_projects_renamed_fields
|
||||
erpnext.patches.v10_0.enabled_regional_print_format_based_on_country
|
||||
erpnext.patches.v10_0.update_asset_calculate_depreciation
|
||||
erpnext.patches.v10_0.add_guardian_role_for_parent_portal
|
||||
erpnext.patches.v10_0.set_numeric_ranges_in_template_if_blank
|
@ -7,8 +7,8 @@ import frappe
|
||||
def execute():
|
||||
print_format_mapper = {
|
||||
'India': ['GST POS Invoice', 'GST Tax Invoice'],
|
||||
'Saudi Arabia': ['Simplified Tax Invoice', 'Detailed Tax Invoice'],
|
||||
'United Arab Emirates': ['Simplified Tax Invoice', 'Detailed Tax Invoice']
|
||||
'Saudi Arabia': ['Simplified Tax Invoice', 'Detailed Tax Invoice', 'Tax Invoice'],
|
||||
'United Arab Emirates': ['Simplified Tax Invoice', 'Detailed Tax Invoice', 'Tax Invoice']
|
||||
}
|
||||
|
||||
frappe.db.sql(""" update `tabPrint Format` set disabled = 1 where name
|
||||
|
@ -0,0 +1,35 @@
|
||||
# Copyright (c) 2017, Frappe and Contributors
|
||||
# License: GNU General Public License v3. See license.txt
|
||||
|
||||
from __future__ import unicode_literals
|
||||
import frappe
|
||||
|
||||
def execute():
|
||||
item_numeric_attributes = frappe.db.sql("""
|
||||
select name, numeric_values, from_range, to_range, increment
|
||||
from `tabItem Attribute`
|
||||
where numeric_values = 1
|
||||
""", as_dict=1)
|
||||
|
||||
for d in item_numeric_attributes:
|
||||
frappe.db.sql("""
|
||||
update `tabItem Variant Attribute`
|
||||
set
|
||||
from_range = CASE
|
||||
WHEN from_range = 0 THEN %(from_range)s
|
||||
ELSE from_range
|
||||
END,
|
||||
to_range = CASE
|
||||
WHEN to_range = 0 THEN %(to_range)s
|
||||
ELSE to_range
|
||||
END,
|
||||
increment = CASE
|
||||
WHEN increment = 0 THEN %(increment)s
|
||||
ELSE increment
|
||||
END,
|
||||
numeric_values = %(numeric_values)s
|
||||
where
|
||||
attribute = %(name)s
|
||||
and exists(select name from tabItem
|
||||
where name=`tabItem Variant Attribute`.parent and has_variants=1)
|
||||
""", d)
|
@ -7,6 +7,8 @@ from erpnext.setup.doctype.company.company import install_country_fixtures
|
||||
|
||||
def execute():
|
||||
frappe.reload_doc("accounts", "doctype", "account")
|
||||
frappe.reload_doc("hub_node", "doctype", "hub_category")
|
||||
frappe.reload_doc("accounts", "doctype", "payment_schedule")
|
||||
for d in frappe.get_all('Company',
|
||||
filters={'country': ('in', ['Saudi Arabia', 'United Arab Emirates'])}):
|
||||
install_country_fixtures(d.name)
|
@ -7,10 +7,10 @@
|
||||
"docstatus": 0,
|
||||
"doctype": "Print Format",
|
||||
"font": "Default",
|
||||
"format_data": "[{\"fieldname\": \"print_heading_template\", \"fieldtype\": \"Custom HTML\", \"options\": \"<div class=\\\"print-heading\\\">\\t\\t\\t\\t<h2>TAX Invoice<br><small>{{ doc.name }}</small>\\t\\t\\t\\t</h2></div>\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"customer_name\", \"label\": \"Customer Name\"}, {\"print_hide\": 0, \"fieldname\": \"customer_name_in_arabic\", \"label\": \"Customer Name in Arabic\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"posting_date\", \"label\": \"Date\"}, {\"print_hide\": 0, \"fieldname\": \"project\", \"align\": \"left\", \"label\": \"Reverse Charge Applicable\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Address\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"address_display\", \"label\": \"Address\"}, {\"print_hide\": 0, \"fieldname\": \"tax_id\", \"label\": \"Tax Id\"}, {\"print_hide\": 0, \"fieldname\": \"contact_display\", \"label\": \"Contact\"}, {\"print_hide\": 0, \"fieldname\": \"contact_mobile\", \"label\": \"Mobile No\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"company\", \"label\": \"Company\"}, {\"print_hide\": 0, \"fieldname\": \"company_address_display\", \"label\": \"Company Address\"}, {\"print_hide\": 0, \"fieldname\": \"company_trn\", \"label\": \"Company TRN\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"visible_columns\": [{\"print_hide\": 0, \"fieldname\": \"item_code\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"description\", \"print_width\": \"200px\"}, {\"print_hide\": 0, \"fieldname\": \"image\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"qty\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"uom\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"rate\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"tax_code\", \"print_width\": \"\"}], \"print_hide\": 0, \"fieldname\": \"items\", \"label\": \"Items\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"total\", \"label\": \"Total\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"visible_columns\": [{\"print_hide\": 0, \"fieldname\": \"charge_type\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"row_id\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"account_head\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"cost_center\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"description\", \"print_width\": \"300px\"}, {\"print_hide\": 0, \"fieldname\": \"rate\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"tax_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"total\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"tax_amount_after_discount_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"base_tax_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"base_total\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"base_tax_amount_after_discount_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"item_wise_tax_detail\", \"print_width\": \"\"}], \"print_hide\": 0, \"fieldname\": \"taxes\", \"label\": \"Sales Taxes and Charges\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"grand_total\", \"label\": \"Grand Total\"}, {\"print_hide\": 0, \"fieldname\": \"rounded_total\", \"label\": \"Rounded Total\"}, {\"print_hide\": 0, \"fieldname\": \"in_words\", \"align\": \"left\", \"label\": \"Tax Breakup\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"other_charges_calculation\", \"label\": \"Taxes and Charges Calculation\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Terms\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"terms\", \"label\": \"Terms and Conditions Details\"}]",
|
||||
"format_data": "[{\"fieldname\": \"print_heading_template\", \"fieldtype\": \"Custom HTML\", \"options\": \"<div class=\\\"print-heading\\\">\\t\\t\\t\\t<h2>TAX Invoice<br><small>{{ doc.name }}</small>\\t\\t\\t\\t</h2></div>\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"customer_name\", \"label\": \"Customer Name\"}, {\"print_hide\": 0, \"fieldname\": \"customer_name_in_arabic\", \"label\": \"Customer Name in Arabic\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"posting_date\", \"label\": \"Date\"}, {\"print_hide\": 0, \"fieldname\": \"project\", \"align\": \"left\", \"label\": \"Reverse Charge Applicable\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Address\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"address_display\", \"label\": \"Address\"}, {\"print_hide\": 0, \"fieldname\": \"tax_id\", \"label\": \"Tax Id\"}, {\"print_hide\": 0, \"fieldname\": \"contact_display\", \"label\": \"Contact\"}, {\"print_hide\": 0, \"fieldname\": \"contact_mobile\", \"label\": \"Mobile No\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"company\", \"label\": \"Company\"}, {\"print_hide\": 0, \"fieldname\": \"company_address_display\", \"label\": \"Company Address\"}, {\"print_hide\": 0, \"fieldname\": \"company_trn\", \"label\": \"Company TRN\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"visible_columns\": [{\"print_hide\": 0, \"fieldname\": \"item_code\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"description\", \"print_width\": \"200px\"}, {\"print_hide\": 0, \"fieldname\": \"image\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"qty\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"uom\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"rate\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"tax_code\", \"print_width\": \"\"}], \"print_hide\": 0, \"fieldname\": \"items\", \"label\": \"Items\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"total\", \"label\": \"Total\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"visible_columns\": [{\"print_hide\": 0, \"fieldname\": \"charge_type\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"row_id\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"account_head\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"cost_center\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"description\", \"print_width\": \"300px\"}, {\"print_hide\": 0, \"fieldname\": \"rate\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"tax_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"total\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"tax_amount_after_discount_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"base_tax_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"base_total\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"base_tax_amount_after_discount_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"item_wise_tax_detail\", \"print_width\": \"\"}], \"print_hide\": 0, \"fieldname\": \"taxes\", \"label\": \"Sales Taxes and Charges\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"grand_total\", \"label\": \"Grand Total\"}, {\"print_hide\": 0, \"fieldname\": \"rounded_total\", \"label\": \"Rounded Total\"}, {\"print_hide\": 0, \"fieldname\": \"in_words\", \"align\": \"left\", \"label\": \"In Words\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"other_charges_calculation\", \"label\": \"Taxes and Charges Calculation\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Terms\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"terms\", \"label\": \"Terms and Conditions Details\"}]",
|
||||
"idx": 0,
|
||||
"line_breaks": 0,
|
||||
"modified": "2017-12-15 11:57:16.661876",
|
||||
"modified": "2017-12-28 13:39:26.068659",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Regional",
|
||||
"name": "Detailed Tax Invoice",
|
||||
|
22
erpnext/regional/print_format/tax_invoice/tax_invoice.json
Normal file
22
erpnext/regional/print_format/tax_invoice/tax_invoice.json
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"align_labels_right": 0,
|
||||
"creation": "2017-12-27 15:21:46.620466",
|
||||
"custom_format": 0,
|
||||
"disabled": 1,
|
||||
"doc_type": "Sales Invoice",
|
||||
"docstatus": 0,
|
||||
"doctype": "Print Format",
|
||||
"font": "Default",
|
||||
"format_data": "[{\"fieldname\": \"print_heading_template\", \"fieldtype\": \"Custom HTML\", \"options\": \"<div class=\\\"print-heading\\\">\\t\\t\\t\\t<h2>TAX Invoice<br><small>{{ doc.name }}</small>\\t\\t\\t\\t</h2></div>\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"customer_name\", \"label\": \"Customer Name\"}, {\"print_hide\": 0, \"fieldname\": \"customer_name_in_arabic\", \"label\": \"Customer Name in Arabic\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"posting_date\", \"label\": \"Date\"}, {\"print_hide\": 0, \"fieldname\": \"project\", \"align\": \"left\", \"label\": \"Reverse Charge Applicable\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Address\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"address_display\", \"label\": \"Address\"}, {\"print_hide\": 0, \"fieldname\": \"tax_id\", \"label\": \"Tax Id\"}, {\"print_hide\": 0, \"fieldname\": \"contact_display\", \"label\": \"Contact\"}, {\"print_hide\": 0, \"fieldname\": \"contact_mobile\", \"label\": \"Mobile No\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"company\", \"label\": \"Company\"}, {\"print_hide\": 0, \"fieldname\": \"company_address_display\", \"label\": \"Company Address\"}, {\"print_hide\": 0, \"fieldname\": \"company_trn\", \"label\": \"Company TRN\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"visible_columns\": [{\"print_hide\": 0, \"fieldname\": \"item_code\", \"print_width\": \"50px\"}, {\"print_hide\": 0, \"fieldname\": \"tax_code\", \"print_width\": \"50px\"}, {\"print_hide\": 0, \"fieldname\": \"qty\", \"print_width\": \"30px\"}, {\"print_hide\": 0, \"fieldname\": \"uom\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"rate\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"tax_rate\", \"print_width\": \"10px\"}, {\"print_hide\": 0, \"fieldname\": \"tax_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"total_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"delivery_date\", \"print_width\": \"30px\"}], \"print_hide\": 0, \"fieldname\": \"items\", \"label\": \"Items\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"total\", \"label\": \"Total\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"visible_columns\": [{\"print_hide\": 0, \"fieldname\": \"charge_type\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"row_id\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"account_head\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"cost_center\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"description\", \"print_width\": \"300px\"}, {\"print_hide\": 0, \"fieldname\": \"rate\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"tax_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"total\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"tax_amount_after_discount_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"base_tax_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"base_total\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"base_tax_amount_after_discount_amount\", \"print_width\": \"\"}, {\"print_hide\": 0, \"fieldname\": \"item_wise_tax_detail\", \"print_width\": \"\"}], \"print_hide\": 0, \"fieldname\": \"taxes\", \"label\": \"Sales Taxes and Charges\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"grand_total\", \"label\": \"Grand Total\"}, {\"print_hide\": 0, \"fieldname\": \"rounded_total\", \"label\": \"Rounded Total\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Terms\"}, {\"fieldtype\": \"Column Break\"}, {\"print_hide\": 0, \"fieldname\": \"terms\", \"label\": \"Terms and Conditions Details\"}]",
|
||||
"idx": 0,
|
||||
"line_breaks": 0,
|
||||
"modified": "2017-12-27 16:05:27.785367",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Regional",
|
||||
"name": "Tax Invoice",
|
||||
"owner": "Administrator",
|
||||
"print_format_builder": 1,
|
||||
"print_format_type": "Server",
|
||||
"show_section_headings": 0,
|
||||
"standard": "Yes"
|
||||
}
|
@ -43,9 +43,22 @@ def make_custom_fields():
|
||||
options='customer.customer_name_in_arabic', print_hide=1),
|
||||
]
|
||||
|
||||
tax_code_field = dict(fieldname='tax_code', label='Tax Code',
|
||||
fieldtype='Read Only', options='item_code.tax_code', insert_after='description',
|
||||
allow_on_submit=1, print_hide=1)
|
||||
invoice_item_fields = [
|
||||
dict(fieldname='tax_code', label='Tax Code',
|
||||
fieldtype='Read Only', options='item_code.tax_code', insert_after='description',
|
||||
allow_on_submit=1, print_hide=1),
|
||||
dict(fieldname='tax_rate', label='Tax Rate',
|
||||
fieldtype='Float', insert_after='tax_code',
|
||||
print_hide=1, hidden=1, read_only=1),
|
||||
dict(fieldname='tax_amount', label='Tax Amount',
|
||||
fieldtype='Currency', insert_after='tax_rate',
|
||||
print_hide=1, hidden=1, read_only=1, options="currency"),
|
||||
dict(fieldname='total_amount', label='Total Amount',
|
||||
fieldtype='Currency', insert_after='tax_amount',
|
||||
print_hide=1, hidden=1, read_only=1, options="currency"),
|
||||
dict(fieldname='delivery_date', label='Delivery Date',
|
||||
fieldtype='Date', insert_after='item_name', print_hide=1),
|
||||
]
|
||||
|
||||
custom_fields = {
|
||||
'Item': [
|
||||
@ -62,8 +75,8 @@ def make_custom_fields():
|
||||
],
|
||||
'Purchase Invoice': purchase_invoice_fields + invoice_fields,
|
||||
'Sales Invoice': sales_invoice_fields + invoice_fields,
|
||||
'Sales Invoice Item': [tax_code_field],
|
||||
'Purchase Invoice Item': [tax_code_field]
|
||||
'Sales Invoice Item': invoice_item_fields,
|
||||
'Purchase Invoice Item': invoice_item_fields
|
||||
}
|
||||
|
||||
create_custom_fields(custom_fields)
|
||||
@ -71,6 +84,7 @@ def make_custom_fields():
|
||||
def add_print_formats():
|
||||
frappe.reload_doc("regional", "print_format", "detailed_tax_invoice")
|
||||
frappe.reload_doc("regional", "print_format", "simplified_tax_invoice")
|
||||
frappe.reload_doc("regional", "print_format", "tax_invoice")
|
||||
|
||||
frappe.db.sql(""" update `tabPrint Format` set disabled = 0 where
|
||||
name in('Simplified Tax Invoice', 'Detailed Tax Invoice') """)
|
||||
name in('Simplified Tax Invoice', 'Detailed Tax Invoice', 'Tax Invoice') """)
|
||||
|
14
erpnext/regional/united_arab_emirates/utils.py
Normal file
14
erpnext/regional/united_arab_emirates/utils.py
Normal file
@ -0,0 +1,14 @@
|
||||
from frappe.utils import flt
|
||||
from erpnext.controllers.taxes_and_totals import get_itemised_tax
|
||||
|
||||
def update_itemised_tax_data(doc):
|
||||
if not doc.taxes: return
|
||||
|
||||
itemised_tax = get_itemised_tax(doc.taxes)
|
||||
|
||||
for row in doc.items:
|
||||
tax_rate = sum([tax.get('tax_rate', 0) for d, tax in itemised_tax.get(row.item_code).items()])
|
||||
|
||||
row.tax_rate = flt(tax_rate, row.precision("tax_rate"))
|
||||
row.tax_amount = flt((row.net_amount * tax_rate) / 100, row.precision("net_amount"))
|
||||
row.total_amount = flt((row.net_amount + row.tax_amount), row.precision("total_amount"))
|
@ -47,7 +47,7 @@ def make_tax_account(company, account_name, tax_rate):
|
||||
"root_type": "Liability",
|
||||
"account_type": "Tax",
|
||||
"tax_rate": flt(tax_rate) if tax_rate else None
|
||||
}).insert(ignore_permissions=True)
|
||||
}).insert(ignore_permissions=True, ignore_mandatory=True)
|
||||
|
||||
def make_sales_and_purchase_tax_templates(accounts, template_name=None):
|
||||
if not template_name:
|
||||
|
@ -1532,7 +1532,7 @@
|
||||
"report_hide": 0,
|
||||
"reqd": 0,
|
||||
"search_index": 0,
|
||||
"set_only_once": 1,
|
||||
"set_only_once": 0,
|
||||
"unique": 0
|
||||
},
|
||||
{
|
||||
@ -3453,7 +3453,7 @@
|
||||
"issingle": 0,
|
||||
"istable": 0,
|
||||
"max_attachments": 1,
|
||||
"modified": "2017-12-13 07:20:25.932499",
|
||||
"modified": "2017-12-27 15:47:17.039337",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Stock",
|
||||
"name": "Item",
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,19 +4,19 @@ apps/erpnext/erpnext/config/selling.py +153,Default settings for selling transac
|
||||
DocType: Timesheet,% Amount Billed,% Beløb Billed
|
||||
DocType: Purchase Order,% Billed,% Billed
|
||||
,Lead Id,Bly Id
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +65,'Total','Total'
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +71,'Total','Total'
|
||||
DocType: Selling Settings,Selling Settings,Salg af indstillinger
|
||||
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Selling Beløb
|
||||
apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +192,Lead must be set if Opportunity is made from Lead,"Bly skal indstilles, hvis Opportunity er lavet af Lead"
|
||||
DocType: Item,Default Selling Cost Center,Standard Selling Cost center
|
||||
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-Above
|
||||
DocType: Pricing Rule,Selling,Selling
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +74, to ,Ultima Actualización : Fecha inválida
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +76, to ,Ultima Actualización : Fecha inválida
|
||||
DocType: Sales Order,% Delivered,% Leveres
|
||||
DocType: Lead,Lead Owner,Bly Owner
|
||||
apps/erpnext/erpnext/controllers/stock_controller.py +236,{0} {1}: Cost Center is mandatory for Item {2},{0} {1}: Udgiftområde er obligatorisk for varen {2}
|
||||
apps/erpnext/erpnext/config/selling.py +169,Tax template for selling transactions.,Skat skabelon til at sælge transaktioner.
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +280, or ,o
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +303, or ,o
|
||||
DocType: Sales Order,% of materials billed against this Sales Order,% Af materialer faktureret mod denne Sales Order
|
||||
DocType: SMS Center,All Lead (Open),Alle Bly (Open)
|
||||
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Hent opdateringer
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1 +0,0 @@
|
||||
apps/erpnext/erpnext/accounts/party.py +268,Billing currency must be equal to either default comapany's currency or party account currency,Billing currency must be equal to either default company's currency or party account currency
|
|
@ -1,20 +1,18 @@
|
||||
DocType: Assessment Plan,Grading Scale,Escala de Calificación
|
||||
apps/erpnext/erpnext/schools/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +57,Guardian1 Mobile No,Número de Móvil de Guardián 1
|
||||
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +57,Guardian1 Mobile No,Número de Móvil de Guardián 1
|
||||
apps/erpnext/erpnext/accounts/report/profitability_analysis/profitability_analysis.py +152,Gross Profit / Loss,Ganancia / Pérdida Bruta
|
||||
apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +42,Cheques and Deposits incorrectly cleared,Los cheques y depósitos resueltos de forma incorrecta
|
||||
DocType: Assessment Group,Parent Assessment Group,Grupo de Evaluación Padre
|
||||
DocType: Student,Guardians,Guardianes
|
||||
DocType: Fee Schedule,Fee Schedule,Programa de Tarifas
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +659,Get Items from Product Bundle,Obtener Ítems de Paquete de Productos
|
||||
apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +904,BOM does not contain any stock item,BOM no contiene ningún ítem de stock
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +684,Get Items from Product Bundle,Obtener Ítems de Paquete de Productos
|
||||
apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +929,BOM does not contain any stock item,BOM no contiene ningún ítem de stock
|
||||
DocType: Homepage,Company Tagline for website homepage,Lema de la empresa para la página de inicio del sitio web
|
||||
DocType: Delivery Note,% Installed,% Instalado
|
||||
DocType: Student,Guardian Details,Detalles del Guardián
|
||||
apps/erpnext/erpnext/schools/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +55,Guardian1 Name,Nombre de Guardián 1
|
||||
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +55,Guardian1 Name,Nombre de Guardián 1
|
||||
DocType: Grading Scale Interval,Grade Code,Grado de Código
|
||||
apps/erpnext/erpnext/accounts/party.py +268,Billing currency must be equal to either default comapany's currency or party account currency,La moneda de facturación debe ser igual a la moneda por defecto de la compañía o la moneda de la cuenta de la parte
|
||||
DocType: Fee Schedule,Fee Structure,Estructura de Tarifas
|
||||
apps/erpnext/erpnext/schools/doctype/course_scheduling_tool/course_scheduling_tool.py +50,Course Schedules created:,Calendario de Cursos creado:
|
||||
DocType: Purchase Order,Get Items from Open Material Requests,Obtener Ítems de Solicitudes Abiertas de Materiales
|
||||
,Batch Item Expiry Status,Estatus de Expiración de Lote de Ítems
|
||||
DocType: Guardian,Guardian Interests,Intereses del Guardián
|
||||
@ -22,13 +20,13 @@ DocType: Guardian,Guardian Name,Nombre del Guardián
|
||||
apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.py +29,Child Item should not be a Product Bundle. Please remove item `{0}` and save,Artículo hijo no debe ser un paquete de productos. Por favor remover el artículo `` {0} y guardar
|
||||
DocType: BOM Scrap Item,Basic Amount (Company Currency),Monto Base (Divisa de Compañía)
|
||||
DocType: Grading Scale,Grading Scale Name,Nombre de Escala de Calificación
|
||||
apps/erpnext/erpnext/schools/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Número de Móvil de Guardián 2
|
||||
apps/erpnext/erpnext/schools/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +59,Guardian2 Name,Nombre de Guardián 2
|
||||
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Número de Móvil de Guardián 2
|
||||
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +59,Guardian2 Name,Nombre de Guardián 2
|
||||
DocType: Stock Entry,Customer or Supplier Details,Detalle de cliente o proveedor
|
||||
DocType: Course Scheduling Tool,Course Scheduling Tool,Herramienta de Programación de cursos
|
||||
DocType: Shopping Cart Settings,Checkout Settings,Ajustes de Finalización de Pedido
|
||||
DocType: Guardian Interest,Guardian Interest,Interés del Guardián
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +209,Classrooms/ Laboratories etc where lectures can be scheduled.,"Aulas / laboratorios, etc., donde las lecturas se pueden programar."
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +227,Classrooms/ Laboratories etc where lectures can be scheduled.,"Aulas / laboratorios, etc., donde las lecturas se pueden programar."
|
||||
apps/erpnext/erpnext/templates/includes/cart/cart_dropdown.html +18,Checkout,Finalizando pedido
|
||||
DocType: Guardian Student,Guardian Student,Guardián del Estudiante
|
||||
DocType: BOM Operation,Base Hour Rate(Company Currency),Tarifa Base por Hora (Divisa de Compañía)
|
||||
|
|
@ -1,7 +1,7 @@
|
||||
DocType: Purchase Receipt,Other Details,Otros Detalles
|
||||
DocType: Material Request Item,Lead Time Date,Fecha de la Iniciativa
|
||||
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Lead Time Days,Tiempo de ejecución en días
|
||||
apps/erpnext/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py +39,Outstanding Amt,Saldo Pendiente
|
||||
DocType: Payment Reconciliation Invoice,Outstanding Amount,Saldo Pendiente
|
||||
apps/erpnext/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py +45,Outstanding Amt,Saldo Pendiente
|
||||
DocType: Opening Invoice Creation Tool Item,Outstanding Amount,Saldo Pendiente
|
||||
DocType: Payment Entry Reference,Outstanding,Pendiente
|
||||
apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +192,Lead must be set if Opportunity is made from Lead,La Iniciativa se debe establecer si la Oportunidad está hecha desde una Iniciativa
|
||||
|
|
@ -2,15 +2,15 @@ DocType: Timesheet,Total Costing Amount,Monto Total Calculado
|
||||
DocType: Student Group Student,Student Group Student,Alumno de Grupo de Estudiantes
|
||||
DocType: Delivery Note,% Installed,% Instalado
|
||||
DocType: Company,Gain/Loss Account on Asset Disposal,Cuenta de ganancia/pérdida en la disposición de activos
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +468,Please enter Account for Change Amount,"Por favor, introduzca la Vuenta para el Cambio Monto"
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,"Por favor, introduzca la Vuenta para el Cambio Monto"
|
||||
DocType: Sales Order,SO-,OV-
|
||||
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +223,Please set the Item Code first,"Por favor, primero define el Código del Artículo"
|
||||
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +245,Please set the Item Code first,"Por favor, primero define el Código del Artículo"
|
||||
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +60,Show unclosed fiscal year's P&L balances,Mostrar saldos de Ganancias y Perdidas de año fiscal sin cerrar
|
||||
,Support Hour Distribution,Distribución de Hora de Soporte
|
||||
apps/erpnext/erpnext/schools/report/student_batch_wise_attendance/student_batch_wise_attendance.py +42,Student Group Strength,Fortaleza de Grupo Estudiante
|
||||
apps/erpnext/erpnext/accounts/doctype/asset/depreciation.py +191,Please set 'Gain/Loss Account on Asset Disposal' in Company {0},Por favor defina la 'Cuenta de Ganacia/Pérdida por Ventas de Activos' en la empresa {0}
|
||||
apps/erpnext/erpnext/education/report/student_batch_wise_attendance/student_batch_wise_attendance.py +42,Student Group Strength,Fortaleza de Grupo Estudiante
|
||||
apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +191,Please set 'Gain/Loss Account on Asset Disposal' in Company {0},Por favor defina la 'Cuenta de Ganacia/Pérdida por Ventas de Activos' en la empresa {0}
|
||||
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +44,Leave Type {0} cannot be allocated since it is leave without pay,Tipo de Permiso {0} no puede ser asignado ya que es un Permiso sin paga
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +446,Show Salary Slip,Mostrar Recibo de Nómina
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +463,Show Salary Slip,Mostrar Recibo de Nómina
|
||||
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +245,Leave Without Pay does not match with approved Leave Application records,Permiso sin sueldo no coincide con los registros de Solicitud de Permiso aprobadas
|
||||
DocType: Purchase Taxes and Charges Template,"Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like ""Shipping"", ""Insurance"", ""Handling"" etc.
|
||||
|
||||
@ -54,20 +54,20 @@ La tasa impositiva que se defina aquí será la tasa de gravamen predeterminada
|
||||
9. Considerar impuesto o cargo para: En esta sección se puede especificar si el impuesto / cargo es sólo para la valoración (no una parte del total) o sólo para el total (no agrega valor al elemento) o para ambos.
|
||||
10. Añadir o deducir: Si usted quiere añadir o deducir el impuesto."
|
||||
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +123,Leave Type {0} cannot be carry-forwarded,Tipo de Permiso {0} no se puede arrastar o trasladar
|
||||
apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +268,Accural Journal Entry for salaries from {0} to {1},Entrada de Diario de Cuentas por Pagar para salarios de {0} a {1}
|
||||
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +252,Accural Journal Entry for salaries from {0} to {1},Entrada de Diario de Cuentas por Pagar para salarios de {0} a {1}
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +123,Gain/Loss on Asset Disposal,Ganancia/Pérdida por la venta de activos
|
||||
DocType: Currency Exchange,Specify Exchange Rate to convert one currency into another,Especificar el Tipo de Cambio para convertir de una divisa a otra
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +52,Only Leave Applications with status 'Approved' and 'Rejected' can be submitted,"Sólo Solicitudes de Permiso con estado ""Aprobado"" y ""Rechazado"" puede ser presentado"
|
||||
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +155,Source and target warehouse must be different,El almacén de origen y el de destino deben ser diferentes
|
||||
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +20,"Service Item,Type,frequency and expense amount are required","El Artículo de Servico, el Tipo, la Frecuencia y la Cantidad de Gasto son requeridos"
|
||||
apps/erpnext/erpnext/accounts/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,El Importe Bruto de Compra es obligatorio
|
||||
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,El Importe Bruto de Compra es obligatorio
|
||||
DocType: Stock Entry,Customer or Supplier Details,Detalle de cliente o proveedor
|
||||
DocType: Lab Test Template,Standard Selling Rate,Tarifa de Venta Estándar
|
||||
DocType: Program Enrollment,School House,Casa Escuela
|
||||
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +254,Please set default account in Expense Claim Type {0},"Por favor, establezca la Cuenta predeterminada en el Tipo de Reembolso de Gastos {0}"
|
||||
apps/erpnext/erpnext/schools/doctype/assessment_result/assessment_result.js +36,Score cannot be greater than Maximum Score,Los resultados no puede ser mayor que la Puntuación Máxima
|
||||
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +305,Please set default account in Expense Claim Type {0},"Por favor, establezca la Cuenta predeterminada en el Tipo de Reembolso de Gastos {0}"
|
||||
apps/erpnext/erpnext/education/doctype/assessment_result/assessment_result.js +36,Score cannot be greater than Maximum Score,Los resultados no puede ser mayor que la Puntuación Máxima
|
||||
apps/erpnext/erpnext/stock/report/total_stock_summary/total_stock_summary.py +60,Please set Company filter blank if Group By is 'Company',"Por favor, establezca el filtro de Compañía en blanco si Agrupar Por es 'Compañía'"
|
||||
DocType: School Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Para Grupo de Estudiantes por Curso, el Curso será validado para cada Estudiante de los Cursos inscritos en la Inscripción del Programa."
|
||||
DocType: School Settings,"For Batch based Student Group, the Student Batch will be validated for every Student from the Program Enrollment.","Para grupo de estudiantes por lotes, el lote de estudiantes se validará para cada estudiante de la inscripción del programa."
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +71,Leave Encashment,Cobro de Permiso
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +992,Select Items based on Delivery Date,Seleccionar Artículos según la fecha de entrega
|
||||
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Para Grupo de Estudiantes por Curso, el Curso será validado para cada Estudiante de los Cursos inscritos en la Inscripción del Programa."
|
||||
DocType: Education Settings,"For Batch based Student Group, the Student Batch will be validated for every Student from the Program Enrollment.","Para grupo de estudiantes por lotes, el lote de estudiantes se validará para cada estudiante de la inscripción del programa."
|
||||
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +75,Leave Encashment,Cobro de Permiso
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +1041,Select Items based on Delivery Date,Seleccionar Artículos según la fecha de entrega
|
||||
|
|
@ -1,8 +1,8 @@
|
||||
DocType: Tax Rule,Tax Rule,Regla Fiscal
|
||||
DocType: POS Profile,Account for Change Amount,Cuenta para el Cambio de Monto
|
||||
apps/erpnext/erpnext/config/learn.py +217,Bill of Materials,Lista de Materiales
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +562,'Update Stock' cannot be checked for fixed asset sale,"""Actualización de Existencia' no puede ser escogida para venta de activo fijo"
|
||||
DocType: Sales Invoice,Tax ID,RUC
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +606,'Update Stock' cannot be checked for fixed asset sale,"""Actualización de Existencia' no puede ser escogida para venta de activo fijo"
|
||||
DocType: Purchase Invoice,Tax ID,RUC
|
||||
DocType: BOM Item,Basic Rate (Company Currency),Taza Base (Divisa de la Empresa)
|
||||
DocType: Timesheet Detail,Bill,Factura
|
||||
DocType: Activity Cost,Billing Rate,Monto de Facturación
|
||||
@ -11,7 +11,6 @@ apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +88,Tax Rule Conflict
|
||||
DocType: Tax Rule,Billing County,Municipio de Facturación
|
||||
DocType: Sales Invoice Timesheet,Billing Hours,Horas de Facturación
|
||||
DocType: Timesheet,Billing Details,Detalles de Facturación
|
||||
apps/erpnext/erpnext/accounts/party.py +268,Billing currency must be equal to either default comapany's currency or party account currency,Moneda de facturación debe ser igual a la moneda de la empresa o moneda de cuenta de contraparte
|
||||
DocType: Tax Rule,Billing State,Región de Facturación
|
||||
DocType: Purchase Order Item,Billed Amt,Monto Facturado
|
||||
DocType: Item Tax,Tax Rate,Tasa de Impuesto
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,14 +1,16 @@
|
||||
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +115,'Opening','Početno stanje'
|
||||
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Avg Daily Outgoing,Prosjek dnevne isporuke
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +36,Make Payment Entry,Kreirajte uplatu
|
||||
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +46,Warehouse {0} can not be deleted as quantity exists for Item {1},Skladište {0} ne može biti obrisano dok postoji zaliha za artikal {1}
|
||||
DocType: Item,Is Purchase Item,Artikal je za poručivanje
|
||||
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +74,Warehouse {0} does not exist,Skladište {0} ne postoji
|
||||
apps/erpnext/erpnext/config/selling.py +18,Confirmed orders from Customers.,Potvrđene porudžbine od strane kupaca
|
||||
apps/erpnext/erpnext/public/js/setup_wizard.js +31,Healthcare (beta),Klinika (beta)
|
||||
DocType: Salary Slip,Salary Structure,Структура плата
|
||||
apps/erpnext/erpnext/public/js/conf.js +32,Report an Issue,Prijavi grešku
|
||||
DocType: Salary Slip,Net Pay,Neto plaćanje
|
||||
DocType: Purchase Invoice Item,Item Tax Rate,Poreska stopa
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1508,Create a new Customer,Kreirajte novog kupca
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1523,Create a new Customer,Kreirajte novog kupca
|
||||
DocType: Item Variant Attribute,Attribute,Atribut
|
||||
DocType: POS Profile,POS Profile,POS profil
|
||||
DocType: Purchase Invoice,Currency and Price List,Valuta i cjenovnik
|
||||
@ -19,38 +21,43 @@ DocType: Activity Cost,Projects User,Projektni korisnik
|
||||
DocType: Lead,Address Desc,Opis adrese
|
||||
DocType: Mode of Payment,Mode of Payment,Način plaćanja
|
||||
apps/erpnext/erpnext/templates/pages/cart.html +5,My Cart,Moja korpa
|
||||
DocType: Consultation,Doctor,Doktor
|
||||
DocType: Payment Entry,Payment From / To,Plaćanje od / za
|
||||
DocType: Purchase Invoice,Grand Total (Company Currency),Za plaćanje (Valuta preduzeća)
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +236,Insufficient Stock,Nedovoljna količina
|
||||
DocType: Sales Invoice,Shipping Rule,Pravila nabavke
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Insufficient Stock,Nedovoljna količina
|
||||
DocType: Purchase Invoice,Shipping Rule,Pravila nabavke
|
||||
apps/erpnext/erpnext/accounts/report/profitability_analysis/profitability_analysis.py +152,Gross Profit / Loss,Bruto dobit / gubitak
|
||||
apps/erpnext/erpnext/public/js/pos/pos.html +20,Tap items to add them here,Pritisnite na artikal da bi ga dodali ovdje
|
||||
,Sales Order Trends,Trendovi prodajnih naloga
|
||||
DocType: Sales Invoice,Offline POS Name,POS naziv u režimu van mreže (offline)
|
||||
DocType: Request for Quotation Item,Project Name,Naziv Projekta
|
||||
DocType: Supplier,Last Day of the Next Month,Posljednji dan u narednom mjesecu
|
||||
DocType: Company,Last Day of the Next Month,Posljednji dan u narednom mjesecu
|
||||
DocType: Item,Material Transfer,Prenos robe
|
||||
DocType: Bank Guarantee,Project,Projekti
|
||||
apps/erpnext/erpnext/utilities/activation.py +74,Make Quotation,Napravi predračun
|
||||
DocType: Bank Guarantee,Customer,Kupci
|
||||
DocType: Bank Guarantee,Customer,Kupac
|
||||
DocType: Purchase Order Item,Supplier Quotation Item,Stavka na dobavljačevoj ponudi
|
||||
DocType: Item Group,General Settings,Opšta podešavanja
|
||||
apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +27,Ageing Based On,Staros bazirana na
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +126,Gram,Gram
|
||||
DocType: Asset,Purchase Invoice,Faktura nabavke
|
||||
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +189,Closing (Opening + Totals),Saldo (Početno stanje + Ukupno)
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +144,Gram,Gram
|
||||
DocType: Journal Entry Account,Purchase Invoice,Faktura nabavke
|
||||
DocType: Period Closing Voucher,Closing Fiscal Year,Zatvaranje fiskalne godine
|
||||
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +100,Group by Voucher,Grupiši po knjiženjima
|
||||
DocType: Item,Customer Code,Šifra kupca
|
||||
DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purchase Order,Dozvolite više prodajnih naloga koji su vezani sa porudžbenicom kupca
|
||||
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Ukupno isporučeno
|
||||
DocType: Consultation,Consultation Time,Vrijeme pregleda
|
||||
,Sales Register,Pregled Prodaje
|
||||
DocType: Sales Order,% Delivered,% Isporučeno
|
||||
DocType: Journal Entry Account,Party Balance,Stanje kupca
|
||||
apps/erpnext/erpnext/config/selling.py +23,Customers,Kupci
|
||||
apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +175,Set as Lost,Obilježi kao izgubljenu
|
||||
DocType: Production Order,Production Order,Proizvodne porudžbine
|
||||
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +29,Buy,Kupovina
|
||||
apps/erpnext/erpnext/accounts/party.py +372,{0} {1} is not active,{0} {1} nije aktivan
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +762,Return / Credit Note,Povraćaj / knjižno odobrenje
|
||||
apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +815,Get Items from BOM,Dodaj stavke iz БОМ
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +2005,Please select customer,Odaberite kupca
|
||||
apps/erpnext/erpnext/accounts/party.py +384,{0} {1} is not active,{0} {1} nije aktivan
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +809,Return / Credit Note,Povraćaj / knjižno odobrenje
|
||||
apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +840,Get Items from BOM,Dodaj stavke iz БОМ
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +2020,Please select customer,Odaberite kupca
|
||||
apps/erpnext/erpnext/public/js/templates/address_list.html +22,New Address,Nova adresa
|
||||
,Stock Summary,Pregled zalihe
|
||||
DocType: Stock Entry Detail,Additional Cost,Dodatni trošak
|
||||
@ -60,8 +67,11 @@ DocType: Sales Order Item,Sales Order Date,Datum prodajnog naloga
|
||||
apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.py +37,Delivery Note {0} must not be submitted,Otpremnica {0} se ne može potvrditi
|
||||
apps/erpnext/erpnext/buying/utils.py +80,{0} {1} status is {2},{0} {1} status je {2}
|
||||
DocType: BOM,Item Image (if not slideshow),Slika artikla (ako nije prezentacija)
|
||||
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment_dashboard.py +11,Consultations,Pregledi
|
||||
DocType: Territory,Classification of Customers by region,Klasifikacija kupaca po regiji
|
||||
DocType: Quotation,Quotation To,Ponuda za
|
||||
DocType: Journal Entry,Remark,Napomena
|
||||
apps/erpnext/erpnext/healthcare/doctype/physician/physician.py +65,User {0} is already assigned to Physician {1},Korisnik {0} je već dodijeljen ljekaru {1}
|
||||
apps/erpnext/erpnext/config/selling.py +75,Tree of Item Groups.,Stablo Vrste artikala
|
||||
apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +32,Customer Group / Customer,Grupa kupaca / kupci
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js +71,Accounts Receivable Summary,Pregled potraživanja od kupaca
|
||||
@ -71,40 +81,41 @@ DocType: Bank Reconciliation,Account Currency,Valuta računa
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +70,Open Projects,Otvoreni projekti
|
||||
DocType: POS Profile,Price List,Cjenovnik
|
||||
DocType: Activity Cost,Projects,Projekti
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +641,Supplier Invoice Date cannot be greater than Posting Date,Datum fakture dobavljača ne može biti veći od datuma otvaranja fakture
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +645,Supplier Invoice Date cannot be greater than Posting Date,Datum fakture dobavljača ne može biti veći od datuma otvaranja fakture
|
||||
DocType: Production Planning Tool,Sales Orders,Prodajni nalozi
|
||||
DocType: Item,Manufacturer Part Number,Proizvođačka šifra
|
||||
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Prosječna vrijednost nabavke
|
||||
DocType: Sales Order Item,Gross Profit,Bruto dobit
|
||||
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Grupiši po računu.
|
||||
DocType: Asset,Item Name,Naziv artikla
|
||||
DocType: Opening Invoice Creation Tool Item,Item Name,Naziv artikla
|
||||
DocType: Item,Will also apply for variants,Biće primijenjena i na varijante
|
||||
DocType: Purchase Invoice,Total Advance,Ukupno Avans
|
||||
apps/erpnext/erpnext/config/selling.py +316,Sales Order to Payment,Prodajni nalog za plaćanje
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +227,Serial No {0} does not belong to any Warehouse,Serijski broj {0} ne pripada ni jednom skladištu
|
||||
,Sales Analytics,Prodajna analitika
|
||||
DocType: Patient Appointment,Patient Age,Starost pacijenta
|
||||
DocType: Sales Invoice,Customer Address,Adresa kupca
|
||||
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.py +68,Total (Credit),Ukupno bez PDV-a (duguje)
|
||||
DocType: Delivery Note,In Words (Export) will be visible once you save the Delivery Note.,Slovima (izvoz) će biti vidljiv onda kad sačuvate otpremnicu
|
||||
DocType: Opportunity,Opportunity Date,Datum prilike
|
||||
DocType: Sales Invoice Item,Delivery Note Item,Pozicija otpremnice
|
||||
DocType: Sales Order,Customer's Purchase Order,Porudžbenica kupca
|
||||
DocType: Employee Loan,Totals,Ukupno
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +568,Get items from,Dodaj stavke iz
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Dodaj stavke iz
|
||||
DocType: C-Form,Total Invoiced Amount,Ukupno fakturisano
|
||||
DocType: Purchase Invoice,Supplier Invoice Date,Datum fakture dobavljača
|
||||
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +160,Journal Entry {0} does not have account {1} or already matched against other voucher,Knjiženje {0} nema nalog {1} ili je već povezan sa drugim izvodom
|
||||
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +158,Journal Entry {0} does not have account {1} or already matched against other voucher,Knjiženje {0} nema nalog {1} ili je već povezan sa drugim izvodom
|
||||
DocType: Lab Test,Lab Test,Lab test
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py +29,-Above,- Iznad
|
||||
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +208,{0} {1} is cancelled or stopped,{0} {1} je otkazan ili stopiran
|
||||
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +209,{0} {1} is cancelled or stopped,{0} {1} je otkazan ili stopiran
|
||||
DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Porezi i naknade dodate (valuta preduzeća)
|
||||
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +67,Offline,Van mreže (offline)
|
||||
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +380,Note: {0},Bilješka: {0}
|
||||
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +64,Offline,Van mreže (offline)
|
||||
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Bilješka: {0}
|
||||
DocType: Lead,Lost Quotation,Izgubljen Predračun
|
||||
DocType: Account,Account,Račun
|
||||
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Računovodstvo: {0} može samo da se ažurira u dijelu Promjene na zalihama
|
||||
DocType: Employee Leave Approver,Leave Approver,Odobrava izlaske s posla
|
||||
DocType: Authorization Rule,Customer or Item,Kupac ili proizvod
|
||||
apps/erpnext/erpnext/stock/get_item_details.py +135,No Item with Serial No {0},Ne postoji artikal sa serijskim brojem {0}
|
||||
apps/erpnext/erpnext/stock/get_item_details.py +129,No Item with Serial No {0},Ne postoji artikal sa serijskim brojem {0}
|
||||
DocType: POS Profile,Taxes and Charges,Porezi i naknade
|
||||
DocType: Item,Serial Number Series,Serijski broj serije
|
||||
DocType: Purchase Order,Delivered,Isporučeno
|
||||
@ -113,88 +124,98 @@ DocType: Asset,Asset Category,Grupe osnovnih sredstava
|
||||
DocType: Sales Invoice Item,Customer Warehouse (Optional),Skladište kupca (opciono)
|
||||
DocType: Delivery Note Item,From Warehouse,Iz skladišta
|
||||
apps/erpnext/erpnext/templates/pages/projects.html +31,Show closed,Prikaži zatvorene
|
||||
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.py +107,Physician not available on {0},Ljekar nije dostupan u {0}
|
||||
DocType: Customer,Additional information regarding the customer.,Dodatne informacije o kupcu
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +452,Warehouse required for stock Item {0},Skladište je potrebno unijeti za artikal {0}
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Skladište je potrebno unijeti za artikal {0}
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +182,Payment Entry already exists,Uplata već postoji
|
||||
DocType: Project,Customer Details,Korisnički detalji
|
||||
DocType: Item,"Example: ABCD.#####
|
||||
If series is set and Serial No is not mentioned in transactions, then automatic serial number will be created based on this series. If you always want to explicitly mention Serial Nos for this item. leave this blank.","Primjer:. ABCD #####
|
||||
Ако Радња је смештена i serijski broj se ne pominje u transakcijama, onda će automatski serijski broj biti kreiran na osnovu ove serije. Ukoliko uvijek želite da eksplicitno spomenete serijski broj ove šifre, onda je ostavite praznu."
|
||||
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +73,Online,Na mreži
|
||||
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +70,Online,Na mreži
|
||||
apps/erpnext/erpnext/config/selling.py +311,Customer and Supplier,Kupac i dobavljač
|
||||
DocType: Project,% Completed,Završeno %
|
||||
DocType: Journal Entry Account,Sales Invoice,Faktura prodaje
|
||||
DocType: Journal Entry,Accounting Entries,Računovodstveni unosi
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Red # {0}: Knjiženje {1} nema kreiran nalog {2} ili je već povezan sa drugim izvodom.
|
||||
DocType: Antibiotic,Healthcare Administrator,Administrator klinike
|
||||
DocType: Sales Order,Track this Sales Order against any Project,Prati ovaj prodajni nalog na bilo kom projektu
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +491,[Error],[Greška]
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +515,[Error],[Greška]
|
||||
DocType: Supplier,Supplier Details,Detalji o dobavljaču
|
||||
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +26,Community Forum,Forum zajednice
|
||||
,Batch Item Expiry Status,Pregled artikala sa rokom trajanja
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +782,Payment,Plaćanje
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +808,Payment,Plaćanje
|
||||
,Sales Partners Commission,Provizija za prodajne partnere
|
||||
DocType: C-Form Invoice Detail,Territory,Teritorija
|
||||
apps/erpnext/erpnext/stock/doctype/item_price/item_price.py +27,Price List {0} is disabled,Cjenovnik {0} je zaključan
|
||||
DocType: Notification Control,Sales Order Message,Poruka prodajnog naloga
|
||||
DocType: Email Digest,Pending Sales Orders,Prodajni nalozi na čekanju
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +126,Minute,Minut
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +126,Litre,Litar
|
||||
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +218,Opening (Cr),Početno stanje (Po)
|
||||
DocType: Interest,Academics User,Akademski korisnik
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +144,Minute,Minut
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litar
|
||||
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +225,Opening (Cr),Početno stanje (Po)
|
||||
DocType: Academic Term,Academics User,Akademski korisnik
|
||||
DocType: Student,Blood Group,Krvna grupa
|
||||
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.html +1,Statement of Account,Izjava o računu
|
||||
DocType: Delivery Note,Billing Address,Adresa za naplatu
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/pos.py +392,All Territories,Sve države
|
||||
DocType: Payment Entry,Received Amount (Company Currency),Iznos uplate (Valuta preduzeća)
|
||||
DocType: Lab Test Template,Standard Selling Rate,Standarna prodajna cijena
|
||||
apps/erpnext/erpnext/config/setup.py +122,Human Resources,Ljudski resursi
|
||||
DocType: Healthcare Settings,Consultations in valid days,Pregledi u važećim danima
|
||||
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Korisnički portal
|
||||
DocType: Purchase Order Item Supplied,Stock UOM,JM zalihe
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1359,Select or add new customer,Izaberite ili dodajte novog kupca
|
||||
DocType: Fee Validity,Valid Till,Važi do
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1374,Select or add new customer,Izaberite ili dodajte novog kupca
|
||||
,Trial Balance for Party,Struktura dugovanja
|
||||
DocType: Program Enrollment Tool,New Program,Novi program
|
||||
DocType: Product Bundle Item,Product Bundle Item,Sastavljeni proizvodi
|
||||
DocType: Lead,Address & Contact,Adresa i kontakt
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +782,Make ,Napravi
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +808,Make ,Napravi
|
||||
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +6,This is based on stock movement. See {0} for details,Ovo praćenje je zasnovano na kretanje zaliha. Pogledajte {0} za više detalja
|
||||
apps/erpnext/erpnext/config/selling.py +41,All Contacts.,Svi kontakti
|
||||
DocType: Consultation,Consultation Date,Datum pregleda
|
||||
DocType: Item,Default Warehouse,Podrazumijevano skladište
|
||||
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Тренутно не постоје залихе у складишту
|
||||
DocType: Company,Default Letter Head,Podrazumijevano zaglavlje
|
||||
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +70,Sales Order {0} is not valid,Prodajni nalog {0} nije validan
|
||||
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Prodajni nalog {0} nije validan
|
||||
DocType: Account,Credit,Potražuje
|
||||
DocType: C-Form Invoice Detail,Grand Total,Za plaćanje
|
||||
apps/erpnext/erpnext/config/learn.py +234,Human Resource,Ljudski resursi
|
||||
DocType: Selling Settings,Delivery Note Required,Otpremnica je obavezna
|
||||
DocType: Payment Entry,Type of Payment,Vrsta plaćanja
|
||||
DocType: Purchase Invoice Item,UOM,JM
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +57,Difference Amount must be zero,Razlika u iznosu mora biti nula
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +59,Difference Amount must be zero,Razlika u iznosu mora biti nula
|
||||
DocType: Sales Order,Not Delivered,Nije isporučeno
|
||||
apps/erpnext/erpnext/config/selling.py +158,Sales campaigns.,Prodajne kampanje
|
||||
DocType: Item,Auto re-order,Automatska porudžbina
|
||||
,Profit and Loss Statement,Bilans uspjeha
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +126,Meter,Metar
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +125,Pair,Par
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +144,Meter,Metar
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +143,Pair,Par
|
||||
,Profitability Analysis,Analiza profitabilnosti
|
||||
DocType: Attendance,HR Manager,Menadžer za ljudske resurse
|
||||
DocType: Purchase Invoice,Total Taxes and Charges (Company Currency),Porez (valuta preduzeća)
|
||||
DocType: Quality Inspection,Quality Manager,Menadžer za kvalitet
|
||||
DocType: Asset,Quality Manager,Menadžer za kvalitet
|
||||
apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +266,Sales Invoice {0} has already been submitted,Faktura prodaje {0} je već potvrđena
|
||||
DocType: Purchase Invoice,Is Return,Da li je povratak
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +663,Supplier Invoice No exists in Purchase Invoice {0},Broj fakture dobavljača već postoji u fakturi nabavke {0}
|
||||
DocType: Stock Entry,Material Receipt,Prijem robe
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +667,Supplier Invoice No exists in Purchase Invoice {0},Broj fakture dobavljača već postoji u fakturi nabavke {0}
|
||||
DocType: Asset Movement,Source Warehouse,Izvorno skladište
|
||||
apps/erpnext/erpnext/config/learn.py +263,Managing Projects,Upravljanje projektima
|
||||
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Kalkulacija
|
||||
DocType: Supplier,Name and Type,Ime i tip
|
||||
DocType: Customs Tariff Number,Customs Tariff Number,Carinska tarifa
|
||||
DocType: Item,Default Supplier,Podrazumijevani dobavljač
|
||||
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +171,Opening,Početno stanje
|
||||
apps/erpnext/erpnext/healthcare/page/medical_record/patient_select.html +3,Select Patient,Izaberite pacijenta
|
||||
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +219,Opening,Početno stanje
|
||||
DocType: POS Profile,Customer Groups,Grupe kupaca
|
||||
DocType: Brand,Item Manager,Menadžer artikala
|
||||
DocType: Fiscal Year Company,Fiscal Year Company,Fiskalna godina preduzeća
|
||||
DocType: Supplier,Credit Days Based On,Dani dugovanja bazirani na
|
||||
DocType: Patient Appointment,Patient Appointment,Zakazivanje pacijenata
|
||||
DocType: Company,Credit Days Based On,Dani dugovanja bazirani na
|
||||
DocType: BOM,Show In Website,Prikaži na web sajtu
|
||||
DocType: Payment Entry,Paid Amount,Uplaćeno
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +23,Total Paid Amount,Ukupno plaćeno
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +234,Purchase Receipt {0} is not submitted,Prijem robe {0} nije potvrđen
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +237,Purchase Receipt {0} is not submitted,Prijem robe {0} nije potvrđen
|
||||
apps/erpnext/erpnext/config/selling.py +52,Items and Pricing,Proizvodi i cijene
|
||||
DocType: Payment Entry,Account Paid From,Račun plaćen preko
|
||||
apps/erpnext/erpnext/utilities/activation.py +72,Create customer quotes,Kreirajte bilješke kupca
|
||||
@ -206,8 +227,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Am
|
||||
DocType: Item,Allow over delivery or receipt upto this percent,Dozvolite isporukuili prijem robe ukoliko ne premaši ovaj procenat
|
||||
DocType: Shopping Cart Settings,Orders,Porudžbine
|
||||
apps/erpnext/erpnext/config/stock.py +7,Stock Transactions,Promjene na zalihama
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +939,Add items from,Dodaj stavke iz
|
||||
DocType: Sales Invoice,Rounded Total (Company Currency),Zaokruženi ukupan iznos (valuta preduzeća)
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +964,Add items from,Dodaj stavke iz
|
||||
DocType: Purchase Invoice,Rounded Total (Company Currency),Zaokruženi ukupan iznos (valuta preduzeća)
|
||||
DocType: Item,"If this item has variants, then it cannot be selected in sales orders etc.","Ako ovaj artikal ima varijante, onda ne može biti biran u prodajnom nalogu."
|
||||
DocType: Pricing Rule,Discount on Price List Rate (%),Popust na cijene iz cjenovnika (%)
|
||||
DocType: Item,Item Attribute,Atribut artikla
|
||||
@ -215,26 +236,30 @@ DocType: Payment Request,Amount in customer's currency,Iznos u valuti kupca
|
||||
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +106,Warehouse is mandatory,Skladište je obavezan podatak
|
||||
DocType: Email Digest,New Sales Orders,Novi prodajni nalozi
|
||||
apps/erpnext/erpnext/templates/includes/cart/cart_dropdown.html +21,Cart is Empty,Korpa je prazna
|
||||
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +539,Stock Entry {0} is not submitted,Unos zaliha {0} nije potvrđen
|
||||
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +367,Rest Of The World,Ostatak svijeta
|
||||
DocType: Consultation,Patient Details,Detalji o pacijentu
|
||||
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +537,Stock Entry {0} is not submitted,Unos zaliha {0} nije potvrđen
|
||||
apps/erpnext/erpnext/setup/setup_wizard/operations/defaults_setup.py +105,Rest Of The World,Ostatak svijeta
|
||||
DocType: Production Order,Additional Operating Cost,Dodatni operativni troškovi
|
||||
DocType: Purchase Invoice,Rejected Warehouse,Odbijeno skladište
|
||||
DocType: Request for Quotation,Manufacturing Manager,Menadžer proizvodnje
|
||||
DocType: Asset Repair,Manufacturing Manager,Menadžer proizvodnje
|
||||
DocType: Shopping Cart Settings,Enable Shopping Cart,Omogući korpu
|
||||
DocType: Purchase Invoice Item,Is Fixed Asset,Artikal je osnovno sredstvo
|
||||
,POS,POS
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +459, (Half Day),(Pola dana)
|
||||
DocType: Shipping Rule,Net Weight,Neto težina
|
||||
DocType: Payment Entry Reference,Outstanding,Preostalo
|
||||
DocType: Sales Invoice Item,Discount (%) on Price List Rate with Margin,Popust (%)
|
||||
DocType: Purchase Invoice,Select Shipping Address,Odaberite adresu isporuke
|
||||
apps/erpnext/erpnext/accounts/report/purchase_order_items_to_be_billed/purchase_order_items_to_be_billed.py +20,Amount to Bill,Iznos za fakturisanje
|
||||
apps/erpnext/erpnext/utilities/activation.py +82,Make Sales Orders to help you plan your work and deliver on-time,Kreiranje prodajnog naloga će vam pomoći da isplanirate svoje vrijeme i dostavite robu na vrijeme
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +778,Sync Offline Invoices,Sinhronizuj offline fakture
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +793,Sync Offline Invoices,Sinhronizuj offline fakture
|
||||
DocType: BOM,Manufacturing,Proizvodnja
|
||||
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Isporučeno
|
||||
DocType: Delivery Note,Customer's Purchase Order No,Broj porudžbenice kupca
|
||||
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +125,Please enter Sales Orders in the above table,U tabelu iznad unesite prodajni nalog
|
||||
DocType: Quality Inspection,Report Date,Datum izvještaja
|
||||
DocType: POS Profile,Item Groups,Vrste artikala
|
||||
DocType: Pricing Rule,Discount Percentage,Procenat popusta
|
||||
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Bruto dobit%
|
||||
DocType: Payment Request,Payment Request,Upit za plaćanje
|
||||
,Purchase Analytics,Analiza nabavke
|
||||
@ -248,11 +273,10 @@ apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +171,Add more items or op
|
||||
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Rezervisana za prodaju
|
||||
DocType: POS Item Group,Item Group,Vrste artikala
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +46,Age (Days),Starost (Dani)
|
||||
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +211,Opening (Dr),Početno stanje (Du)
|
||||
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +218,Opening (Dr),Početno stanje (Du)
|
||||
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +23,Go to the Desktop and start using ERPNext,Idite na radnu površinu i krenite sa radom u programu
|
||||
apps/erpnext/erpnext/stock/doctype/item_price/item_price.py +33,Item {0} appears multiple times in Price List {1},Artikal {0} se javlja više puta u cjenovniku {1}
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +458,Production Order {0} must be submitted,Proizvodna porudžbine {0} mora biti potvrdjena
|
||||
DocType: Project,Total Sales Cost (via Sales Order),Ukupni prodajni troškovi (od prodajnih naloga)
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +483,Production Order {0} must be submitted,Proizvodna porudžbine {0} mora biti potvrdjena
|
||||
DocType: Customer,From Lead,Od Lead-a
|
||||
apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Baza potencijalnih kupaca
|
||||
apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +28,Project Status,Status Projekta
|
||||
@ -267,48 +291,56 @@ DocType: Sales Invoice Item,Available Qty at Warehouse,Dostupna količina na skl
|
||||
DocType: Item,Foreign Trade Details,Spoljnotrgovinski detalji
|
||||
DocType: Item,Minimum Order Qty,Minimalna količina za poručivanje
|
||||
DocType: Budget,Fiscal Year,Fiskalna godina
|
||||
apps/erpnext/erpnext/public/js/utils/serial_no_batch_selector.js +118,Please select a warehouse,Izaberite skladište
|
||||
DocType: Stock Entry,Repack,Prepakovati
|
||||
apps/erpnext/erpnext/public/js/utils/serial_no_batch_selector.js +128,Please select a warehouse,Izaberite skladište
|
||||
DocType: Project,Project will be accessible on the website to these users,Projekat će biti dostupan na sajtu sledećim korisnicima
|
||||
DocType: Company,Services,Usluge
|
||||
apps/erpnext/erpnext/public/js/setup_wizard.js +29,Services,Usluge
|
||||
apps/erpnext/erpnext/config/healthcare.py +153,Lab Test Configurations.,Konfigurisanje Lab testa
|
||||
apps/erpnext/erpnext/public/js/pos/pos.html +4,Item Cart,Korpa sa artiklima
|
||||
DocType: Warehouse,Warehouse Detail,Detalji o skldištu
|
||||
DocType: Quotation Item,Quotation Item,Stavka sa ponude
|
||||
DocType: Purchase Order Item,Warehouse and Reference,Skladište i veza
|
||||
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +92,{0} {1}: Account {2} is inactive,{0} {1}: Nalog {2} je neaktivan
|
||||
apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +449,Fiscal Year {0} not found,Fiskalna godina {0} nije pronađena
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,No Remarks,Nema napomene
|
||||
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +438,Fiscal Year {0} not found,Fiskalna godina {0} nije pronađena
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +93,No Remarks,Nema napomene
|
||||
DocType: Notification Control,Purchase Receipt Message,Poruka u Prijemu robe
|
||||
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +21,Setup Already Complete!!,Podešavanje je već urađeno !
|
||||
DocType: Purchase Invoice,Taxes and Charges Deducted,Umanjeni porezi i naknade
|
||||
DocType: Item,Default Unit of Measure,Podrazumijevana jedinica mjere
|
||||
DocType: Purchase Invoice Item,Serial No,Serijski broj
|
||||
DocType: Pricing Rule,Supplier Type,Tip dobavljača
|
||||
apps/erpnext/erpnext/stock/dashboard/item_dashboard_list.html +25,Actual Qty {0} / Waiting Qty {1},Trenutna kol. {0} / Na čekanju {1}
|
||||
DocType: Grant Application,Individual,Fizičko lice
|
||||
DocType: Bank Reconciliation Detail,Posting Date,Datum dokumenta
|
||||
DocType: Cheque Print Template,Date Settings,Podešavanje datuma
|
||||
DocType: Payment Entry,Total Allocated Amount (Company Currency),Ukupan povezani iznos (Valuta)
|
||||
DocType: Account,Income,Prihod
|
||||
apps/erpnext/erpnext/public/js/utils/item_selector.js +20,Add Items,Dodaj stavke
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1691,Price List not found or disabled,Cjenovnik nije pronađen ili je zaključan
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +765,New Sales Invoice,Nova faktura
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1706,Price List not found or disabled,Cjenovnik nije pronađen ili je zaključan
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +780,New Sales Invoice,Nova faktura
|
||||
apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center_tree.js +16,New Company,Novo preduzeće
|
||||
DocType: Issue,Support Team,Tim za podršku
|
||||
DocType: Item,Valuation Method,Način vrednovanja
|
||||
DocType: Project,Project Type,Tip Projekta
|
||||
DocType: Purchase Order Item,Returned Qty,Vraćena kol.
|
||||
DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Iznos dodatnog popusta (valuta preduzeća)
|
||||
DocType: Opportunity,Maintenance,Održavanje
|
||||
DocType: Asset,Maintenance,Održavanje
|
||||
DocType: Item Price,Multiple Item prices.,Više cijena artikala
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +363,Received From,je primljen od
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +364,Received From,je primljen od
|
||||
DocType: Payment Entry,Write Off Difference Amount,Otpis razlike u iznosu
|
||||
DocType: Task,Closing Date,Datum zatvaranja
|
||||
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +71,Select Physician...,Izaberite ljekara ...
|
||||
DocType: Payment Entry,Cheque/Reference Date,Datum izvoda
|
||||
DocType: Repayment Schedule,Payment Date,Datum plaćanja
|
||||
DocType: Vehicle,Additional Details,Dodatni detalji
|
||||
DocType: Company,Create Chart Of Accounts Based On,Kreiraj kontni plan prema
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +130,Open To Do,Otvori To Do
|
||||
apps/erpnext/erpnext/config/stock.py +163,Split Delivery Note into packages.,Razdvoji otpremnicu u pakovanja
|
||||
DocType: Authorization Rule,Average Discount,Prosječan popust
|
||||
DocType: Item,Material Issue,Reklamacija robe
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +259,Supplier Quotation {0} created,Ponuda dobavljaču {0} је kreirana
|
||||
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +101,Not allowed to update stock transactions older than {0},Nije dozvoljeno mijenjati Promjene na zalihama starije od {0}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +380,Add Employees,Dodaj zaposlene
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +397,Add Employees,Dodaj zaposlene
|
||||
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +93,Warehouse not found in the system,Skladište nije pronađeno u sistemu
|
||||
,Lab Test Report,Izvještaj labaratorijskog testa
|
||||
DocType: Sales Invoice,Customer Name,Naziv kupca
|
||||
DocType: Employee,Current Address,Trenutna adresa
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Predstojeći događaji u kalendaru
|
||||
@ -319,14 +351,15 @@ DocType: Stock Settings,Default Item Group,Podrazumijevana vrsta artikala
|
||||
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Na zalihama
|
||||
DocType: Purchase Invoice,Taxes and Charges Deducted (Company Currency),Umanjeni porezi i naknade (valuta preduzeća)
|
||||
DocType: Stock Entry,Additional Costs,Dodatni troškovi
|
||||
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +26,POS Profile {0} already created for user: {1} and company {2},POS profil {0} je već kreiran za korisnika: {1} i kompaniju {2}
|
||||
DocType: Item,Default Selling Cost Center,Podrazumijevani centar troškova
|
||||
apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Još uvijek nema kupaca!
|
||||
apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +851,Sales Return,Povraćaj prodaje
|
||||
apps/erpnext/erpnext/selling/doctype/customer/customer_dashboard.py +6,This is based on transactions against this Customer. See timeline below for details,Ovo je zasnovano na transkcijama ovog klijenta. Pogledajte vremensku liniju ispod za dodatne informacije
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +64,Warning: Sales Order {0} already exists against Customer's Purchase Order {1},Upozorenje: Prodajni nalog {0}već postoji veza sa porudžbenicom kupca {1}
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +65,Warning: Sales Order {0} already exists against Customer's Purchase Order {1},Upozorenje: Prodajni nalog {0}već postoji veza sa porudžbenicom kupca {1}
|
||||
DocType: Healthcare Settings,Healthcare Settings,Podešavanje klinike
|
||||
apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +36,Accounting Ledger,Analitička kartica
|
||||
DocType: Stock Entry,Total Outgoing Value,Ukupna vrijednost isporuke
|
||||
apps/erpnext/erpnext/controllers/selling_controller.py +271,Sales Order {0} is {1},Prodajni nalog {0} је {1}
|
||||
apps/erpnext/erpnext/controllers/selling_controller.py +245,Sales Order {0} is {1},Prodajni nalog {0} је {1}
|
||||
DocType: Stock Settings,Automatically Set Serial Nos based on FIFO,Podesi automatski serijski broj da koristi FIFO
|
||||
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Novi kupci
|
||||
apps/erpnext/erpnext/selling/doctype/customer/customer_dashboard.py +10,Pre Sales,Prije prodaje
|
||||
@ -338,75 +371,83 @@ apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +44,Ag
|
||||
DocType: POS Item Group,POS Item Group,POS Vrsta artikala
|
||||
DocType: Lead,Lead,Lead
|
||||
apps/erpnext/erpnext/templates/pages/home.html +31,View All Products,Pogledajte sve proizvode
|
||||
DocType: Patient Medical Record,Patient Medical Record,Medicinski karton pacijenta
|
||||
DocType: Supplier,Address and Contacts,Adresa i kontakti
|
||||
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Ovo je zasnovano na transkcijama ovog preduzeća. Pogledajte vremensku liniju ispod za dodatne informacije
|
||||
DocType: Student Attendance Tool,Batch,Serija
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +817,Purchase Receipt,Prijem robe
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +843,Purchase Receipt,Prijem robe
|
||||
DocType: Item,Warranty Period (in days),Garantni rok (u danima)
|
||||
apps/erpnext/erpnext/config/selling.py +28,Customer database.,Korisnička baza podataka
|
||||
,Stock Projected Qty,Projektovana količina na zalihama
|
||||
apps/erpnext/erpnext/stock/stock_ledger.py +368,{0} units of {1} needed in {2} to complete this transaction.,Željenu količinu {0} za artikal {1} je potrebno dodati na {2} da bi dovršili transakciju..
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +350,Make Payment,Kreiraj plaćanje
|
||||
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Ne možete obrisati fiskalnu godinu {0}. Fiskalna {0} godina je označena kao trenutna u globalnim podešavanjima.
|
||||
apps/erpnext/erpnext/stock/stock_ledger.py +375,{0} units of {1} needed in {2} to complete this transaction.,Željenu količinu {0} za artikal {1} je potrebno dodati na {2} da bi dovršili transakciju..
|
||||
DocType: GL Entry,Remarks,Napomena
|
||||
DocType: Tax Rule,Sales,Prodaja
|
||||
DocType: Opening Invoice Creation Tool,Sales,Prodaja
|
||||
DocType: Pricing Rule,Pricing Rule,Pravilnik za cijene
|
||||
DocType: Products Settings,Products Settings,Podešavanje proizvoda
|
||||
DocType: Lab Test,Mobile,Mobilni
|
||||
DocType: Purchase Invoice Item,Price List Rate,Cijena
|
||||
apps/erpnext/erpnext/templates/print_formats/includes/taxes.html +5,Discount Amount,Vrijednost popusta
|
||||
,Sales Invoice Trends,Trendovi faktura prodaje
|
||||
DocType: POS Profile,Apply Discount,Primijeni popust
|
||||
DocType: Purchase Invoice,Tax Breakup,Porez po pozicijama
|
||||
DocType: Expense Claim,Task,Zadatak
|
||||
apps/erpnext/erpnext/stock/doctype/item/item.js +272,Add / Edit Prices,Dodaj / Izmijeni cijene
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +905,Production Order already created for all items with BOM,Proizvodna porudžbina je već kreirana za sve artikle sa BOM
|
||||
DocType: Asset Maintenance Log,Task,Zadatak
|
||||
apps/erpnext/erpnext/stock/doctype/item/item.js +268,Add / Edit Prices,Dodaj / Izmijeni cijene
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +952,Production Order already created for all items with BOM,Proizvodna porudžbina je već kreirana za sve artikle sa BOM
|
||||
,Item Prices,Cijene artikala
|
||||
DocType: Salary Component,Salary Component,Компонента плате
|
||||
DocType: Sales Order,Customer's Purchase Order Date,Datum porudžbenice kupca
|
||||
DocType: Item,Country of Origin,Zemlja porijekla
|
||||
DocType: Quotation,Order Type,Vrsta porudžbine
|
||||
DocType: Pricing Rule,For Price List,Za cjenovnik
|
||||
DocType: Sales Invoice,Tax ID,Poreski broj
|
||||
DocType: Purchase Invoice,Tax ID,Poreski broj
|
||||
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +42,WIP Warehouse,Wip skladište
|
||||
,Itemwise Recommended Reorder Level,Pregled otpremljenih artikala
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Sales Order {0} is not submitted,Prodajni nalog {0} nije potvrđen
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Prodajni nalog {0} nije potvrđen
|
||||
DocType: Item,Default Material Request Type,Podrazumijevani zahtjev za tip materijala
|
||||
apps/erpnext/erpnext/config/crm.py +6,Sales Pipeline,Prodajna linija
|
||||
DocType: Payment Entry,Pay,Plati
|
||||
DocType: Item,Sales Details,Detalji prodaje
|
||||
apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigacija
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +117,Your Products or Services,Vaši artikli ili usluge
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +135,Your Products or Services,Vaši artikli ili usluge
|
||||
DocType: Lead,CRM,CRM
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +158,Quotation {0} is cancelled,Ponuda {0} je otkazana
|
||||
DocType: Asset,Item Code,Šifra artikla
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +159,Quotation {0} is cancelled,Ponuda {0} je otkazana
|
||||
DocType: Pricing Rule,Item Code,Šifra artikla
|
||||
DocType: Purchase Order,Customer Mobile No,Broj telefona kupca
|
||||
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +110,Move Item,Premještanje artikala
|
||||
DocType: Buying Settings,Buying Settings,Podešavanja nabavke
|
||||
DocType: Vehicle,Fleet Manager,Menadžer transporta
|
||||
DocType: Driver,Fleet Manager,Menadžer transporta
|
||||
apps/erpnext/erpnext/stock/doctype/batch/batch.js +43,Stock Levels,Nivoi zalihe
|
||||
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +246,Closing (Cr),Saldo (Po)
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +566,Product Bundle,Sastavnica
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +770,Sync Master Data,Sinhronizuj podatke iz centrale
|
||||
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +253,Closing (Cr),Saldo (Po)
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +591,Product Bundle,Sastavnica
|
||||
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py +19,Sales and Returns,Prodaja i povraćaji
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +785,Sync Master Data,Sinhronizuj podatke iz centrale
|
||||
DocType: Landed Cost Voucher,Purchase Receipts,Prijemi robe
|
||||
apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Prilagođavanje formi
|
||||
DocType: Purchase Invoice,Overdue,Istekao
|
||||
DocType: Purchase Invoice,Posting Time,Vrijeme izrade računa
|
||||
DocType: Stock Entry,Purchase Receipt No,Broj prijema robe
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +74, to ,do
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +76, to ,do
|
||||
DocType: Supplier,Credit Limit,Kreditni limit
|
||||
DocType: Item,Item Tax,Porez
|
||||
DocType: Pricing Rule,Selling,Prodaja
|
||||
DocType: Purchase Order,Customer Contact,Kontakt kupca
|
||||
apps/erpnext/erpnext/accounts/doctype/asset/asset.py +39,Item {0} does not exist,Artikal {0} ne postoji
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +226,Add Users,Dodaj korisnike
|
||||
apps/erpnext/erpnext/stock/doctype/item/item.py +521,Item {0} does not exist,Artikal {0} ne postoji
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +244,Add Users,Dodaj korisnike
|
||||
,Completed Production Orders,Završena proizvodna porudžbina
|
||||
apps/erpnext/erpnext/public/js/utils/serial_no_batch_selector.js +78,Select Serial Numbers,Izaberite serijske brojeve
|
||||
apps/erpnext/erpnext/public/js/utils/serial_no_batch_selector.js +79,Select Serial Numbers,Izaberite serijske brojeve
|
||||
DocType: Bank Reconciliation Detail,Payment Entry,Uplate
|
||||
DocType: Purchase Invoice,In Words,Riječima
|
||||
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py +59,Serial No {0} does not belong to Delivery Note {1},Serijski broj {0} ne pripada otpremnici {1}
|
||||
DocType: Issue,Support,Podrška
|
||||
apps/erpnext/erpnext/config/stock.py +184,Default settings for stock transactions.,Podrazumijevana podešavanja za dio Promjene na zalihama
|
||||
DocType: Production Planning Tool,Get Sales Orders,Pregledaj prodajne naloge
|
||||
DocType: Stock Ledger Entry,Stock Ledger Entry,Unos zalihe robe
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1569,Address Name,Naziv adrese
|
||||
DocType: Purchase Invoice Item,Price List Rate (Company Currency),Cijena (Valuta preduzeća)
|
||||
DocType: Delivery Stop,Address Name,Naziv adrese
|
||||
DocType: Item Group,Item Group Name,Naziv vrste artikala
|
||||
apps/erpnext/erpnext/selling/doctype/customer/customer.py +118,A Customer Group exists with same name please change the Customer name or rename the Customer Group,Isto ime grupe kupca već postoji. Promijenite ime kupca ili izmijenite grupu kupca
|
||||
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +542,Warning: Another {0} # {1} exists against stock entry {2},Upozorenje: Još jedan {0} # {1} postoji u vezanom Unosu zaliha {2}
|
||||
apps/erpnext/erpnext/selling/doctype/customer/customer.py +146,A Customer Group exists with same name please change the Customer name or rename the Customer Group,Isto ime grupe kupca već postoji. Promijenite ime kupca ili izmijenite grupu kupca
|
||||
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +540,Warning: Another {0} # {1} exists against stock entry {2},Upozorenje: Još jedan {0} # {1} postoji u vezanom Unosu zaliha {2}
|
||||
DocType: Item,Has Serial No,Ima serijski broj
|
||||
DocType: Payment Entry,Difference Amount (Company Currency),Razlika u iznosu (Valuta)
|
||||
apps/erpnext/erpnext/public/js/utils.js +49,Add Serial No,Dodaj serijski broj
|
||||
@ -415,6 +456,7 @@ DocType: Employee,Current Address Is,Trenutna adresa je
|
||||
DocType: Payment Entry,Unallocated Amount,Nepovezani iznos
|
||||
apps/erpnext/erpnext/accounts/report/profitability_analysis/profitability_analysis.js +57,Show zero values,Prikaži vrijednosti sa nulom
|
||||
DocType: Purchase Invoice,Address and Contact,Adresa i kontakt
|
||||
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +10,Appointments and Consultations,Zakazivanja i pregledi
|
||||
,Supplier-Wise Sales Analytics,Analiza Dobavljačeve pametne prodaje
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +290,Payment Entry is already created,Uplata je već kreirana
|
||||
DocType: Purchase Invoice Item,Item,Artikal
|
||||
@ -423,23 +465,27 @@ DocType: Project User,Project User,Projektni user
|
||||
DocType: Item,Customer Items,Proizvodi kupca
|
||||
DocType: Stock Reconciliation,SR/,SR /
|
||||
apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +97,Sales Order required for Item {0},Prodajni nalog je obavezan za artikal {0}
|
||||
DocType: Consultation,Patient,Pacijent
|
||||
DocType: Stock Entry,Default Target Warehouse,Prijemno skladište
|
||||
DocType: GL Entry,Voucher No,Br. dokumenta
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +315,Serial No {0} created,Serijski broj {0} kreiran
|
||||
DocType: Account,Asset,Osnovna sredstva
|
||||
DocType: Payment Entry,Received Amount,Iznos uplate
|
||||
,Sales Funnel,Prodajni lijevak
|
||||
DocType: Sales Invoice,Payment Due Date,Datum dospijeća fakture
|
||||
DocType: Consultation,Consultation,Pregled
|
||||
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py +18,Related,Povezan
|
||||
DocType: Warehouse,Warehouse Name,Naziv skladišta
|
||||
DocType: Authorization Rule,Customer / Item Name,Kupac / Naziv proizvoda
|
||||
DocType: Student,Home Address,Kućna adresa
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +941,Supplier Quotation,Ponuda dobavljača
|
||||
DocType: Stock Entry,Update Rate and Availability,Izmijenite cijenu i dostupnost
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +966,Supplier Quotation,Ponuda dobavljača
|
||||
DocType: Material Request Item,Quantity and Warehouse,Količina i skladište
|
||||
DocType: Purchase Invoice,Taxes and Charges Added,Porezi i naknade dodate
|
||||
DocType: Production Order,Warehouses,Skladišta
|
||||
DocType: SMS Center,All Customer Contact,Svi kontakti kupca
|
||||
apps/erpnext/erpnext/accounts/doctype/account/account.js +73,Ledger,Glavna knjiga
|
||||
apps/erpnext/erpnext/accounts/doctype/account/account.js +79,Ledger,Glavna knjiga
|
||||
DocType: Quotation,Quotation Lost Reason,Razlog gubitka ponude
|
||||
DocType: Purchase Invoice,Return Against Purchase Invoice,Povraćaj u vezi sa Fakturom nabavke
|
||||
DocType: Account,Stock,Zalihe
|
||||
DocType: Customer Group,Customer Group Name,Naziv grupe kupca
|
||||
DocType: Item,Is Sales Item,Da li je prodajni artikal
|
||||
@ -456,15 +502,16 @@ DocType: Naming Series,Setup Series,Podešavanje tipa dokumenta
|
||||
DocType: Landed Cost Item,Purchase Receipt Item,Stavka Prijema robe
|
||||
DocType: Salary Slip,Payment Days,Dana za plaćanje
|
||||
apps/erpnext/erpnext/config/selling.py +163,Terms and Conditions Template,Uslovi i odredbe šablon
|
||||
apps/erpnext/erpnext/stock/doctype/batch/batch.js +90,Stock Entry {0} created,Unos zaliha {0} je kreiran
|
||||
apps/erpnext/erpnext/stock/doctype/batch/batch.js +97,Stock Entry {0} created,Unos zaliha {0} je kreiran
|
||||
apps/erpnext/erpnext/templates/generators/item.html +67,View in Cart,Pogledajte u korpi
|
||||
apps/erpnext/erpnext/stock/get_item_details.py +302,Item Price updated for {0} in Price List {1},Cijena artikla je izmijenjena {0} u cjenovniku {1}
|
||||
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +480,Discount,Popust
|
||||
apps/erpnext/erpnext/stock/get_item_details.py +345,Item Price updated for {0} in Price List {1},Cijena artikla je izmijenjena {0} u cjenovniku {1}
|
||||
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +537,Discount,Popust
|
||||
DocType: Packing Slip,Net Weight UOM,Neto težina JM
|
||||
DocType: Selling Settings,Sales Order Required,Prodajni nalog je obavezan
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1068,Search Item,Pretraži artikal
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1083,Search Item,Pretraži artikal
|
||||
,Delivered Items To Be Billed,Nefakturisana isporučena roba
|
||||
DocType: Account,Debit,Duguje
|
||||
DocType: Patient Appointment,Date TIme,Datum i vrijeme
|
||||
DocType: Bank Reconciliation Detail,Payment Document,Dokument za plaćanje
|
||||
DocType: Purchase Invoice,In Words (Company Currency),Riječima (valuta kompanije)
|
||||
,Purchase Receipt Trends,Trendovi prijema robe
|
||||
@ -472,43 +519,49 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +25,Fiscal Y
|
||||
DocType: Purchase Invoice Item,Accepted Warehouse,Prihvaćeno skladište
|
||||
DocType: Account,Income Account,Račun prihoda
|
||||
DocType: Journal Entry Account,Account Balance,Knjigovodstveno stanje
|
||||
apps/erpnext/erpnext/stock/doctype/batch/batch.js +75,To Warehouse,U skladište
|
||||
apps/erpnext/erpnext/stock/doctype/batch/batch.js +76,To Warehouse,U skladište
|
||||
DocType: Purchase Invoice,Contact Person,Kontakt osoba
|
||||
DocType: Item,Item Code for Suppliers,Dobavljačeva šifra
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +787,Return / Debit Note,Povraćaj / knjižno zaduženje
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Povraćaj / knjižno zaduženje
|
||||
DocType: Request for Quotation Supplier,Request for Quotation Supplier,Zahtjev za ponudu dobavljača
|
||||
apps/erpnext/erpnext/config/accounts.py +142,Banking and Payments,Bakarstvo i plaćanja
|
||||
DocType: Lab Test Groups,Lab Test Groups,Labaratorijske grupe
|
||||
apps/erpnext/erpnext/config/accounts.py +134,Banking and Payments,Bakarstvo i plaćanja
|
||||
apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +31,Active Leads / Customers,Активни Леадс / Kupci
|
||||
DocType: POS Profile,Accounting,Računovodstvo
|
||||
DocType: Item,Manufacture,Proizvodnja
|
||||
apps/erpnext/erpnext/templates/pages/projects.html +27,New task,Novi zadatak
|
||||
DocType: Journal Entry,Accounts Payable,Obaveze prema dobavljačima
|
||||
DocType: Purchase Invoice,Shipping Address,Adresa isporuke
|
||||
DocType: Payment Reconciliation Invoice,Outstanding Amount,Preostalo za uplatu
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +160,Warehouse required at Row No {0},Skladište je potrebno unijeti na poziciji {0}
|
||||
DocType: Opening Invoice Creation Tool Item,Outstanding Amount,Preostalo za uplatu
|
||||
DocType: Physician,Physician Schedule,Raspored ljekara
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +163,Warehouse required at Row No {0},Skladište je potrebno unijeti na poziciji {0}
|
||||
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse_tree.js +15,New Warehouse Name,Naziv novog skladišta
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +367,Transaction reference no {0} dated {1},Broj izvoda {0} na datum {1}
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +368,Transaction reference no {0} dated {1},Broj izvoda {0} na datum {1}
|
||||
apps/erpnext/erpnext/utilities/activation.py +83,Make Sales Order,Kreiraj prodajni nalog
|
||||
DocType: Purchase Invoice,Items,Artikli
|
||||
DocType: Payment Entry,Allocate Payment Amount,Poveži uplaćeni iznos
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +86,Printed On,Datum i vrijeme štampe
|
||||
DocType: Patient,Patient ID,ID pacijenta
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +97,Printed On,Datum i vrijeme štampe
|
||||
DocType: Sales Invoice,Debit To,Zaduženje za
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Minimum jedno skladište je obavezno
|
||||
apps/erpnext/erpnext/config/setup.py +14,Global Settings,Globalna podešavanja
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +143,Atleast one warehouse is mandatory,Minimum jedno skladište je obavezno
|
||||
DocType: Price List,Price List Name,Naziv cjenovnika
|
||||
DocType: Item,Purchase Details,Detalji kupovine
|
||||
DocType: Asset,Journal Entry for Scrap,Knjiženje rastura i loma
|
||||
DocType: Item,Website Warehouse,Skladište web sajta
|
||||
DocType: Sales Invoice Item,Customer's Item Code,Šifra kupca
|
||||
DocType: Asset,Supplier,Dobavljači
|
||||
DocType: Pricing Rule,Supplier,Dobavljači
|
||||
DocType: Purchase Invoice,Additional Discount Amount,Iznos dodatnog popusta
|
||||
apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Datum početka projekta
|
||||
DocType: Announcement,Student,Student
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +457,Stock cannot be updated against Delivery Note {0},Zaliha se ne može promijeniti jer je vezana sa otpremnicom {0}
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Zaliha se ne može promijeniti jer je vezana sa otpremnicom {0}
|
||||
DocType: Drug Prescription,Hour,Sat
|
||||
apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +21,Item Group Tree,Stablo vrste artikala
|
||||
DocType: POS Profile,Update Stock,Ažuriraj zalihu
|
||||
apps/erpnext/erpnext/accounts/doctype/asset/asset.js +252,Target Warehouse,Ciljno skladište
|
||||
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +33,Get from Consultation,Kreiraj iz pregleda
|
||||
DocType: Crop,Target Warehouse,Ciljno skladište
|
||||
,Delivery Note Trends,Trendovi Otpremnica
|
||||
DocType: Stock Entry,Default Source Warehouse,Izdajno skladište
|
||||
apps/erpnext/erpnext/patches/v7_0/create_warehouse_nestedset.py +59,All Warehouses,Sva skladišta
|
||||
DocType: Stock Reconciliation,Difference Amount,Razlika u iznosu
|
||||
DocType: Journal Entry,User Remark,Korisnička napomena
|
||||
@ -521,33 +574,35 @@ DocType: Payment Entry,Payment Type,Vrsta plaćanja
|
||||
DocType: Selling Settings,Default Customer Group,Podrazumijevana grupa kupaca
|
||||
DocType: GL Entry,Party,Partija
|
||||
,Total Stock Summary,Ukupan pregled zalihe
|
||||
DocType: Purchase Invoice,Net Total (Company Currency),Ukupno (Valuta preduzeća)
|
||||
DocType: Purchase Invoice,Net Total (Company Currency),Ukupno bez PDV-a (Valuta preduzeća)
|
||||
DocType: Healthcare Settings,Patient Name,Ime pacijenta
|
||||
apps/erpnext/erpnext/public/js/payment/pos_payment.html +17,Write Off,Otpisati
|
||||
DocType: Notification Control,Delivery Note Message,Poruka na otpremnici
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +158,"Cannot delete Serial No {0}, as it is used in stock transactions","Ne može se obrisati serijski broj {0}, dok god se nalazi u dijelu Promjene na zalihama"
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +578,Delivery Note {0} is not submitted,Otpremnica {0} nije potvrđena
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Otpremnica {0} nije potvrđena
|
||||
apps/erpnext/erpnext/public/js/pos/pos.html +87,Customers in Queue,Kupci na čekanju
|
||||
DocType: Purchase Invoice,Price List Currency,Valuta Cjenovnika
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +129,Project Manager,Projektni menadzer
|
||||
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +133,Project Manager,Projektni menadzer
|
||||
DocType: Journal Entry,Accounts Receivable,Potraživanja od kupaca
|
||||
DocType: Purchase Invoice Item,Rate,Cijena
|
||||
DocType: Account,Expense,Rashod
|
||||
apps/erpnext/erpnext/config/learn.py +107,Newsletters,Newsletter-i
|
||||
DocType: Purchase Invoice,Select Supplier Address,Izaberite adresu dobavljača
|
||||
apps/erpnext/erpnext/stock/get_item_details.py +317,Price List {0} is disabled or does not exist,Cjenovnik {0} je zaključan ili ne postoji
|
||||
apps/erpnext/erpnext/stock/get_item_details.py +360,Price List {0} is disabled or does not exist,Cjenovnik {0} je zaključan ili ne postoji
|
||||
DocType: Delivery Note,Billing Address Name,Naziv adrese za naplatu
|
||||
DocType: Restaurant Order Entry,Add Item,Dodaj stavku
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +139,All Customer Groups,Sve grupe kupca
|
||||
DocType: Item,Weight UOM,JM Težina
|
||||
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +143,All Customer Groups,Sve grupe kupca
|
||||
DocType: Purchase Invoice Item,Weight UOM,JM Težina
|
||||
DocType: Purchase Invoice Item,Stock Qty,Zaliha
|
||||
DocType: Delivery Note,Return Against Delivery Note,Povraćaj u vezi sa otpremnicom
|
||||
apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +37,Ageing Range 1,Opseg dospijeća 1
|
||||
apps/erpnext/erpnext/public/js/pos/pos.html +104,Stock Items,Artikli na zalihama
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +2165,New Cart,Nova korpa
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +2180,New Cart,Nova korpa
|
||||
apps/erpnext/erpnext/config/selling.py +179,Analytics,Analitika
|
||||
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +237,New {0}: #{1},Novi {0}: # {1}
|
||||
DocType: Supplier,Fixed Days,Fiksni dani
|
||||
DocType: Company,Fixed Days,Fiksni dani
|
||||
DocType: Purchase Receipt Item,Rate and Amount,Cijena i vrijednost
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +65,'Total','Ukupno bez PDV-a'
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +71,'Total','Ukupno bez PDV-a'
|
||||
DocType: Purchase Invoice,Total Taxes and Charges,Porez
|
||||
DocType: Purchase Order Item,Supplier Part Number,Dobavljačeva šifra
|
||||
DocType: Project Task,Project Task,Projektni zadatak
|
||||
@ -558,46 +613,50 @@ DocType: Opportunity,Customer / Lead Address,Kupac / Adresa lead-a
|
||||
DocType: Buying Settings,Default Buying Price List,Podrazumijevani Cjenovnik
|
||||
DocType: Purchase Invoice Item,Qty,Kol
|
||||
DocType: Mode of Payment,General,Opšte
|
||||
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +1351,Write Off Amount,Otpisati iznos
|
||||
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +1438,Write Off Amount,Otpisati iznos
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Outstanding Amount,Preostalo za plaćanje
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +320,Not Paid and Not Delivered,Nije plaćeno i nije isporučeno
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +340,Not Paid and Not Delivered,Nije plaćeno i nije isporučeno
|
||||
DocType: Bank Reconciliation,Total Amount,Ukupan iznos
|
||||
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +160,Please select Price List,Izaberite cjenovnik
|
||||
DocType: Quality Inspection,Item Serial No,Seriski broj artikla
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Customer Service,Usluga kupca
|
||||
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +115,Customer Service,Usluga kupca
|
||||
DocType: Cost Center,Stock User,Korisnik zaliha
|
||||
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Glavna knjiga
|
||||
apps/erpnext/erpnext/config/projects.py +13,Project master.,Projektni master
|
||||
DocType: Pricing Rule,Valid From,Važi od
|
||||
,Purchase Order Trends,Trendovi kupovina
|
||||
DocType: Quotation,In Words will be visible once you save the Quotation.,Sačuvajte Predračun da bi Ispis slovima bio vidljiv
|
||||
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +48,Projected Qty,Projektovana količina
|
||||
apps/erpnext/erpnext/config/selling.py +229,Customer Addresses And Contacts,Kontakt i adresa kupca
|
||||
DocType: Material Request Item,For Warehouse,Za skladište
|
||||
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Nabavni cjenovnik
|
||||
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +75,Please select Physician and Date,Izaberite ljekara i datum
|
||||
apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +58,Accounts Payable Summary,Pregled obaveze prema dobavljačima
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +206,Delivery Notes {0} must be cancelled before cancelling this Sales Order,Otpremnice {0} moraju biti otkazane prije otkazivanja prodajnog naloga
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +212,Delivery Notes {0} must be cancelled before cancelling this Sales Order,Otpremnice {0} moraju biti otkazane prije otkazivanja prodajnog naloga
|
||||
DocType: Employee Loan,Total Payment,Ukupno plaćeno
|
||||
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Iznos nabavke
|
||||
apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,ID Projekta
|
||||
DocType: Journal Entry Account,Purchase Order,Porudžbenica
|
||||
DocType: GL Entry,Voucher Type,Vrsta dokumenta
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +217,Serial No {0} has already been received,Serijski broj {0} je već primljen
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +476,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Ukupan avns({0}) na porudžbini {1} ne može biti veći od Ukupnog iznosa ({2})
|
||||
apps/erpnext/erpnext/stock/get_item_details.py +319,Price List not selected,Cjenovnik nije odabran
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +520,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Ukupan avns({0}) na porudžbini {1} ne može biti veći od Ukupnog iznosa ({2})
|
||||
apps/erpnext/erpnext/stock/get_item_details.py +362,Price List not selected,Cjenovnik nije odabran
|
||||
DocType: POS Profile,Apply Discount On,Primijeni popust na
|
||||
DocType: Item,Total Projected Qty,Ukupna projektovana količina
|
||||
DocType: Shipping Rule Condition,Shipping Rule Condition,Uslovi pravila nabavke
|
||||
,Customer Credit Balance,Kreditni limit kupca
|
||||
DocType: C-Form Invoice Detail,Net Total,Ukupno
|
||||
DocType: C-Form Invoice Detail,Net Total,Ukupno bez PDV-a
|
||||
DocType: Purchase Invoice,Return,Povraćaj
|
||||
DocType: Sales Order Item,Delivery Warehouse,Skladište dostave
|
||||
DocType: Purchase Invoice,Total (Company Currency),Ukupno bez PDV-a (Valuta)
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +999,Opportunity,Prilika
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +1024,Opportunity,Prilika
|
||||
DocType: Sales Order,Fully Delivered,Kompletno isporučeno
|
||||
DocType: Customer,Default Price List,Podrazumijevani cjenovnik
|
||||
DocType: Depreciation Schedule,Journal Entry,Knjiženje
|
||||
DocType: Journal Entry,Journal Entry,Knjiženje
|
||||
DocType: Purchase Invoice,Apply Additional Discount On,Primijeni dodatni popust na
|
||||
apps/erpnext/erpnext/buying/doctype/supplier/supplier_dashboard.py +6,This is based on transactions against this Supplier. See timeline below for details,Ovo je zasnovano na transkcijama ovog dobavljača. Pogledajte vremensku liniju ispod za dodatne informacije
|
||||
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,Iznad 90 dana
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +873,Serial Numbers in row {0} does not match with Delivery Note,Serijski broj na poziciji {0} se ne poklapa sa otpremnicom
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Serijski broj na poziciji {0} se ne poklapa sa otpremnicom
|
||||
apps/erpnext/erpnext/public/js/templates/contact_list.html +37,New Contact,Novi kontakt
|
||||
DocType: Production Planning Tool,Create Production Orders,Kreiraj porudžbinu za proizvodnju
|
||||
DocType: Purchase Invoice,Returns,Povraćaj
|
||||
@ -609,23 +668,25 @@ apps/erpnext/erpnext/public/js/pos/pos.html +78,Del,Obriši
|
||||
apps/erpnext/erpnext/public/js/stock_analytics.js +61,Select Warehouse...,Izaberite skladište...
|
||||
DocType: Payment Reconciliation,Invoice/Journal Entry Details,Faktura / Detalji knjiženja
|
||||
,Projected Quantity as Source,Projektovana izvorna količina
|
||||
DocType: BOM,Manufacturing User,Korisnik u proizvodnji
|
||||
DocType: Asset Maintenance,Manufacturing User,Korisnik u proizvodnji
|
||||
apps/erpnext/erpnext/utilities/activation.py +99,Create Users,Kreiraj korisnike
|
||||
DocType: Pricing Rule,Price,Cijena
|
||||
DocType: Supplier Scorecard Scoring Standing,Employee,Zaposleni
|
||||
apps/erpnext/erpnext/config/projects.py +19,Project activity / task.,Projektna aktivnost / zadatak
|
||||
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Rezervisano skladište u Prodajnom nalogu / Skladište gotovog proizvoda
|
||||
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +670,Quantity,Količina
|
||||
DocType: Appointment Type,Physician,Ljekar
|
||||
DocType: Opening Invoice Creation Tool Item,Quantity,Količina
|
||||
DocType: Buying Settings,Purchase Receipt Required,Prijem robe je obavezan
|
||||
apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +37,Currency is required for Price List {0},Valuta je obavezna za Cjenovnik {0}
|
||||
DocType: POS Customer Group,Customer Group,Grupa kupaca
|
||||
DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Skladište se jedino može promijeniti u dijelu Unos zaliha / Otpremnica / Prijem robe
|
||||
apps/erpnext/erpnext/hooks.py +132,Request for Quotations,Zahtjev za ponude
|
||||
apps/erpnext/erpnext/config/desktop.py +159,Learn,Naučite
|
||||
apps/erpnext/erpnext/hooks.py +136,Request for Quotations,Zahtjev za ponude
|
||||
apps/erpnext/erpnext/config/desktop.py +167,Learn,Naučite
|
||||
DocType: POS Profile,Ignore Pricing Rule,Zanemari pravilnik o cijenama
|
||||
DocType: Purchase Invoice,Additional Discount,Dodatni popust
|
||||
DocType: Payment Entry,Cheque/Reference No,Broj izvoda
|
||||
DocType: C-Form,Series,Vrsta dokumenta
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +125,Box,Kutija
|
||||
apps/erpnext/erpnext/utilities/user_progress.py +143,Box,Kutija
|
||||
DocType: Payment Entry,Total Allocated Amount,Ukupno povezani iznos
|
||||
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Sve adrese
|
||||
apps/erpnext/erpnext/config/setup.py +66,Users and Permissions,Korisnici i dozvole
|
||||
@ -636,65 +697,74 @@ DocType: Item,Maintain Stock,Vođenje zalihe
|
||||
DocType: Sales Invoice Item,Sales Order Item,Pozicija prodajnog naloga
|
||||
apps/erpnext/erpnext/public/js/utils.js +100,Annual Billing: {0},Godišnji promet: {0}
|
||||
apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +18,Reserved Qty,Rezervisana kol.
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1727,Not items found,Ništa nije pronađeno
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1742,Not items found,Ništa nije pronađeno
|
||||
DocType: Item,Copy From Item Group,Kopiraj iz vrste artikala
|
||||
DocType: Purchase Taxes and Charges,On Net Total,Na Neto vrijednost
|
||||
apps/erpnext/erpnext/public/js/utils.js +263,Please select Quotations,Molimo odaberite Predračune
|
||||
DocType: Purchase Taxes and Charges,On Net Total,Na ukupno bez PDV-a
|
||||
apps/erpnext/erpnext/accounts/utils.py +73,{0} {1} not in any active Fiscal Year.,{0} {1} se ne nalazi u aktivnim poslovnim godinama.
|
||||
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +484,Quick Journal Entry,Brzo knjiženje
|
||||
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Brzo knjiženje
|
||||
DocType: Sales Order,Partly Delivered,Djelimično isporučeno
|
||||
DocType: Purchase Invoice Item,Quality Inspection,Provjera kvaliteta
|
||||
apps/erpnext/erpnext/config/accounts.py +113,Accounting Statements,Računovodstveni iskazi
|
||||
apps/erpnext/erpnext/stock/get_item_details.py +306,Item Price added for {0} in Price List {1},Cijena je dodata na artiklu {0} iz cjenovnika {1}
|
||||
apps/erpnext/erpnext/config/accounts.py +105,Accounting Statements,Računovodstveni iskazi
|
||||
apps/erpnext/erpnext/stock/get_item_details.py +349,Item Price added for {0} in Price List {1},Cijena je dodata na artiklu {0} iz cjenovnika {1}
|
||||
DocType: Project Type,Projects Manager,Projektni menadžer
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +97,Quotation {0} not of type {1},Ponuda {0} ne propada {1}
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +98,Quotation {0} not of type {1},Ponuda {0} ne propada {1}
|
||||
apps/erpnext/erpnext/config/selling.py +57,All Products or Services.,Svi proizvodi ili usluge.
|
||||
DocType: Sales Invoice,Rounded Total,Zaokruženi ukupan iznos
|
||||
DocType: Purchase Invoice,Rounded Total,Zaokruženi ukupan iznos
|
||||
DocType: Request for Quotation Supplier,Download PDF,Preuzmi PDF
|
||||
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation.js +764,Quotation,Ponuda
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotation,Ponuda
|
||||
DocType: Lead,Mobile No.,Mobilni br.
|
||||
DocType: Item,Has Variants,Ima varijante
|
||||
DocType: Price List Country,Price List Country,Zemlja cjenovnika
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +113,Due Date is mandatory,Datum dospijeća je obavezan
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +135,Due Date is mandatory,Datum dospijeća je obavezan
|
||||
apps/erpnext/erpnext/templates/includes/navbar/navbar_items.html +7,Cart,Korpa
|
||||
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +94,Stock transactions before {0} are frozen,Promjene na zalihama prije {0} su zamrznute
|
||||
apps/erpnext/erpnext/selling/doctype/customer/customer.py +164,Credit limit has been crossed for customer {0} {1}/{2},Kupac {0} je prekoračio kreditni limit {1} / {2}
|
||||
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +239,Closing (Dr),Saldo (Du)
|
||||
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Kupac {0} je prekoračio kreditni limit {1} / {2}
|
||||
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +246,Closing (Dr),Saldo (Du)
|
||||
DocType: Sales Invoice,Product Bundle Help,Sastavnica Pomoć
|
||||
apps/erpnext/erpnext/accounts/report/financial_statements.py +233,Total {0} ({1}),Ukupno bez PDV-a {0} ({1})
|
||||
DocType: Sales Partner,Address & Contacts,Adresa i kontakti
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +280, or ,ili
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +303, or ,ili
|
||||
apps/erpnext/erpnext/config/buying.py +18,Request for quotation.,Zahtjev za ponudu
|
||||
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standardna prodaja
|
||||
DocType: Expense Claim,Expense Approver,Odobravatalj troškova
|
||||
DocType: Employee Advance,Expense Approver,Odobravatalj troškova
|
||||
DocType: Purchase Invoice,Supplier Invoice Details,Detalji sa fakture dobavljača
|
||||
DocType: Purchase Order,To Bill,Za fakturisanje
|
||||
DocType: Company,Chart Of Accounts Template,Templejt za kontni plan
|
||||
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Ljekar {0} nije dostupan {1}
|
||||
DocType: Payment Entry Reference,Supplier Invoice No,Broj fakture dobavljača
|
||||
apps/erpnext/erpnext/config/manufacturing.py +84,Global settings for all manufacturing processes.,Globalna podešavanja za cjelokupan proces proizvodnje.
|
||||
DocType: Stock Entry,Material Transfer for Manufacture,Пренос robe za proizvodnju
|
||||
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +14,Ref,Vezni dokument
|
||||
DocType: Account,Accounts,Računi
|
||||
apps/erpnext/erpnext/controllers/buying_controller.py +395,{0} {1} is cancelled or closed,{0} {1} je otkazan ili zatvoren
|
||||
apps/erpnext/erpnext/controllers/buying_controller.py +396,{0} {1} is cancelled or closed,{0} {1} je otkazan ili zatvoren
|
||||
DocType: Request for Quotation Item,Request for Quotation Item,Zahtjev za stavku sa ponude
|
||||
DocType: Homepage,Products,Proizvodi
|
||||
apps/erpnext/erpnext/public/js/setup_wizard.js +115,"e.g. ""Build tools for builders""","npr. ""Izrada alata za profesionalce"""
|
||||
DocType: Patient Appointment,Check availability,Provjeri dostupnost
|
||||
apps/erpnext/erpnext/public/js/setup_wizard.js +118,"e.g. ""Build tools for builders""","npr. ""Izrada alata za profesionalce"""
|
||||
apps/erpnext/erpnext/public/js/utils.js +102,Total Unpaid: {0},Ukupno neplaćeno: {0}
|
||||
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Kreiraj Fakturu
|
||||
DocType: Purchase Invoice,Is Paid,Je plaćeno
|
||||
DocType: Manufacturing Settings,Material Transferred for Manufacture,Prenešena roba za proizvodnju
|
||||
,Ordered Items To Be Billed,Nefakturisani prodajni nalozi
|
||||
apps/erpnext/erpnext/config/selling.py +216,Other Reports,Ostali izvještaji
|
||||
apps/erpnext/erpnext/config/buying.py +7,Purchasing,Kupovina
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +865,Delivery Note,Otpremnice
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Otpremnice
|
||||
DocType: Sales Order,In Words will be visible once you save the Sales Order.,U riječima će biti vidljivo tek kada sačuvate prodajni nalog.
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +446,Show Salary Slip,Прикажи одсечак плате
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +463,Show Salary Slip,Прикажи одсечак плате
|
||||
DocType: Journal Entry Account,Sales Order,Prodajni nalog
|
||||
DocType: Stock Entry,Customer or Supplier Details,Detalji kupca ili dobavljača
|
||||
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +25,Sell,Prodaja
|
||||
DocType: Email Digest,Pending Quotations,Predračuni na čekanju
|
||||
DocType: Purchase Invoice,Additional Discount Percentage,Dodatni procenat popusta
|
||||
DocType: Appraisal,HR User,Korisnik za ljudske resure
|
||||
apps/erpnext/erpnext/config/stock.py +32,Stock Reports,Izvještaji zaliha robe
|
||||
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Izvještaji zaliha robe
|
||||
DocType: Sales Invoice,Return Against Sales Invoice,Povraćaj u vezi sa Fakturom prodaje
|
||||
DocType: Buying Settings,Naming Series,Vrste dokumenta
|
||||
,Stock Ledger,Zalihe robe
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +214,Sales Invoice {0} must be cancelled before cancelling this Sales Order,Faktura {0} mora biti otkazana prije otkazivanja ovog prodajnog naloga
|
||||
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +222,Sales Invoice {0} must be cancelled before cancelling this Sales Order,Faktura {0} mora biti otkazana prije otkazivanja ovog prodajnog naloga
|
||||
DocType: Email Digest,New Quotations,Nove ponude
|
||||
apps/erpnext/erpnext/projects/doctype/project/project.js +111,Save the document first.,Prvo sačuvajte dokument
|
||||
DocType: Item,Units of Measure,Jedinica mjere
|
||||
DocType: Antibiotic,Healthcare,Klinika
|
||||
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +51,Actual qty in stock,Trenutna količina na zalihama
|
||||
DocType: Quotation Item,Actual Qty,Trenutna kol.
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user