Merge branch 'master' of https://github.com/webnotes/erpnext
This commit is contained in:
commit
daae56926b
@ -6,14 +6,13 @@ def execute():
|
|||||||
res = webnotes.conn.sql_list("""select distinct gl1.voucher_no
|
res = webnotes.conn.sql_list("""select distinct gl1.voucher_no
|
||||||
from `tabGL Entry` gl1, `tabGL Entry` gl2
|
from `tabGL Entry` gl1, `tabGL Entry` gl2
|
||||||
where
|
where
|
||||||
(date(gl1.modified) between "2013-03-11" and "2013-03-15")
|
date(gl1.modified) >= "2013-03-11"
|
||||||
and date(gl1.modified) = date(gl2.modified)
|
and date(gl1.modified) = date(gl2.modified)
|
||||||
and gl1.voucher_no = gl2.voucher_no
|
and gl1.voucher_no = gl2.voucher_no
|
||||||
and gl1.voucher_type = "Journal Voucher"
|
and gl1.voucher_type = "Journal Voucher"
|
||||||
and gl1.voucher_type = gl2.voucher_type
|
and gl1.voucher_type = gl2.voucher_type
|
||||||
and gl1.posting_date = gl2.posting_date
|
and gl1.posting_date = gl2.posting_date
|
||||||
and gl1.account = gl2.account
|
and gl1.account = gl2.account
|
||||||
and ifnull(gl1.cost_center, "") = ifnull(gl2.cost_center, "")
|
|
||||||
and ifnull(gl1.is_cancelled, 'No') = 'No' and ifnull(gl2.is_cancelled, 'No') = 'No'
|
and ifnull(gl1.is_cancelled, 'No') = 'No' and ifnull(gl2.is_cancelled, 'No') = 'No'
|
||||||
and ifnull(gl1.against_voucher, '') = ifnull(gl2.against_voucher, '')
|
and ifnull(gl1.against_voucher, '') = ifnull(gl2.against_voucher, '')
|
||||||
and ifnull(gl1.against_voucher_type, '') = ifnull(gl2.against_voucher_type, '')
|
and ifnull(gl1.against_voucher_type, '') = ifnull(gl2.against_voucher_type, '')
|
||||||
|
|||||||
@ -97,7 +97,6 @@ class DocType(SellingController):
|
|||||||
return webnotes.conn.get_value('Sales Email Settings',None,'email_id')
|
return webnotes.conn.get_value('Sales Email Settings',None,'email_id')
|
||||||
|
|
||||||
def on_trash(self):
|
def on_trash(self):
|
||||||
webnotes.conn.sql("""delete from tabCommunication where lead=%s""",
|
webnotes.conn.sql("""update tabCommunication set lead=null where lead=%s""", self.doc.name)
|
||||||
self.doc.name)
|
|
||||||
webnotes.conn.sql("""update `tabSupport Ticket` set lead='' where lead=%s""",
|
webnotes.conn.sql("""update `tabSupport Ticket` set lead='' where lead=%s""",
|
||||||
self.doc.name)
|
self.doc.name)
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<style>
|
<style>
|
||||||
.item-main-image {
|
.item-main-image {
|
||||||
max-width: 400px;
|
max-width: 100%;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
.web-long-description {
|
.web-long-description {
|
||||||
|
|||||||
@ -18,7 +18,8 @@
|
|||||||
{% include "html/slideshow.html" %}
|
{% include "html/slideshow.html" %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if website_image %}
|
{% if website_image %}
|
||||||
<image itemprop="image" class="item-main-image" src="{{ website_image }}" />
|
<image itemprop="image" class="item-main-image"
|
||||||
|
src="{{ website_image }}" />
|
||||||
{% else %}
|
{% else %}
|
||||||
<div class="img-area">
|
<div class="img-area">
|
||||||
{% include 'html/product_missing_image.html' %}
|
{% include 'html/product_missing_image.html' %}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user