Merge branch 'hotfix'

This commit is contained in:
Nabin Hait 2017-12-28 14:22:58 +05:30
commit 31d7433946
98 changed files with 93123 additions and 72057 deletions

View File

@ -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'''

View File

@ -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

View File

@ -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

View File

@ -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}

View File

@ -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}

View File

@ -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,

View File

@ -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"));
}
});

View File

@ -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

View 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
}

View 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

View File

@ -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",

View File

@ -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."))

View File

@ -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,

View File

@ -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,

View File

@ -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'
}
}

View File

@ -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

View File

@ -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

View File

@ -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)

View File

@ -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)

View File

@ -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",

View 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"
}

View File

@ -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') """)

View 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"))

View File

@ -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:

View File

@ -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

View File

@ -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

1 apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +115 'Opening' 'Åbning'
4 DocType: Timesheet % Amount Billed % Beløb Billed
5 DocType: Purchase Order % Billed % Billed
6 Lead Id Bly Id
7 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +65 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +71 'Total' 'Total'
8 DocType: Selling Settings Selling Settings Salg af indstillinger
9 apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72 Selling Amount Selling Beløb
10 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
11 DocType: Item Default Selling Cost Center Standard Selling Cost center
12 apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64 90-Above 90-Above
13 DocType: Pricing Rule Selling Selling
14 apps/erpnext/erpnext/accounts/page/pos/pos.js +74 apps/erpnext/erpnext/accounts/page/pos/pos.js +76 to Ultima Actualización : Fecha inválida
15 DocType: Sales Order % Delivered % Leveres
16 DocType: Lead Lead Owner Bly Owner
17 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}
18 apps/erpnext/erpnext/config/selling.py +169 Tax template for selling transactions. Skat skabelon til at sælge transaktioner.
19 apps/erpnext/erpnext/controllers/accounts_controller.py +280 apps/erpnext/erpnext/controllers/accounts_controller.py +303 or o
20 DocType: Sales Order % of materials billed against this Sales Order % Af materialer faktureret mod denne Sales Order
21 DocType: SMS Center All Lead (Open) Alle Bly (Open)
22 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

View File

@ -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 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
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

View File

@ -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 DocType: Assessment Plan Grading Scale Escala de Calificación
2 apps/erpnext/erpnext/schools/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +57 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
3 apps/erpnext/erpnext/accounts/report/profitability_analysis/profitability_analysis.py +152 Gross Profit / Loss Ganancia / Pérdida Bruta
4 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
5 DocType: Assessment Group Parent Assessment Group Grupo de Evaluación Padre
6 DocType: Student Guardians Guardianes
7 DocType: Fee Schedule Fee Schedule Programa de Tarifas
8 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +659 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +684 Get Items from Product Bundle Obtener Ítems de Paquete de Productos
9 apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +904 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
10 DocType: Homepage Company Tagline for website homepage Lema de la empresa para la página de inicio del sitio web
11 DocType: Delivery Note % Installed % Instalado
12 DocType: Student Guardian Details Detalles del Guardián
13 apps/erpnext/erpnext/schools/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +55 apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +55 Guardian1 Name Nombre de Guardián 1
14 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
15 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:
16 DocType: Purchase Order Get Items from Open Material Requests Obtener Ítems de Solicitudes Abiertas de Materiales
17 Batch Item Expiry Status Estatus de Expiración de Lote de Ítems
18 DocType: Guardian Guardian Interests Intereses del Guardián
20 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
21 DocType: BOM Scrap Item Basic Amount (Company Currency) Monto Base (Divisa de Compañía)
22 DocType: Grading Scale Grading Scale Name Nombre de Escala de Calificación
23 apps/erpnext/erpnext/schools/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61 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
24 apps/erpnext/erpnext/schools/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +59 apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +59 Guardian2 Name Nombre de Guardián 2
25 DocType: Stock Entry Customer or Supplier Details Detalle de cliente o proveedor
26 DocType: Course Scheduling Tool Course Scheduling Tool Herramienta de Programación de cursos
27 DocType: Shopping Cart Settings Checkout Settings Ajustes de Finalización de Pedido
28 DocType: Guardian Interest Guardian Interest Interés del Guardián
29 apps/erpnext/erpnext/utilities/user_progress.py +209 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.
30 apps/erpnext/erpnext/templates/includes/cart/cart_dropdown.html +18 Checkout Finalizando pedido
31 DocType: Guardian Student Guardian Student Guardián del Estudiante
32 DocType: BOM Operation Base Hour Rate(Company Currency) Tarifa Base por Hora (Divisa de Compañía)

View File

@ -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

1 DocType: Purchase Receipt Other Details Otros Detalles
2 DocType: Material Request Item Lead Time Date Fecha de la Iniciativa
3 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
4 apps/erpnext/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py +39 apps/erpnext/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py +45 Outstanding Amt Saldo Pendiente
5 DocType: Payment Reconciliation Invoice DocType: Opening Invoice Creation Tool Item Outstanding Amount Saldo Pendiente
6 DocType: Payment Entry Reference Outstanding Pendiente
7 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

View File

@ -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 DocType: Timesheet Total Costing Amount Monto Total Calculado
2 DocType: Student Group Student Student Group Student Alumno de Grupo de Estudiantes
3 DocType: Delivery Note % Installed % Instalado
4 DocType: Company Gain/Loss Account on Asset Disposal Cuenta de ganancia/pérdida en la disposición de activos
5 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +468 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
6 DocType: Sales Order SO- OV-
7 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +223 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
8 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
9 Support Hour Distribution Distribución de Hora de Soporte
10 apps/erpnext/erpnext/schools/report/student_batch_wise_attendance/student_batch_wise_attendance.py +42 apps/erpnext/erpnext/education/report/student_batch_wise_attendance/student_batch_wise_attendance.py +42 Student Group Strength Fortaleza de Grupo Estudiante
11 apps/erpnext/erpnext/accounts/doctype/asset/depreciation.py +191 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}
12 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
13 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +446 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +463 Show Salary Slip Mostrar Recibo de Nómina
14 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
15 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. #### Note The tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master. #### Description of Columns 1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned). 2. Account Head: The Account ledger under which this tax will be booked 3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center. 4. Description: Description of the tax (that will be printed in invoices / quotes). 5. Rate: Tax rate. 6. Amount: Tax amount. 7. Total: Cumulative total to this point. 8. Enter Row: If based on "Previous Row Total" you can select the row number which will be taken as a base for this calculation (default is the previous row). 9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both. 10. Add or Deduct: Whether you want to add or deduct the tax. Plantilla de impuestos que puede aplicarse a todas las operaciones de compra. Esta plantilla puede contener un listado de cuentas de impuestos así como también de otras cuentas de gastos como "Envío", "Seguros", "Manejo", etc. #### Nota La tasa impositiva que se defina aquí será la tasa de gravamen predeterminada para todos los **Productos**. Si existen **Productos** con diferentes tasas, estas deben ser añadidas a la tabla de **Impuestos del Producto ** dentro del maestro del **Producto**. #### Descripción de las Columnas 1. Tipo de Cálculo: - Este puede ser **Sobre el total neto** (que es la suma de la cantidad básica). - **Sobre la línea anterior total / importe** (para impuestos o cargos acumulados). Si selecciona esta opción, el impuesto se aplica como un porcentaje de la cantidad o total de la fila anterior (de la tabla de impuestos). - **Actual** (como se haya capturado). 2. Encabezado de cuenta: La cuenta mayor sobre la que se registrara este gravamen. 3. Centro de Costo: Si el impuesto / cargo es un ingreso (como en un envío) o un gasto, debe ser registrado contra un centro de costos. 4. Descripción: Descripción del impuesto (que se imprimirán en facturas / cotizaciones). 5. Rate: Tasa de impuesto. 6. Monto: Monto de impuesto. 7. Total: Total acumulado hasta este punto. 8. Línea de referencia: Si se basa en "Línea anterior al total" se puede seleccionar el número de la fila que será tomado como base para este cálculo (por defecto es la fila anterior). 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.
16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73

View File

@ -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

1 DocType: Tax Rule Tax Rule Regla Fiscal
2 DocType: POS Profile Account for Change Amount Cuenta para el Cambio de Monto
3 apps/erpnext/erpnext/config/learn.py +217 Bill of Materials Lista de Materiales
4 apps/erpnext/erpnext/controllers/accounts_controller.py +562 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
5 DocType: Sales Invoice DocType: Purchase Invoice Tax ID RUC
6 DocType: BOM Item Basic Rate (Company Currency) Taza Base (Divisa de la Empresa)
7 DocType: Timesheet Detail Bill Factura
8 DocType: Activity Cost Billing Rate Monto de Facturación
11 DocType: Tax Rule Billing County Municipio de Facturación
12 DocType: Sales Invoice Timesheet Billing Hours Horas de Facturación
13 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
14 DocType: Tax Rule Billing State Región de Facturación
15 DocType: Purchase Order Item Billed Amt Monto Facturado
16 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

View File

@ -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.

1 apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +115 'Opening' 'Početno stanje'
2 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42 Avg Daily Outgoing Prosjek dnevne isporuke
3 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +36 Make Payment Entry Kreirajte uplatu
4 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}
5 DocType: Item Is Purchase Item Artikal je za poručivanje
6 apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +74 Warehouse {0} does not exist Skladište {0} ne postoji
7 apps/erpnext/erpnext/config/selling.py +18 Confirmed orders from Customers. Potvrđene porudžbine od strane kupaca
8 apps/erpnext/erpnext/public/js/setup_wizard.js +31 Healthcare (beta) Klinika (beta)
9 DocType: Salary Slip Salary Structure Структура плата
10 apps/erpnext/erpnext/public/js/conf.js +32 Report an Issue Prijavi grešku
11 DocType: Salary Slip Net Pay Neto plaćanje
12 DocType: Purchase Invoice Item Item Tax Rate Poreska stopa
13 apps/erpnext/erpnext/accounts/page/pos/pos.js +1508 apps/erpnext/erpnext/accounts/page/pos/pos.js +1523 Create a new Customer Kreirajte novog kupca
14 DocType: Item Variant Attribute Attribute Atribut
15 DocType: POS Profile POS Profile POS profil
16 DocType: Purchase Invoice Currency and Price List Valuta i cjenovnik
21 DocType: Lead Address Desc Opis adrese
22 DocType: Mode of Payment Mode of Payment Način plaćanja
23 apps/erpnext/erpnext/templates/pages/cart.html +5 My Cart Moja korpa
24 DocType: Consultation Doctor Doktor
25 DocType: Payment Entry Payment From / To Plaćanje od / za
26 DocType: Purchase Invoice Grand Total (Company Currency) Za plaćanje (Valuta preduzeća)
27 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +236 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253 Insufficient Stock Nedovoljna količina
28 DocType: Sales Invoice DocType: Purchase Invoice Shipping Rule Pravila nabavke
29 apps/erpnext/erpnext/accounts/report/profitability_analysis/profitability_analysis.py +152 Gross Profit / Loss Bruto dobit / gubitak
30 apps/erpnext/erpnext/public/js/pos/pos.html +20 Tap items to add them here Pritisnite na artikal da bi ga dodali ovdje
31 Sales Order Trends Trendovi prodajnih naloga
32 DocType: Sales Invoice Offline POS Name POS naziv u režimu van mreže (offline)
33 DocType: Request for Quotation Item Project Name Naziv Projekta
34 DocType: Supplier DocType: Company Last Day of the Next Month Posljednji dan u narednom mjesecu
35 DocType: Item Material Transfer Prenos robe
36 DocType: Bank Guarantee Project Projekti
37 apps/erpnext/erpnext/utilities/activation.py +74 Make Quotation Napravi predračun
38 DocType: Bank Guarantee Customer Kupci Kupac
39 DocType: Purchase Order Item Supplier Quotation Item Stavka na dobavljačevoj ponudi
40 DocType: Item Group General Settings Opšta podešavanja
41 apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +27 Ageing Based On Staros bazirana na
42 apps/erpnext/erpnext/utilities/user_progress.py +126 apps/erpnext/erpnext/utilities/user_progress.py +144 Gram Gram
43 DocType: Asset DocType: Journal Entry Account Purchase Invoice Faktura nabavke
44 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +189 DocType: Period Closing Voucher Closing (Opening + Totals) Closing Fiscal Year Saldo (Početno stanje + Ukupno) Zatvaranje fiskalne godine
45 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +100 Group by Voucher Grupiši po knjiženjima
46 DocType: Item Customer Code Šifra kupca
47 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
48 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42 Total Outgoing Ukupno isporučeno
49 DocType: Consultation Consultation Time Vrijeme pregleda
50 Sales Register Pregled Prodaje
51 DocType: Sales Order % Delivered % Isporučeno
52 DocType: Journal Entry Account Party Balance Stanje kupca
53 apps/erpnext/erpnext/config/selling.py +23 Customers Kupci
54 apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +175 Set as Lost Obilježi kao izgubljenu
55 DocType: Production Order Production Order Proizvodne porudžbine
56 apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +29 Buy Kupovina
57 apps/erpnext/erpnext/accounts/party.py +372 apps/erpnext/erpnext/accounts/party.py +384 {0} {1} is not active {0} {1} nije aktivan
58 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +762 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +809 Return / Credit Note Povraćaj / knjižno odobrenje
59 apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +815 apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +840 Get Items from BOM Dodaj stavke iz БОМ
60 apps/erpnext/erpnext/accounts/page/pos/pos.js +2005 apps/erpnext/erpnext/accounts/page/pos/pos.js +2020 Please select customer Odaberite kupca
61 apps/erpnext/erpnext/public/js/templates/address_list.html +22 New Address Nova adresa
62 Stock Summary Pregled zalihe
63 DocType: Stock Entry Detail Additional Cost Dodatni trošak
67 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
68 apps/erpnext/erpnext/buying/utils.py +80 {0} {1} status is {2} {0} {1} status je {2}
69 DocType: BOM Item Image (if not slideshow) Slika artikla (ako nije prezentacija)
70 apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment_dashboard.py +11 Consultations Pregledi
71 DocType: Territory Classification of Customers by region Klasifikacija kupaca po regiji
72 DocType: Quotation Quotation To Ponuda za
73 DocType: Journal Entry Remark Napomena
74 apps/erpnext/erpnext/healthcare/doctype/physician/physician.py +65 User {0} is already assigned to Physician {1} Korisnik {0} je već dodijeljen ljekaru {1}
75 apps/erpnext/erpnext/config/selling.py +75 Tree of Item Groups. Stablo Vrste artikala
76 apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +32 Customer Group / Customer Grupa kupaca / kupci
77 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js +71 Accounts Receivable Summary Pregled potraživanja od kupaca
81 apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +70 Open Projects Otvoreni projekti
82 DocType: POS Profile Price List Cjenovnik
83 DocType: Activity Cost Projects Projekti
84 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +641 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
85 DocType: Production Planning Tool Sales Orders Prodajni nalozi
86 DocType: Item Manufacturer Part Number Proizvođačka šifra
87 apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71 Avg. Buying Rate Prosječna vrijednost nabavke
88 DocType: Sales Order Item Gross Profit Bruto dobit
89 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106 Group by Account Grupiši po računu.
90 DocType: Asset DocType: Opening Invoice Creation Tool Item Item Name Naziv artikla
91 DocType: Item Will also apply for variants Biće primijenjena i na varijante
92 DocType: Purchase Invoice Total Advance Ukupno Avans
93 apps/erpnext/erpnext/config/selling.py +316 Sales Order to Payment Prodajni nalog za plaćanje
94 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
95 Sales Analytics Prodajna analitika
96 DocType: Patient Appointment Patient Age Starost pacijenta
97 DocType: Sales Invoice Customer Address Adresa kupca
98 apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.py +68 Total (Credit) Ukupno bez PDV-a (duguje)
99 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
100 DocType: Opportunity Opportunity Date Datum prilike
101 DocType: Sales Invoice Item Delivery Note Item Pozicija otpremnice
102 DocType: Sales Order Customer's Purchase Order Porudžbenica kupca
103 DocType: Employee Loan apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593 Totals Get items from Ukupno Dodaj stavke iz
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +568 Get items from Dodaj stavke iz
104 DocType: C-Form Total Invoiced Amount Ukupno fakturisano
105 DocType: Purchase Invoice Supplier Invoice Date Datum fakture dobavljača
106 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +160 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
107 DocType: Lab Test Lab Test Lab test
108 apps/erpnext/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py +29 -Above - Iznad
109 apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +208 apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +209 {0} {1} is cancelled or stopped {0} {1} je otkazan ili stopiran
110 DocType: Purchase Invoice Taxes and Charges Added (Company Currency) Porezi i naknade dodate (valuta preduzeća)
111 apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +67 apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +64 Offline Van mreže (offline)
112 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +380 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378 Note: {0} Bilješka: {0}
113 DocType: Lead Lost Quotation Izgubljen Predračun
114 DocType: Account Account Račun
115 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
116 DocType: Employee Leave Approver Leave Approver Odobrava izlaske s posla
117 DocType: Authorization Rule Customer or Item Kupac ili proizvod
118 apps/erpnext/erpnext/stock/get_item_details.py +135 apps/erpnext/erpnext/stock/get_item_details.py +129 No Item with Serial No {0} Ne postoji artikal sa serijskim brojem {0}
119 DocType: POS Profile Taxes and Charges Porezi i naknade
120 DocType: Item Serial Number Series Serijski broj serije
121 DocType: Purchase Order Delivered Isporučeno
124 DocType: Sales Invoice Item Customer Warehouse (Optional) Skladište kupca (opciono)
125 DocType: Delivery Note Item From Warehouse Iz skladišta
126 apps/erpnext/erpnext/templates/pages/projects.html +31 Show closed Prikaži zatvorene
127 apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.py +107 Physician not available on {0} Ljekar nije dostupan u {0}
128 DocType: Customer Additional information regarding the customer. Dodatne informacije o kupcu
129 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +452 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}
130 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +182 Payment Entry already exists Uplata već postoji
131 DocType: Project Customer Details Korisnički detalji
132 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.
133 apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +73 apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +70 Online Na mreži
134 apps/erpnext/erpnext/config/selling.py +311 Customer and Supplier Kupac i dobavljač
135 DocType: Project % Completed Završeno %
136 DocType: Journal Entry Account Sales Invoice Faktura prodaje
137 DocType: Journal Entry Accounting Entries Računovodstveni unosi
138 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.
139 DocType: Sales Order DocType: Antibiotic Track this Sales Order against any Project Healthcare Administrator Prati ovaj prodajni nalog na bilo kom projektu Administrator klinike
140 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +491 DocType: Sales Order [Error] Track this Sales Order against any Project [Greška] Prati ovaj prodajni nalog na bilo kom projektu
141 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +515 [Error] [Greška]
142 DocType: Supplier Supplier Details Detalji o dobavljaču
143 apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +26 Community Forum Forum zajednice
144 Batch Item Expiry Status Pregled artikala sa rokom trajanja
145 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +782 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +808 Payment Plaćanje
146 DocType: C-Form Invoice Detail Territory Sales Partners Commission Teritorija Provizija za prodajne partnere
147 apps/erpnext/erpnext/stock/doctype/item_price/item_price.py +27 DocType: C-Form Invoice Detail Price List {0} is disabled Territory Cjenovnik {0} je zaključan Teritorija
148 apps/erpnext/erpnext/stock/doctype/item_price/item_price.py +27 Price List {0} is disabled Cjenovnik {0} je zaključan
149 DocType: Notification Control Sales Order Message Poruka prodajnog naloga
150 DocType: Email Digest Pending Sales Orders Prodajni nalozi na čekanju
151 apps/erpnext/erpnext/utilities/user_progress.py +126 apps/erpnext/erpnext/utilities/user_progress.py +144 Minute Minut
152 apps/erpnext/erpnext/utilities/user_progress.py +126 apps/erpnext/erpnext/utilities/user_progress.py +144 Litre Litar
153 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +218 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +225 Opening (Cr) Početno stanje (Po)
154 DocType: Interest DocType: Academic Term Academics User Akademski korisnik
155 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.html +1 DocType: Student Statement of Account Blood Group Izjava o računu Krvna grupa
156 DocType: Delivery Note apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.html +1 Billing Address Statement of Account Adresa za naplatu Izjava o računu
157 DocType: Delivery Note Billing Address Adresa za naplatu
158 apps/erpnext/erpnext/accounts/doctype/sales_invoice/pos.py +392 All Territories Sve države
159 DocType: Payment Entry Received Amount (Company Currency) Iznos uplate (Valuta preduzeća)
160 DocType: Lab Test Template Standard Selling Rate Standarna prodajna cijena
161 apps/erpnext/erpnext/config/setup.py +122 Human Resources Ljudski resursi
162 apps/erpnext/erpnext/public/js/conf.js +28 DocType: Healthcare Settings User Forum Consultations in valid days Korisnički portal Pregledi u važećim danima
163 DocType: Purchase Order Item Supplied apps/erpnext/erpnext/public/js/conf.js +28 Stock UOM User Forum JM zalihe Korisnički portal
164 DocType: Purchase Order Item Supplied Stock UOM JM zalihe
165 apps/erpnext/erpnext/accounts/page/pos/pos.js +1359 DocType: Fee Validity Select or add new customer Valid Till Izaberite ili dodajte novog kupca Važi do
166 apps/erpnext/erpnext/accounts/page/pos/pos.js +1374 Trial Balance for Party Select or add new customer Struktura dugovanja Izaberite ili dodajte novog kupca
167 DocType: Program Enrollment Tool New Program Trial Balance for Party Novi program Struktura dugovanja
168 DocType: Program Enrollment Tool New Program Novi program
169 DocType: Product Bundle Item Product Bundle Item Sastavljeni proizvodi
170 DocType: Lead Address & Contact Adresa i kontakt
171 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +782 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +808 Make Napravi
172 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
173 apps/erpnext/erpnext/config/selling.py +41 All Contacts. Svi kontakti
174 DocType: Item DocType: Consultation Default Warehouse Consultation Date Podrazumijevano skladište Datum pregleda
175 apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82 DocType: Item Currently no stock available in any warehouse Default Warehouse Тренутно не постоје залихе у складишту Podrazumijevano skladište
176 apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82 Currently no stock available in any warehouse Тренутно не постоје залихе у складишту
177 DocType: Company Default Letter Head Podrazumijevano zaglavlje
178 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +70 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84 Sales Order {0} is not valid Prodajni nalog {0} nije validan
179 DocType: Account Credit Potražuje
180 DocType: C-Form Invoice Detail Grand Total Za plaćanje
181 apps/erpnext/erpnext/config/learn.py +234 Human Resource Ljudski resursi
182 DocType: Selling Settings Delivery Note Required Otpremnica je obavezna
183 DocType: Payment Entry Type of Payment Vrsta plaćanja
184 DocType: Purchase Invoice Item UOM JM
185 apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +57 apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +59 Difference Amount must be zero Razlika u iznosu mora biti nula
186 DocType: Sales Order Not Delivered Nije isporučeno
187 apps/erpnext/erpnext/config/selling.py +158 Sales campaigns. Prodajne kampanje
188 DocType: Item Auto re-order Automatska porudžbina
189 Profit and Loss Statement Bilans uspjeha
190 apps/erpnext/erpnext/utilities/user_progress.py +126 apps/erpnext/erpnext/utilities/user_progress.py +144 Meter Metar
191 apps/erpnext/erpnext/utilities/user_progress.py +125 apps/erpnext/erpnext/utilities/user_progress.py +143 Pair Par
192 Profitability Analysis Analiza profitabilnosti
193 DocType: Attendance HR Manager Menadžer za ljudske resurse
194 DocType: Purchase Invoice Total Taxes and Charges (Company Currency) Porez (valuta preduzeća)
195 DocType: Quality Inspection DocType: Asset Quality Manager Menadžer za kvalitet
196 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
197 DocType: Purchase Invoice Is Return Da li je povratak
198 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +663 DocType: Stock Entry Supplier Invoice No exists in Purchase Invoice {0} Material Receipt Broj fakture dobavljača već postoji u fakturi nabavke {0} Prijem robe
199 DocType: Asset Movement apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +667 Source Warehouse Supplier Invoice No exists in Purchase Invoice {0} Izvorno skladište Broj fakture dobavljača već postoji u fakturi nabavke {0}
200 apps/erpnext/erpnext/config/learn.py +263 DocType: Asset Movement Managing Projects Source Warehouse Upravljanje projektima Izvorno skladište
201 apps/erpnext/erpnext/config/learn.py +263 Managing Projects Upravljanje projektima
202 apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21 Pricing Kalkulacija
203 DocType: Supplier Name and Type Ime i tip
204 DocType: Customs Tariff Number Customs Tariff Number Carinska tarifa
205 DocType: Item Default Supplier Podrazumijevani dobavljač
206 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +171 apps/erpnext/erpnext/healthcare/page/medical_record/patient_select.html +3 Opening Select Patient Početno stanje Izaberite pacijenta
207 DocType: POS Profile apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +219 Customer Groups Opening Grupe kupaca Početno stanje
208 DocType: Brand DocType: POS Profile Item Manager Customer Groups Menadžer artikala Grupe kupaca
209 DocType: Brand Item Manager Menadžer artikala
210 DocType: Fiscal Year Company Fiscal Year Company Fiskalna godina preduzeća
211 DocType: Supplier DocType: Patient Appointment Credit Days Based On Patient Appointment Dani dugovanja bazirani na Zakazivanje pacijenata
212 DocType: BOM DocType: Company Show In Website Credit Days Based On Prikaži na web sajtu Dani dugovanja bazirani na
213 DocType: Payment Entry DocType: BOM Paid Amount Show In Website Uplaćeno Prikaži na web sajtu
214 DocType: Payment Entry Paid Amount Uplaćeno
215 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +23 Total Paid Amount Ukupno plaćeno
216 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +234 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +237 Purchase Receipt {0} is not submitted Prijem robe {0} nije potvrđen
217 apps/erpnext/erpnext/config/selling.py +52 Items and Pricing Proizvodi i cijene
218 DocType: Payment Entry Account Paid From Račun plaćen preko
219 apps/erpnext/erpnext/utilities/activation.py +72 Create customer quotes Kreirajte bilješke kupca
220 DocType: Purchase Invoice Supplier Warehouse Skladište dobavljača
221 apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py +20 Customer is required Kupac je obavezan podatak
227 apps/erpnext/erpnext/config/stock.py +7 Stock Transactions Promjene na zalihama
228 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +939 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +964 Add items from Dodaj stavke iz
229 DocType: Sales Invoice DocType: Purchase Invoice Rounded Total (Company Currency) Zaokruženi ukupan iznos (valuta preduzeća)
230 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.
231 DocType: Pricing Rule Discount on Price List Rate (%) Popust na cijene iz cjenovnika (%)
232 DocType: Item Item Attribute Atribut artikla
233 DocType: Payment Request Amount in customer's currency Iznos u valuti kupca
234 apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +106 Warehouse is mandatory Skladište je obavezan podatak
236 apps/erpnext/erpnext/templates/includes/cart/cart_dropdown.html +21 Cart is Empty Korpa je prazna
237 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +539 DocType: Consultation Stock Entry {0} is not submitted Patient Details Unos zaliha {0} nije potvrđen Detalji o pacijentu
238 apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +367 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +537 Rest Of The World Stock Entry {0} is not submitted Ostatak svijeta Unos zaliha {0} nije potvrđen
239 DocType: Production Order apps/erpnext/erpnext/setup/setup_wizard/operations/defaults_setup.py +105 Additional Operating Cost Rest Of The World Dodatni operativni troškovi Ostatak svijeta
240 DocType: Purchase Invoice DocType: Production Order Rejected Warehouse Additional Operating Cost Odbijeno skladište Dodatni operativni troškovi
241 DocType: Purchase Invoice Rejected Warehouse Odbijeno skladište
242 DocType: Request for Quotation DocType: Asset Repair Manufacturing Manager Menadžer proizvodnje
243 DocType: Shopping Cart Settings Enable Shopping Cart Omogući korpu
244 DocType: Purchase Invoice Item Is Fixed Asset Artikal je osnovno sredstvo
245 POS POS
246 DocType: Shipping Rule apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +459 Net Weight (Half Day) Neto težina (Pola dana)
247 DocType: Payment Entry Reference DocType: Shipping Rule Outstanding Net Weight Preostalo Neto težina
248 DocType: Payment Entry Reference Outstanding Preostalo
249 DocType: Purchase Invoice DocType: Sales Invoice Item Select Shipping Address Discount (%) on Price List Rate with Margin Odaberite adresu isporuke Popust (%)
250 apps/erpnext/erpnext/accounts/report/purchase_order_items_to_be_billed/purchase_order_items_to_be_billed.py +20 DocType: Purchase Invoice Amount to Bill Select Shipping Address Iznos za fakturisanje Odaberite adresu isporuke
251 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
252 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
253 apps/erpnext/erpnext/accounts/page/pos/pos.js +778 apps/erpnext/erpnext/accounts/page/pos/pos.js +793 Sync Offline Invoices Sinhronizuj offline fakture
254 DocType: BOM Manufacturing Proizvodnja
255 apps/erpnext/erpnext/controllers/website_list_for_contact.py +117 {0}% Delivered {0}% Isporučeno
256 DocType: Delivery Note Customer's Purchase Order No Broj porudžbenice kupca
257 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
258 DocType: Quality Inspection Report Date Datum izvještaja
259 DocType: POS Profile Item Groups Vrste artikala
260 apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75 DocType: Pricing Rule Gross Profit % Discount Percentage Bruto dobit% Procenat popusta
261 DocType: Payment Request apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75 Payment Request Gross Profit % Upit za plaćanje Bruto dobit%
262 DocType: Payment Request Payment Request Upit za plaćanje
263 Purchase Analytics Analiza nabavke
264 apps/erpnext/erpnext/config/crm.py +92 Record of all communications of type email, phone, chat, visit, etc. Snimanje svih komunikacija tipa email, telefon, poruke, posjete, itd.
265 DocType: Purchase Order Customer Contact Email Kontakt e-mail kupca
273 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +46 Age (Days) Starost (Dani)
274 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +211 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +218 Opening (Dr) Početno stanje (Du)
275 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
276 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}
277 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +458 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +483 Production Order {0} must be submitted Proizvodna porudžbine {0} mora biti potvrdjena
278 DocType: Project DocType: Customer Total Sales Cost (via Sales Order) From Lead Ukupni prodajni troškovi (od prodajnih naloga) Od Lead-a
279 DocType: Customer apps/erpnext/erpnext/config/crm.py +12 From Lead Database of potential customers. Od Lead-a Baza potencijalnih kupaca
apps/erpnext/erpnext/config/crm.py +12 Database of potential customers. Baza potencijalnih kupaca
280 apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +28 Project Status Status Projekta
281 apps/erpnext/erpnext/public/js/pos/pos.html +113 All Item Groups Sve vrste artikala
282 apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py +49 Serial No {0} does not exist Serijski broj {0} ne postoji
291 DocType: Budget Fiscal Year Fiskalna godina
292 apps/erpnext/erpnext/public/js/utils/serial_no_batch_selector.js +118 DocType: Stock Entry Please select a warehouse Repack Izaberite skladište Prepakovati
293 DocType: Project apps/erpnext/erpnext/public/js/utils/serial_no_batch_selector.js +128 Project will be accessible on the website to these users Please select a warehouse Projekat će biti dostupan na sajtu sledećim korisnicima Izaberite skladište
294 DocType: Company DocType: Project Services Project will be accessible on the website to these users Usluge Projekat će biti dostupan na sajtu sledećim korisnicima
295 apps/erpnext/erpnext/public/js/setup_wizard.js +29 Services Usluge
296 apps/erpnext/erpnext/public/js/pos/pos.html +4 apps/erpnext/erpnext/config/healthcare.py +153 Item Cart Lab Test Configurations. Korpa sa artiklima Konfigurisanje Lab testa
297 DocType: Warehouse apps/erpnext/erpnext/public/js/pos/pos.html +4 Warehouse Detail Item Cart Detalji o skldištu Korpa sa artiklima
298 DocType: Warehouse Warehouse Detail Detalji o skldištu
299 DocType: Quotation Item Quotation Item Stavka sa ponude
300 DocType: Purchase Order Item Warehouse and Reference Skladište i veza
301 apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +92 {0} {1}: Account {2} is inactive {0} {1}: Nalog {2} je neaktivan
302 apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +449 apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +438 Fiscal Year {0} not found Fiskalna godina {0} nije pronađena
303 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +93 No Remarks Nema napomene
304 DocType: Notification Control Purchase Receipt Message Poruka u Prijemu robe
305 apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +21 DocType: Purchase Invoice Setup Already Complete!! Taxes and Charges Deducted Podešavanje je već urađeno ! Umanjeni porezi i naknade
306 DocType: Purchase Invoice DocType: Item Taxes and Charges Deducted Default Unit of Measure Umanjeni porezi i naknade Podrazumijevana jedinica mjere
DocType: Item Default Unit of Measure Podrazumijevana jedinica mjere
307 DocType: Purchase Invoice Item Serial No Serijski broj
308 DocType: Pricing Rule Supplier Type Tip dobavljača
309 apps/erpnext/erpnext/stock/dashboard/item_dashboard_list.html +25 Actual Qty {0} / Waiting Qty {1} Trenutna kol. {0} / Na čekanju {1}
310 DocType: Bank Reconciliation Detail DocType: Grant Application Posting Date Individual Datum dokumenta Fizičko lice
311 DocType: Payment Entry DocType: Bank Reconciliation Detail Total Allocated Amount (Company Currency) Posting Date Ukupan povezani iznos (Valuta) Datum dokumenta
312 DocType: Cheque Print Template Date Settings Podešavanje datuma
313 DocType: Account DocType: Payment Entry Income Total Allocated Amount (Company Currency) Prihod Ukupan povezani iznos (Valuta)
314 DocType: Account Income Prihod
315 apps/erpnext/erpnext/public/js/utils/item_selector.js +20 Add Items Dodaj stavke
316 apps/erpnext/erpnext/accounts/page/pos/pos.js +1691 apps/erpnext/erpnext/accounts/page/pos/pos.js +1706 Price List not found or disabled Cjenovnik nije pronađen ili je zaključan
317 apps/erpnext/erpnext/accounts/page/pos/pos.js +765 apps/erpnext/erpnext/accounts/page/pos/pos.js +780 New Sales Invoice Nova faktura
318 apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center_tree.js +16 New Company Novo preduzeće
319 DocType: Issue Support Team Tim za podršku
320 DocType: Item Valuation Method Način vrednovanja
321 DocType: Project Project Type Tip Projekta
322 DocType: Purchase Invoice DocType: Purchase Order Item Additional Discount Amount (Company Currency) Returned Qty Iznos dodatnog popusta (valuta preduzeća) Vraćena kol.
323 DocType: Opportunity DocType: Purchase Invoice Maintenance Additional Discount Amount (Company Currency) Održavanje Iznos dodatnog popusta (valuta preduzeća)
324 DocType: Asset Maintenance Održavanje
325 DocType: Item Price Multiple Item prices. Više cijena artikala
326 apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +363 apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +364 Received From je primljen od
327 DocType: Payment Entry Write Off Difference Amount Otpis razlike u iznosu
328 DocType: Payment Entry DocType: Task Cheque/Reference Date Closing Date Datum izvoda Datum zatvaranja
329 DocType: Repayment Schedule apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +71 Payment Date Select Physician... Datum plaćanja Izaberite ljekara ...
330 DocType: Payment Entry Cheque/Reference Date Datum izvoda
331 DocType: Repayment Schedule Payment Date Datum plaćanja
332 DocType: Vehicle Additional Details Dodatni detalji
333 DocType: Company Create Chart Of Accounts Based On Kreiraj kontni plan prema
334 apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +130 Open To Do Otvori To Do
335 apps/erpnext/erpnext/config/stock.py +163 DocType: Authorization Rule Split Delivery Note into packages. Average Discount Razdvoji otpremnicu u pakovanja Prosječan popust
336 apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +259 DocType: Item Supplier Quotation {0} created Material Issue Ponuda dobavljaču {0} је kreirana Reklamacija robe
337 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +101 apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +259 Not allowed to update stock transactions older than {0} Supplier Quotation {0} created Nije dozvoljeno mijenjati Promjene na zalihama starije od {0} Ponuda dobavljaču {0} је kreirana
338 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}
339 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +380 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +397 Add Employees Dodaj zaposlene
340 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +93 Warehouse not found in the system Skladište nije pronađeno u sistemu
341 DocType: Sales Invoice Customer Name Lab Test Report Naziv kupca Izvještaj labaratorijskog testa
342 DocType: Employee DocType: Sales Invoice Current Address Customer Name Trenutna adresa Naziv kupca
343 DocType: Employee Current Address Trenutna adresa
344 apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97 Upcoming Calendar Events Predstojeći događaji u kalendaru
345 DocType: Accounts Settings Make Payment via Journal Entry Kreiraj uplatu kroz knjiženje
346 DocType: Payment Request Paid Plaćeno
351 DocType: Stock Entry Additional Costs Dodatni troškovi
352 apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +26 DocType: Item POS Profile {0} already created for user: {1} and company {2} Default Selling Cost Center POS profil {0} je već kreiran za korisnika: {1} i kompaniju {2} Podrazumijevani centar troškova
353 DocType: Item apps/erpnext/erpnext/public/js/pos/pos.html +98 Default Selling Cost Center No Customers yet! Podrazumijevani centar troškova Još uvijek nema kupaca!
apps/erpnext/erpnext/public/js/pos/pos.html +98 No Customers yet! Još uvijek nema kupaca!
354 apps/erpnext/erpnext/selling/doctype/customer/customer_dashboard.py +6 apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +851 This is based on transactions against this Customer. See timeline below for details Sales Return Ovo je zasnovano na transkcijama ovog klijenta. Pogledajte vremensku liniju ispod za dodatne informacije Povraćaj prodaje
355 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +64 apps/erpnext/erpnext/selling/doctype/customer/customer_dashboard.py +6 Warning: Sales Order {0} already exists against Customer's Purchase Order {1} This is based on transactions against this Customer. See timeline below for details Upozorenje: Prodajni nalog {0}već postoji veza sa porudžbenicom kupca {1} Ovo je zasnovano na transkcijama ovog klijenta. Pogledajte vremensku liniju ispod za dodatne informacije
356 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}
357 apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +36 DocType: Healthcare Settings Accounting Ledger Healthcare Settings Analitička kartica Podešavanje klinike
358 DocType: Stock Entry apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +36 Total Outgoing Value Accounting Ledger Ukupna vrijednost isporuke Analitička kartica
359 DocType: Stock Entry Total Outgoing Value Ukupna vrijednost isporuke
360 apps/erpnext/erpnext/controllers/selling_controller.py +271 apps/erpnext/erpnext/controllers/selling_controller.py +245 Sales Order {0} is {1} Prodajni nalog {0} је {1}
361 DocType: Stock Settings Automatically Set Serial Nos based on FIFO Podesi automatski serijski broj da koristi FIFO
362 apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57 New Customers Novi kupci
363 apps/erpnext/erpnext/selling/doctype/customer/customer_dashboard.py +10 Pre Sales Prije prodaje
364 DocType: POS Customer Group POS Customer Group POS grupa kupaca
365 DocType: Quotation Shopping Cart Korpa sa sajta
371 apps/erpnext/erpnext/templates/pages/home.html +31 View All Products Pogledajte sve proizvode
372 DocType: Supplier DocType: Patient Medical Record Address and Contacts Patient Medical Record Adresa i kontakti Medicinski karton pacijenta
373 apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6 DocType: Supplier This is based on transactions against this Company. See timeline below for details Address and Contacts Ovo je zasnovano na transkcijama ovog preduzeća. Pogledajte vremensku liniju ispod za dodatne informacije Adresa i kontakti
374 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
375 DocType: Student Attendance Tool Batch Serija
376 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +817 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +843 Purchase Receipt Prijem robe
377 DocType: Item Warranty Period (in days) Garantni rok (u danima)
378 apps/erpnext/erpnext/config/selling.py +28 Customer database. Korisnička baza podataka
379 Stock Projected Qty Projektovana količina na zalihama
380 apps/erpnext/erpnext/stock/stock_ledger.py +368 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +350 {0} units of {1} needed in {2} to complete this transaction. Make Payment Željenu količinu {0} za artikal {1} je potrebno dodati na {2} da bi dovršili transakciju.. Kreiraj plaćanje
381 DocType: GL Entry apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51 Remarks You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings Napomena Ne možete obrisati fiskalnu godinu {0}. Fiskalna {0} godina je označena kao trenutna u globalnim podešavanjima.
382 DocType: Tax Rule apps/erpnext/erpnext/stock/stock_ledger.py +375 Sales {0} units of {1} needed in {2} to complete this transaction. Prodaja Željenu količinu {0} za artikal {1} je potrebno dodati na {2} da bi dovršili transakciju..
383 DocType: GL Entry Remarks Napomena
384 DocType: Opening Invoice Creation Tool Sales Prodaja
385 DocType: Pricing Rule Pricing Rule Pravilnik za cijene
386 DocType: Products Settings Products Settings Podešavanje proizvoda
387 DocType: Lab Test Sales Invoice Trends Mobile Trendovi faktura prodaje Mobilni
388 DocType: Purchase Invoice DocType: Purchase Invoice Item Tax Breakup Price List Rate Porez po pozicijama Cijena
389 apps/erpnext/erpnext/templates/print_formats/includes/taxes.html +5 Discount Amount Vrijednost popusta
390 Sales Invoice Trends Trendovi faktura prodaje
391 DocType: POS Profile Apply Discount Primijeni popust
392 DocType: Expense Claim DocType: Purchase Invoice Task Tax Breakup Zadatak Porez po pozicijama
393 DocType: Asset Maintenance Log Task Zadatak
394 apps/erpnext/erpnext/stock/doctype/item/item.js +272 apps/erpnext/erpnext/stock/doctype/item/item.js +268 Add / Edit Prices Dodaj / Izmijeni cijene
395 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +905 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
396 Item Prices Cijene artikala
397 DocType: Salary Component Salary Component Компонента плате
398 DocType: Sales Order Customer's Purchase Order Date Datum porudžbenice kupca
399 DocType: Item Country of Origin Zemlja porijekla
400 DocType: Quotation Order Type Vrsta porudžbine
401 DocType: Pricing Rule For Price List Za cjenovnik
402 DocType: Sales Invoice DocType: Purchase Invoice Tax ID Poreski broj
403 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +42 WIP Warehouse Wip skladište
404 Itemwise Recommended Reorder Level Pregled otpremljenih artikala
405 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579 Sales Order {0} is not submitted Prodajni nalog {0} nije potvrđen
406 DocType: Item Default Material Request Type Podrazumijevani zahtjev za tip materijala
407 apps/erpnext/erpnext/config/crm.py +6 Sales Pipeline Prodajna linija
408 DocType: Payment Entry Pay Plati
409 DocType: Item Sales Details Detalji prodaje
410 apps/erpnext/erpnext/config/learn.py +11 Navigating Navigacija
411 apps/erpnext/erpnext/utilities/user_progress.py +117 apps/erpnext/erpnext/utilities/user_progress.py +135 Your Products or Services Vaši artikli ili usluge
412 DocType: Lead CRM CRM
413 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +158 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +159 Quotation {0} is cancelled Ponuda {0} je otkazana
414 DocType: Asset DocType: Pricing Rule Item Code Šifra artikla
415 DocType: Purchase Order Customer Mobile No Broj telefona kupca
416 apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +110 Move Item Premještanje artikala
417 DocType: Buying Settings Buying Settings Podešavanja nabavke
418 DocType: Vehicle DocType: Driver Fleet Manager Menadžer transporta
419 apps/erpnext/erpnext/stock/doctype/batch/batch.js +43 Stock Levels Nivoi zalihe
420 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +246 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +253 Closing (Cr) Saldo (Po)
421 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +566 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +591 Product Bundle Sastavnica
422 apps/erpnext/erpnext/accounts/page/pos/pos.js +770 apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py +19 Sync Master Data Sales and Returns Sinhronizuj podatke iz centrale Prodaja i povraćaji
423 DocType: Landed Cost Voucher apps/erpnext/erpnext/accounts/page/pos/pos.js +785 Purchase Receipts Sync Master Data Prijemi robe Sinhronizuj podatke iz centrale
424 apps/erpnext/erpnext/config/learn.py +21 DocType: Landed Cost Voucher Customizing Forms Purchase Receipts Prilagođavanje formi Prijemi robe
425 apps/erpnext/erpnext/config/learn.py +21 Customizing Forms Prilagođavanje formi
426 DocType: Purchase Invoice Overdue Istekao
427 DocType: Purchase Invoice Posting Time Vrijeme izrade računa
428 DocType: Stock Entry Purchase Receipt No Broj prijema robe
429 apps/erpnext/erpnext/accounts/page/pos/pos.js +74 apps/erpnext/erpnext/accounts/page/pos/pos.js +76 to do
430 DocType: Supplier Credit Limit Kreditni limit
431 DocType: Item Item Tax Porez
432 DocType: Pricing Rule Selling Prodaja
433 DocType: Purchase Order Customer Contact Kontakt kupca
434 apps/erpnext/erpnext/accounts/doctype/asset/asset.py +39 apps/erpnext/erpnext/stock/doctype/item/item.py +521 Item {0} does not exist Artikal {0} ne postoji
435 apps/erpnext/erpnext/utilities/user_progress.py +226 apps/erpnext/erpnext/utilities/user_progress.py +244 Add Users Dodaj korisnike
436 Completed Production Orders Završena proizvodna porudžbina
437 apps/erpnext/erpnext/public/js/utils/serial_no_batch_selector.js +78 apps/erpnext/erpnext/public/js/utils/serial_no_batch_selector.js +79 Select Serial Numbers Izaberite serijske brojeve
438 DocType: Bank Reconciliation Detail Payment Entry Uplate
439 DocType: Purchase Invoice In Words Riječima
440 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}
441 DocType: Issue Support Podrška
442 apps/erpnext/erpnext/config/stock.py +184 DocType: Production Planning Tool Default settings for stock transactions. Get Sales Orders Podrazumijevana podešavanja za dio Promjene na zalihama Pregledaj prodajne naloge
443 DocType: Production Planning Tool DocType: Stock Ledger Entry Get Sales Orders Stock Ledger Entry Pregledaj prodajne naloge Unos zalihe robe
DocType: Stock Ledger Entry Stock Ledger Entry Unos zalihe robe
444 apps/erpnext/erpnext/accounts/page/pos/pos.js +1569 DocType: Purchase Invoice Item Address Name Price List Rate (Company Currency) Naziv adrese Cijena (Valuta preduzeća)
445 DocType: Item Group DocType: Delivery Stop Item Group Name Address Name Naziv vrste artikala Naziv adrese
446 apps/erpnext/erpnext/selling/doctype/customer/customer.py +118 DocType: Item Group A Customer Group exists with same name please change the Customer name or rename the Customer Group Item Group Name Isto ime grupe kupca već postoji. Promijenite ime kupca ili izmijenite grupu kupca Naziv vrste artikala
447 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
448 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +542 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}
449 DocType: Item Has Serial No Ima serijski broj
450 DocType: Payment Entry Difference Amount (Company Currency) Razlika u iznosu (Valuta)
451 apps/erpnext/erpnext/public/js/utils.js +49 Add Serial No Dodaj serijski broj
452 apps/erpnext/erpnext/config/accounts.py +57 Company and Accounts Preduzeće i računi
453 DocType: Employee Current Address Is Trenutna adresa je
456 DocType: Purchase Invoice Address and Contact Adresa i kontakt
457 apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +10 Supplier-Wise Sales Analytics Appointments and Consultations Analiza Dobavljačeve pametne prodaje Zakazivanja i pregledi
458 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +290 Payment Entry is already created Supplier-Wise Sales Analytics Uplata je već kreirana Analiza Dobavljačeve pametne prodaje
459 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +290 Payment Entry is already created Uplata je već kreirana
460 DocType: Purchase Invoice Item Item Artikal
461 DocType: Purchase Invoice Unpaid Neplaćen
462 DocType: Project User Project User Projektni user
465 apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +97 Sales Order required for Item {0} Prodajni nalog je obavezan za artikal {0}
466 DocType: GL Entry DocType: Consultation Voucher No Patient Br. dokumenta Pacijent
467 apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +315 DocType: Stock Entry Serial No {0} created Default Target Warehouse Serijski broj {0} kreiran Prijemno skladište
468 DocType: GL Entry Voucher No Br. dokumenta
469 apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +315 Serial No {0} created Serijski broj {0} kreiran
470 DocType: Account Asset Osnovna sredstva
471 DocType: Payment Entry Received Amount Iznos uplate
472 Sales Funnel Prodajni lijevak
473 DocType: Sales Invoice Payment Due Date Datum dospijeća fakture
474 apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py +18 DocType: Consultation Related Consultation Povezan Pregled
475 DocType: Warehouse apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py +18 Warehouse Name Related Naziv skladišta Povezan
476 DocType: Warehouse Warehouse Name Naziv skladišta
477 DocType: Authorization Rule Customer / Item Name Kupac / Naziv proizvoda
478 DocType: Student DocType: Stock Entry Home Address Update Rate and Availability Kućna adresa Izmijenite cijenu i dostupnost
479 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +941 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +966 Supplier Quotation Ponuda dobavljača
480 DocType: Material Request Item Quantity and Warehouse Količina i skladište
481 DocType: Purchase Invoice Taxes and Charges Added Porezi i naknade dodate
482 DocType: Production Order Warehouses Skladišta
483 DocType: SMS Center All Customer Contact Svi kontakti kupca
484 apps/erpnext/erpnext/accounts/doctype/account/account.js +73 apps/erpnext/erpnext/accounts/doctype/account/account.js +79 Ledger Glavna knjiga
485 DocType: Quotation Quotation Lost Reason Razlog gubitka ponude
486 DocType: Account DocType: Purchase Invoice Stock Return Against Purchase Invoice Zalihe Povraćaj u vezi sa Fakturom nabavke
487 DocType: Customer Group DocType: Account Customer Group Name Stock Naziv grupe kupca Zalihe
488 DocType: Customer Group Customer Group Name Naziv grupe kupca
489 DocType: Item Is Sales Item Da li je prodajni artikal
490 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +16 Invoiced Amount Fakturisano
491 DocType: Purchase Invoice Edit Posting Date and Time Izmijeni datum i vrijeme dokumenta
502 apps/erpnext/erpnext/config/selling.py +163 Terms and Conditions Template Uslovi i odredbe šablon
503 apps/erpnext/erpnext/stock/doctype/batch/batch.js +90 apps/erpnext/erpnext/stock/doctype/batch/batch.js +97 Stock Entry {0} created Unos zaliha {0} je kreiran
504 apps/erpnext/erpnext/templates/generators/item.html +67 View in Cart Pogledajte u korpi
505 apps/erpnext/erpnext/stock/get_item_details.py +302 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}
506 apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +480 apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +537 Discount Popust
507 DocType: Packing Slip Net Weight UOM Neto težina JM
508 DocType: Selling Settings Sales Order Required Prodajni nalog je obavezan
509 apps/erpnext/erpnext/accounts/page/pos/pos.js +1068 apps/erpnext/erpnext/accounts/page/pos/pos.js +1083 Search Item Pretraži artikal
510 Delivered Items To Be Billed Nefakturisana isporučena roba
511 DocType: Account Debit Duguje
512 DocType: Bank Reconciliation Detail DocType: Patient Appointment Payment Document Date TIme Dokument za plaćanje Datum i vrijeme
513 DocType: Purchase Invoice DocType: Bank Reconciliation Detail In Words (Company Currency) Payment Document Riječima (valuta kompanije) Dokument za plaćanje
514 DocType: Purchase Invoice In Words (Company Currency) Riječima (valuta kompanije)
515 Purchase Receipt Trends Trendovi prijema robe
516 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +25 Fiscal Year {0} does not exist Fiskalna godina {0} ne postoji
517 DocType: Purchase Invoice Item Accepted Warehouse Prihvaćeno skladište
519 DocType: Journal Entry Account Account Balance Knjigovodstveno stanje
520 apps/erpnext/erpnext/stock/doctype/batch/batch.js +75 apps/erpnext/erpnext/stock/doctype/batch/batch.js +76 To Warehouse U skladište
521 DocType: Purchase Invoice Contact Person Kontakt osoba
522 DocType: Item Item Code for Suppliers Dobavljačeva šifra
523 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +787 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813 Return / Debit Note Povraćaj / knjižno zaduženje
524 DocType: Request for Quotation Supplier Request for Quotation Supplier Zahtjev za ponudu dobavljača
525 apps/erpnext/erpnext/config/accounts.py +142 DocType: Lab Test Groups Banking and Payments Lab Test Groups Bakarstvo i plaćanja Labaratorijske grupe
526 apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +31 apps/erpnext/erpnext/config/accounts.py +134 Active Leads / Customers Banking and Payments Активни Леадс / Kupci Bakarstvo i plaćanja
527 DocType: POS Profile apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +31 Accounting Active Leads / Customers Računovodstvo Активни Леадс / Kupci
528 DocType: POS Profile Accounting Računovodstvo
529 DocType: Item Manufacture Proizvodnja
530 apps/erpnext/erpnext/templates/pages/projects.html +27 New task Novi zadatak
531 DocType: Journal Entry Accounts Payable Obaveze prema dobavljačima
532 DocType: Purchase Invoice Shipping Address Adresa isporuke
533 DocType: Payment Reconciliation Invoice DocType: Opening Invoice Creation Tool Item Outstanding Amount Preostalo za uplatu
534 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +160 DocType: Physician Warehouse required at Row No {0} Physician Schedule Skladište je potrebno unijeti na poziciji {0} Raspored ljekara
535 apps/erpnext/erpnext/stock/doctype/warehouse/warehouse_tree.js +15 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +163 New Warehouse Name Warehouse required at Row No {0} Naziv novog skladišta Skladište je potrebno unijeti na poziciji {0}
536 apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +367 apps/erpnext/erpnext/stock/doctype/warehouse/warehouse_tree.js +15 Transaction reference no {0} dated {1} New Warehouse Name Broj izvoda {0} na datum {1} Naziv novog skladišta
537 apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +368 Transaction reference no {0} dated {1} Broj izvoda {0} na datum {1}
538 apps/erpnext/erpnext/utilities/activation.py +83 Make Sales Order Kreiraj prodajni nalog
539 DocType: Purchase Invoice Items Artikli
540 DocType: Payment Entry Allocate Payment Amount Poveži uplaćeni iznos
541 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +86 DocType: Patient Printed On Patient ID Datum i vrijeme štampe ID pacijenta
542 DocType: Sales Invoice apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +97 Debit To Printed On Zaduženje za Datum i vrijeme štampe
543 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138 DocType: Sales Invoice Atleast one warehouse is mandatory Debit To Minimum jedno skladište je obavezno Zaduženje za
544 apps/erpnext/erpnext/config/setup.py +14 Global Settings Globalna podešavanja
545 DocType: Price List apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +143 Price List Name Atleast one warehouse is mandatory Naziv cjenovnika Minimum jedno skladište je obavezno
546 DocType: Item DocType: Price List Purchase Details Price List Name Detalji kupovine Naziv cjenovnika
547 DocType: Item Purchase Details Detalji kupovine
548 DocType: Asset Journal Entry for Scrap Knjiženje rastura i loma
549 DocType: Item Website Warehouse Skladište web sajta
550 DocType: Sales Invoice Item Customer's Item Code Šifra kupca
551 DocType: Asset DocType: Pricing Rule Supplier Dobavljači
552 DocType: Purchase Invoice Additional Discount Amount Iznos dodatnog popusta
553 apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30 Project Start Date Datum početka projekta
554 DocType: Announcement Student Student
555 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +457 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}
556 DocType: Drug Prescription Hour Sat
557 apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +21 Item Group Tree Stablo vrste artikala
558 DocType: POS Profile Update Stock Ažuriraj zalihu
559 apps/erpnext/erpnext/accounts/doctype/asset/asset.js +252 apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +33 Target Warehouse Get from Consultation Ciljno skladište Kreiraj iz pregleda
560 DocType: Crop Delivery Note Trends Target Warehouse Trendovi Otpremnica Ciljno skladište
561 apps/erpnext/erpnext/patches/v7_0/create_warehouse_nestedset.py +59 All Warehouses Delivery Note Trends Sva skladišta Trendovi Otpremnica
562 DocType: Stock Entry Default Source Warehouse Izdajno skladište
563 DocType: Stock Reconciliation apps/erpnext/erpnext/patches/v7_0/create_warehouse_nestedset.py +59 Difference Amount All Warehouses Razlika u iznosu Sva skladišta
564 DocType: Stock Reconciliation Difference Amount Razlika u iznosu
565 DocType: Journal Entry User Remark Korisnička napomena
566 DocType: Notification Control Quotation Message Ponuda - poruka
567 DocType: Journal Entry Stock Entry Unos zaliha
574 Total Stock Summary Ukupan pregled zalihe
575 DocType: Purchase Invoice Net Total (Company Currency) Ukupno (Valuta preduzeća) Ukupno bez PDV-a (Valuta preduzeća)
576 apps/erpnext/erpnext/public/js/payment/pos_payment.html +17 DocType: Healthcare Settings Write Off Patient Name Otpisati Ime pacijenta
577 DocType: Notification Control apps/erpnext/erpnext/public/js/payment/pos_payment.html +17 Delivery Note Message Write Off Poruka na otpremnici Otpisati
578 DocType: Notification Control Delivery Note Message Poruka na otpremnici
579 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
580 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +578 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582 Delivery Note {0} is not submitted Otpremnica {0} nije potvrđena
581 apps/erpnext/erpnext/public/js/pos/pos.html +87 Customers in Queue Kupci na čekanju
582 DocType: Purchase Invoice Price List Currency Valuta Cjenovnika
583 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +129 apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +133 Project Manager Projektni menadzer
584 DocType: Journal Entry Accounts Receivable Potraživanja od kupaca
585 DocType: Purchase Invoice Item Rate Cijena
586 DocType: Account Expense Rashod
587 apps/erpnext/erpnext/config/learn.py +107 Newsletters Newsletter-i
588 DocType: Purchase Invoice Select Supplier Address Izaberite adresu dobavljača
589 apps/erpnext/erpnext/stock/get_item_details.py +317 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
590 DocType: Delivery Note Billing Address Name Naziv adrese za naplatu
591 DocType: Restaurant Order Entry Add Item Dodaj stavku
592 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +139 apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +143 All Customer Groups Sve grupe kupca
593 DocType: Item DocType: Purchase Invoice Item Weight UOM JM Težina
594 DocType: Purchase Invoice Item Stock Qty Zaliha
595 apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +37 DocType: Delivery Note Ageing Range 1 Return Against Delivery Note Opseg dospijeća 1 Povraćaj u vezi sa otpremnicom
596 apps/erpnext/erpnext/public/js/pos/pos.html +104 apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +37 Stock Items Ageing Range 1 Artikli na zalihama Opseg dospijeća 1
597 apps/erpnext/erpnext/public/js/pos/pos.html +104 Stock Items Artikli na zalihama
598 apps/erpnext/erpnext/accounts/page/pos/pos.js +2165 apps/erpnext/erpnext/accounts/page/pos/pos.js +2180 New Cart Nova korpa
599 apps/erpnext/erpnext/config/selling.py +179 Analytics Analitika
600 apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +237 New {0}: #{1} Novi {0}: # {1}
601 DocType: Supplier DocType: Company Fixed Days Fiksni dani
602 DocType: Purchase Receipt Item Rate and Amount Cijena i vrijednost
603 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +65 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +71 'Total' 'Ukupno bez PDV-a'
604 DocType: Purchase Invoice Total Taxes and Charges Porez
605 DocType: Purchase Order Item Supplier Part Number Dobavljačeva šifra
606 DocType: Project Task Project Task Projektni zadatak
607 DocType: Item Group Parent Item Group Nadređena Vrsta artikala
608 apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +229 {0} created Kreirao je korisnik {0}
613 DocType: Mode of Payment General Opšte
614 apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +1351 apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +1438 Write Off Amount Otpisati iznos
615 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25 Total Outstanding Amount Preostalo za plaćanje
616 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +320 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +340 Not Paid and Not Delivered Nije plaćeno i nije isporučeno
617 DocType: Bank Reconciliation Total Amount Ukupan iznos
618 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +160 Please select Price List Izaberite cjenovnik
619 DocType: Quality Inspection Item Serial No Seriski broj artikla
620 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111 apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +115 Customer Service Usluga kupca
621 DocType: Cost Center Stock User Korisnik zaliha
622 apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18 General Ledger Glavna knjiga
623 apps/erpnext/erpnext/config/projects.py +13 Project master. Projektni master
624 DocType: Pricing Rule Purchase Order Trends Valid From Trendovi kupovina Važi od
625 DocType: Quotation In Words will be visible once you save the Quotation. Purchase Order Trends Sačuvajte Predračun da bi Ispis slovima bio vidljiv Trendovi kupovina
626 DocType: Quotation In Words will be visible once you save the Quotation. Sačuvajte Predračun da bi Ispis slovima bio vidljiv
627 apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +48 Projected Qty Projektovana količina
628 apps/erpnext/erpnext/config/selling.py +229 Customer Addresses And Contacts Kontakt i adresa kupca
629 DocType: Material Request Item For Warehouse Za skladište
630 apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39 Purchase Price List Nabavni cjenovnik
631 apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +58 apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +75 Accounts Payable Summary Please select Physician and Date Pregled obaveze prema dobavljačima Izaberite ljekara i datum
632 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +206 apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +58 Delivery Notes {0} must be cancelled before cancelling this Sales Order Accounts Payable Summary Otpremnice {0} moraju biti otkazane prije otkazivanja prodajnog naloga Pregled obaveze prema dobavljačima
633 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
634 DocType: Employee Loan Total Payment Ukupno plaćeno
635 apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73 Buying Amount Iznos nabavke
636 apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26 Project Id ID Projekta
637 DocType: Journal Entry Account Purchase Order Porudžbenica
638 DocType: GL Entry Voucher Type Vrsta dokumenta
639 apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +217 Serial No {0} has already been received Serijski broj {0} je već primljen
640 apps/erpnext/erpnext/controllers/accounts_controller.py +476 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})
641 apps/erpnext/erpnext/stock/get_item_details.py +319 apps/erpnext/erpnext/stock/get_item_details.py +362 Price List not selected Cjenovnik nije odabran
642 DocType: Item DocType: POS Profile Total Projected Qty Apply Discount On Ukupna projektovana količina Primijeni popust na
643 DocType: Shipping Rule Condition DocType: Item Shipping Rule Condition Total Projected Qty Uslovi pravila nabavke Ukupna projektovana količina
644 DocType: Shipping Rule Condition Shipping Rule Condition Uslovi pravila nabavke
645 Customer Credit Balance Kreditni limit kupca
646 DocType: C-Form Invoice Detail Net Total Ukupno Ukupno bez PDV-a
647 DocType: Purchase Invoice Return Povraćaj
648 DocType: Sales Order Item Delivery Warehouse Skladište dostave
649 DocType: Purchase Invoice Total (Company Currency) Ukupno bez PDV-a (Valuta)
650 apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +999 apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +1024 Opportunity Prilika
651 DocType: Sales Order Fully Delivered Kompletno isporučeno
652 DocType: Customer Default Price List Podrazumijevani cjenovnik
653 DocType: Depreciation Schedule DocType: Journal Entry Journal Entry Knjiženje
654 apps/erpnext/erpnext/buying/doctype/supplier/supplier_dashboard.py +6 DocType: Purchase Invoice This is based on transactions against this Supplier. See timeline below for details Apply Additional Discount On Ovo je zasnovano na transkcijama ovog dobavljača. Pogledajte vremensku liniju ispod za dodatne informacije Primijeni dodatni popust na
655 apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64 apps/erpnext/erpnext/buying/doctype/supplier/supplier_dashboard.py +6 90-Above This is based on transactions against this Supplier. See timeline below for details Iznad 90 dana Ovo je zasnovano na transkcijama ovog dobavljača. Pogledajte vremensku liniju ispod za dodatne informacije
656 apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64 90-Above Iznad 90 dana
657 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +873 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
658 apps/erpnext/erpnext/public/js/templates/contact_list.html +37 New Contact Novi kontakt
659 DocType: Production Planning Tool Create Production Orders Kreiraj porudžbinu za proizvodnju
660 DocType: Purchase Invoice Returns Povraćaj
661 DocType: Delivery Note Delivery To Isporuka za
662 apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +29 Project Value Vrijednost Projekta
668 Projected Quantity as Source Projektovana izvorna količina
669 DocType: BOM DocType: Asset Maintenance Manufacturing User Korisnik u proizvodnji
670 apps/erpnext/erpnext/utilities/activation.py +99 Create Users Kreiraj korisnike
671 DocType: Pricing Rule Price Cijena
672 DocType: Supplier Scorecard Scoring Standing Employee Zaposleni
673 apps/erpnext/erpnext/config/projects.py +19 Project activity / task. Projektna aktivnost / zadatak
674 DocType: Production Plan Item Reserved Warehouse in Sales Order / Finished Goods Warehouse Rezervisano skladište u Prodajnom nalogu / Skladište gotovog proizvoda
675 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +670 DocType: Appointment Type Quantity Physician Količina Ljekar
676 DocType: Buying Settings DocType: Opening Invoice Creation Tool Item Purchase Receipt Required Quantity Prijem robe je obavezan Količina
677 apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +37 DocType: Buying Settings Currency is required for Price List {0} Purchase Receipt Required Valuta je obavezna za Cjenovnik {0} Prijem robe je obavezan
678 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}
679 DocType: POS Customer Group Customer Group Grupa kupaca
680 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
681 apps/erpnext/erpnext/hooks.py +132 apps/erpnext/erpnext/hooks.py +136 Request for Quotations Zahtjev za ponude
682 apps/erpnext/erpnext/config/desktop.py +159 apps/erpnext/erpnext/config/desktop.py +167 Learn Naučite
683 DocType: Purchase Invoice DocType: POS Profile Additional Discount Ignore Pricing Rule Dodatni popust Zanemari pravilnik o cijenama
684 DocType: Payment Entry DocType: Purchase Invoice Cheque/Reference No Additional Discount Broj izvoda Dodatni popust
685 DocType: Payment Entry Cheque/Reference No Broj izvoda
686 DocType: C-Form Series Vrsta dokumenta
687 apps/erpnext/erpnext/utilities/user_progress.py +125 apps/erpnext/erpnext/utilities/user_progress.py +143 Box Kutija
688 DocType: Payment Entry Total Allocated Amount Ukupno povezani iznos
689 apps/erpnext/erpnext/config/selling.py +46 All Addresses. Sve adrese
690 apps/erpnext/erpnext/config/setup.py +66 Users and Permissions Korisnici i dozvole
691 apps/erpnext/erpnext/utilities/user_progress.py +63 Add Customers Dodaj kupce
692 apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +13 Please Delivery Note first Otpremite robu prvo
697 apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +18 Reserved Qty Rezervisana kol.
698 apps/erpnext/erpnext/accounts/page/pos/pos.js +1727 apps/erpnext/erpnext/accounts/page/pos/pos.js +1742 Not items found Ništa nije pronađeno
699 DocType: Item Copy From Item Group Kopiraj iz vrste artikala
700 DocType: Purchase Taxes and Charges On Net Total Na Neto vrijednost Na ukupno bez PDV-a
701 apps/erpnext/erpnext/public/js/utils.js +263 apps/erpnext/erpnext/accounts/utils.py +73 Please select Quotations {0} {1} not in any active Fiscal Year. Molimo odaberite Predračune {0} {1} se ne nalazi u aktivnim poslovnim godinama.
702 apps/erpnext/erpnext/accounts/utils.py +73 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492 {0} {1} not in any active Fiscal Year. Quick Journal Entry {0} {1} se ne nalazi u aktivnim poslovnim godinama. Brzo knjiženje
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +484 Quick Journal Entry Brzo knjiženje
703 DocType: Sales Order Partly Delivered Djelimično isporučeno
704 DocType: Purchase Invoice Item Quality Inspection Provjera kvaliteta
705 apps/erpnext/erpnext/config/accounts.py +113 apps/erpnext/erpnext/config/accounts.py +105 Accounting Statements Računovodstveni iskazi
706 apps/erpnext/erpnext/stock/get_item_details.py +306 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}
707 DocType: Project Type Projects Manager Projektni menadžer
708 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +97 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +98 Quotation {0} not of type {1} Ponuda {0} ne propada {1}
709 apps/erpnext/erpnext/config/selling.py +57 All Products or Services. Svi proizvodi ili usluge.
710 DocType: Sales Invoice DocType: Purchase Invoice Rounded Total Zaokruženi ukupan iznos
711 DocType: Request for Quotation Supplier Download PDF Preuzmi PDF
712 apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation.js +764 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913 Quotation Ponuda
713 DocType: Item DocType: Lead Has Variants Mobile No. Ima varijante Mobilni br.
714 DocType: Price List Country DocType: Item Price List Country Has Variants Zemlja cjenovnika Ima varijante
715 DocType: Price List Country Price List Country Zemlja cjenovnika
716 apps/erpnext/erpnext/controllers/accounts_controller.py +113 apps/erpnext/erpnext/controllers/accounts_controller.py +135 Due Date is mandatory Datum dospijeća je obavezan
717 apps/erpnext/erpnext/templates/includes/navbar/navbar_items.html +7 Cart Korpa
718 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
719 apps/erpnext/erpnext/selling/doctype/customer/customer.py +164 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}
720 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +239 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +246 Closing (Dr) Saldo (Du)
721 DocType: Sales Invoice Product Bundle Help Sastavnica Pomoć
722 apps/erpnext/erpnext/accounts/report/financial_statements.py +233 Total {0} ({1}) Ukupno bez PDV-a {0} ({1})
723 DocType: Sales Partner Address & Contacts Adresa i kontakti
724 apps/erpnext/erpnext/controllers/accounts_controller.py +280 apps/erpnext/erpnext/controllers/accounts_controller.py +303 or ili
725 apps/erpnext/erpnext/config/buying.py +18 Request for quotation. Zahtjev za ponudu
726 apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21 Standard Selling Standardna prodaja
727 DocType: Expense Claim DocType: Employee Advance Expense Approver Odobravatalj troškova
728 DocType: Purchase Invoice Supplier Invoice Details Detalji sa fakture dobavljača
729 DocType: Purchase Order To Bill Za fakturisanje
730 DocType: Company Chart Of Accounts Template Templejt za kontni plan
731 DocType: Payment Entry Reference apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99 Supplier Invoice No Physician {0} not available on {1} Broj fakture dobavljača Ljekar {0} nije dostupan {1}
732 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +14 DocType: Payment Entry Reference Ref Supplier Invoice No Vezni dokument Broj fakture dobavljača
733 apps/erpnext/erpnext/config/manufacturing.py +84 Global settings for all manufacturing processes. Globalna podešavanja za cjelokupan proces proizvodnje.
734 DocType: Account DocType: Stock Entry Accounts Material Transfer for Manufacture Računi Пренос robe za proizvodnju
735 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +14 Ref Vezni dokument
736 DocType: Account Accounts Računi
737 apps/erpnext/erpnext/controllers/buying_controller.py +395 apps/erpnext/erpnext/controllers/buying_controller.py +396 {0} {1} is cancelled or closed {0} {1} je otkazan ili zatvoren
738 DocType: Request for Quotation Item Request for Quotation Item Zahtjev za stavku sa ponude
739 DocType: Homepage Products Proizvodi
740 apps/erpnext/erpnext/public/js/setup_wizard.js +115 DocType: Patient Appointment e.g. "Build tools for builders" Check availability npr. "Izrada alata za profesionalce" Provjeri dostupnost
741 apps/erpnext/erpnext/public/js/utils.js +102 apps/erpnext/erpnext/public/js/setup_wizard.js +118 Total Unpaid: {0} e.g. "Build tools for builders" Ukupno neplaćeno: {0} npr. "Izrada alata za profesionalce"
742 DocType: Purchase Invoice apps/erpnext/erpnext/public/js/utils.js +102 Is Paid Total Unpaid: {0} Je plaćeno Ukupno neplaćeno: {0}
743 apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28 Make Invoice Kreiraj Fakturu
744 DocType: Purchase Invoice Ordered Items To Be Billed Is Paid Nefakturisani prodajni nalozi Je plaćeno
745 DocType: Manufacturing Settings Material Transferred for Manufacture Prenešena roba za proizvodnju
746 apps/erpnext/erpnext/config/selling.py +216 Other Reports Ordered Items To Be Billed Ostali izvještaji Nefakturisani prodajni nalozi
747 apps/erpnext/erpnext/config/selling.py +216 Other Reports Ostali izvještaji
748 apps/erpnext/erpnext/config/buying.py +7 Purchasing Kupovina
749 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +865 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933 Delivery Note Otpremnice
750 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.
751 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +446 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +463 Show Salary Slip Прикажи одсечак плате
752 DocType: Journal Entry Account Sales Order Prodajni nalog
753 DocType: Stock Entry Customer or Supplier Details Detalji kupca ili dobavljača
754 apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +25 Sell Prodaja
755 DocType: Email Digest Pending Quotations Predračuni na čekanju
756 DocType: Purchase Invoice Additional Discount Percentage Dodatni procenat popusta
757 DocType: Appraisal HR User Korisnik za ljudske resure
758 apps/erpnext/erpnext/config/stock.py +32 apps/erpnext/erpnext/config/stock.py +28 Stock Reports Izvještaji zaliha robe
759 DocType: Sales Invoice Stock Ledger Return Against Sales Invoice Zalihe robe Povraćaj u vezi sa Fakturom prodaje
760 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +214 DocType: Buying Settings Sales Invoice {0} must be cancelled before cancelling this Sales Order Naming Series Faktura {0} mora biti otkazana prije otkazivanja ovog prodajnog naloga Vrste dokumenta
761 Stock Ledger Zalihe robe
762 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
763 DocType: Email Digest New Quotations Nove ponude
764 apps/erpnext/erpnext/projects/doctype/project/project.js +111 Save the document first. Prvo sačuvajte dokument
765 DocType: Item Units of Measure Jedinica mjere
766 apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +51 DocType: Antibiotic Actual qty in stock Healthcare Trenutna količina na zalihama Klinika
767 DocType: Quotation Item apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +51 Actual Qty Actual qty in stock Trenutna kol. Trenutna količina na zalihama
768 DocType: Quotation Item Actual Qty Trenutna kol.
769
770

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