...
|
...
|
@@ -241,14 +241,14 @@ $('.used-coin').on('click', '.modify', function() { |
|
|
});
|
|
|
|
|
|
// 添加备注-是否打印价格
|
|
|
$printPrice.printPrice = false; // 默认为false
|
|
|
$printPrice.printPrice = 'N'; // 默认为false
|
|
|
|
|
|
$('.print-price-radio').check({
|
|
|
type: 'radio',
|
|
|
group: 'print-price',
|
|
|
onChange: function(el, checked, value) {
|
|
|
if (checked) {
|
|
|
$printPrice.isPrintPrice = value === 1 ? true : false;
|
|
|
$printPrice.isPrintPrice = value === 1 ? 'Y' : 'N';
|
|
|
}
|
|
|
}
|
|
|
});
|
...
|
...
|
|