-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bug #150370 fix : CSRF on delete vendor * Bug#150110 fix: [Vendor-profile logo- frontend/backend]- Shows alert when user use payload for image (#56) * Bug#155239 fix: Admin = Vednor -> Add fees = Spelling mistake in error message for exceeding percentage. https://tracker.tekdi.net/issues/150380 * Bug#155364 fix: Vendors -> PayOuts = Need required sign for mandatory fields. * Issue #155234 fixed: Backend Vendor Add fees need valid tooltip for currency field also check tooltip for %commission and flat commission (#66) * Bug #155234 fixed: Backend Vendor Add fees need valid tooltip for currency field also check tooltip for %commission and flat commission * Bug #155234 fixed: Backend Vendor Add fees Currency field is not required. Also need to have tooltip for valid input. * Issue #155234 fixed: Backend Vendor Add fees need valid tooltip for currency field also check tooltip for %commission and flat commission * Issue #155234 fixed: Backend Vendor Add fees need valid tooltip for currency field also check tooltip for %commission and flat commission * Issue #155234 fixed: Backend Vendor Add fees need valid tooltip for currency field also check tooltip for %commission and flat commission * Issue #155234 fixed: Backend Vendor Add fees need valid tooltip for currency field also check tooltip for %commission and flat commission * Issue #155234 fixed: Backend Vendor Add fees need valid tooltip for currency field also check tooltip for %commission and flat commission * Issue #155234 fixed: Backend Vendor Add fees need valid tooltip for currency field also check tooltip for %commission and flat commission * Task #150350 chore: Version and date changes (#67) Co-authored-by: mayank_k <[email protected]> Co-authored-by: aishwaryab2 <[email protected]> Co-authored-by: deepa-g <[email protected]>
- Loading branch information
Showing
11 changed files
with
142 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,61 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<form> | ||
<fieldset addfieldpath="/administrator/components/com_tjvendors/models/fields"> | ||
<field name="id" type="int" label="COM_TJVENDORS_FORM_LBL_VENDOR_ID" readonly="true" class="readonly required" description="JGLOBAL_FIELD_ID_DESC" /> | ||
<field name="vendor_title" type="text" label="COM_TJVENDORS_FORM_LBL_VENDOR_TITLE" description="COM_TJVENDORS_FORM_DESC_VENDOR_TITLE" hint="COM_TJVENDORS_FORM_LBL_VENDOR_TITLE" filter="" readonly="true" class="readonly required" /> | ||
<field name="client" type="text" label="COM_TJVENDORS_FORM_LBL_VENDOR_CLIENT" description="COM_TJVENDORS_FORM_DESC_VENDOR_CLIENT" hint="COM_TJVENDORS_FORM_LBL_VENDOR_CLIENT" filter="" /> | ||
<field name="currency" type="text" label="COM_TJVENDORS_FORM_LBL_VENDOR_CURRENCY" description="COM_TJVENDORS_FORM_DESC_VENDOR_CURRENCY" hint="COM_TJVENDORS_FORM_LBL_VENDOR_CURRENCY" filter="" /> | ||
<field name="currency_unchange" type="text" label="COM_TJVENDORS_FORM_LBL_VENDOR_CURRENCY" description="COM_TJVENDORS_FORM_DESC_VENDOR_CURRENCY" hint="COM_TJVENDORS_FORM_LBL_VENDOR_CURRENCY" filter="" readonly="true" class="readonly required" /> | ||
<field name="percent_commission" type="number" size="40" class="inputbox validate-numeric" label="COM_TJVENDORS_VENDORS_PERCENT_COMMISSION" description="COM_TJVENDORS_FORM_DESC_VENDOR_PERCENT_COMMISSION" hint="COM_TJVENDORS_VENDORS_PERCENT_COMMISSION" min="0" max="100" filter="" /> | ||
<field name="flat_commission" type="number" min="0" size="40" default="0" class="inputbox validate-numeric" label="COM_TJVENDORS_FORM_LBL_VENDOR_FLAT_COMMISSION" description="COM_TJVENDORS_FORM_DESC_VENDOR_FLAT_COMMISSION" hint="COM_TJVENDORS_FORM_LBL_VENDOR_FLAT_COMMISSION" filter="" /> | ||
<field | ||
name="id" | ||
type="int" | ||
label="COM_TJVENDORS_FORM_LBL_VENDOR_ID" | ||
readonly="true" | ||
class="readonly required" | ||
description="JGLOBAL_FIELD_ID_DESC" /> | ||
|
||
<field | ||
name="vendor_title" | ||
type="text" | ||
label="COM_TJVENDORS_FORM_LBL_VENDOR_TITLE" | ||
description="COM_TJVENDORS_FORM_DESC_VENDOR_TITLE" | ||
hint="COM_TJVENDORS_FORM_LBL_VENDOR_TITLE" | ||
filter="" | ||
readonly="true" | ||
class="readonly required" /> | ||
|
||
<field | ||
name="client" | ||
type="text" | ||
label="COM_TJVENDORS_FORM_LBL_VENDOR_CLIENT" | ||
description="COM_TJVENDORS_FORM_DESC_VENDOR_CLIENT" | ||
hint="COM_TJVENDORS_FORM_LBL_VENDOR_CLIENT" | ||
filter="" /> | ||
|
||
<field | ||
name="currency" | ||
type="text" | ||
label="COM_TJVENDORS_FORM_LBL_VENDOR_CURRENCY" | ||
description="COM_TJVENDORS_FORM_DESC_VENDOR_CURRENCY" | ||
required="true" | ||
hint="COM_TJVENDORS_FORM_LBL_VENDOR_CURRENCY" | ||
filter="" /> | ||
|
||
<field | ||
name="percent_commission" | ||
type="number" | ||
size="40" | ||
class="inputbox validate-numeric" | ||
label="COM_TJVENDORS_VENDORS_PERCENT_COMMISSION" | ||
description="COM_TJVENDORS_FORM_DESC_VENDOR_PERCENT_COMMISSION" | ||
hint="COM_TJVENDORS_VENDORS_PERCENT_COMMISSION" | ||
min="0" max="100" | ||
filter="" /> | ||
|
||
<field | ||
name="flat_commission" | ||
type="number" | ||
min="0" | ||
size="40" | ||
default="0" | ||
class="inputbox validate-numeric" | ||
label="COM_TJVENDORS_FORM_LBL_VENDOR_FLAT_COMMISSION" | ||
description="COM_TJVENDORS_FORM_DESC_VENDOR_FLAT_COMMISSION" | ||
hint="COM_TJVENDORS_FORM_LBL_VENDOR_FLAT_COMMISSION" filter="" /> | ||
</fieldset> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<extension type="component" version="3.0" method="upgrade"> | ||
<name>COM_TJVENDORS</name> | ||
<creationDate>22nd Oct 2019</creationDate> | ||
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<creationDate>20th Jan 2020</creationDate> | ||
<copyright>Copyright (C) 2016 - 2020 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<version>1.3.4</version> | ||
<version>1.3.5</version> | ||
<description>COM_TJVENDORS_PRODUCT_DESC</description> | ||
<install> | ||
<!-- Runs on install --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,12 @@ | |
<extension version="3.9" type="plugin" group="actionlog" method="upgrade"> | ||
<name>plg_actionlog_tjvendors</name> | ||
<author>Techjoomla</author> | ||
<creationDate>22nd Oct 2019</creationDate> | ||
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<creationDate>20th Jan 2020</creationDate> | ||
<copyright>Copyright (C) 2016 - 2020 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<version>1.3.4</version> | ||
<version>1.3.5</version> | ||
<description>PLG_ACTIONLOG_TJVENDORS_XML_DESCRIPTION</description> | ||
<files> | ||
<filename plugin="tjvendors">tjvendors.php</filename> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<extension version="3.9" type="plugin" group="privacy" method="upgrade"> | ||
<name>plg_privacy_tjvendors</name> | ||
<version>1.3.4</version> | ||
<creationDate>22nd Oct 2019</creationDate> | ||
<version>1.3.5</version> | ||
<creationDate>20th Jan 2020</creationDate> | ||
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<copyright>Copyright (C) 2016 - 2020 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<description>PLG_PRIVACY_TJVENDORS_XML_DESCRIPTION</description> | ||
<files> | ||
|