|
@@ -712,7 +712,7 @@ const importXML = (() => {
|
|
|
}
|
|
|
// 根据计税方式获取价格,一般计税对应不含税,简易对应含税
|
|
|
function getPriceByTaxType(gljSrc, taxType) {
|
|
|
- return taxType === TaxType.NORMAL
|
|
|
+ return +taxType === TaxType.NORMAL
|
|
|
? {
|
|
|
base_price: getValue(gljSrc, ['_NoTaxOrgPrice']),
|
|
|
market_price: getValue(gljSrc, ['_NoTaxPrice'])
|