Inital commit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
ef61115b4310718797e2bf2c2444f48f
|
||||
@@ -0,0 +1,3 @@
|
||||
table#combinations_list > tbody > tr.purchase-price > td {
|
||||
border-top: none;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
table#combinations_list > tbody > tr.purchase-price > td {
|
||||
border-top: none;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/* Hide professional fields if the customer is not a professional one. */
|
||||
$('#customer_family_code_select').change(function(){
|
||||
var data_code = $('#customer_family_code_select option:selected').attr('data-code');
|
||||
$('#customer-family-extra-fields').css(
|
||||
'display',
|
||||
(data_code === 'particular' || data_code === 'none') ? 'none' : 'block'
|
||||
);
|
||||
});
|
||||
@@ -0,0 +1,4 @@
|
||||
$("a.action-btn[href='#product_creation_dialog']").click(function() {
|
||||
$('#price_without_tax').val(0);
|
||||
$('#price_with_tax').val(0);
|
||||
});
|
||||
Reference in New Issue
Block a user