Support #1900 » Func TaxPPN.js
| 1 |
var TaxPPN = null; |
|---|---|
| 2 |
Ext.Ajax.request({ |
| 3 |
async: false, |
| 4 |
method: 'POST', |
| 5 |
url: '/UserControl/GetStore', |
| 6 |
params: { |
| 7 |
tableName: 'PCMEPGENPARAM', |
| 8 |
param: 'Parameter[=]TAXPPN' |
| 9 |
},
|
| 10 |
success: function (response) { |
| 11 |
var results = Ext.decode(response.responseText); |
| 12 |
value1 = results.data[0].Value1; |
| 13 |
value2 = results.data[0].Value2; |
| 14 |
data_ = value1 + value2; |
| 15 |
console.log(data_); |
| 16 |
}
|
| 17 |
});
|
| 18 |
TaxPPN = data_; |