sale-client 4.3.69 → 4.3.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -933,7 +933,9 @@
|
|
|
933
933
|
num = num + 1
|
|
934
934
|
}
|
|
935
935
|
if (item.f_price_name === '阶梯2' || item.f_price_name === '阶梯3') {
|
|
936
|
-
|
|
936
|
+
if (item.f_gas > 0) {
|
|
937
|
+
num = num + 2
|
|
938
|
+
}
|
|
937
939
|
}
|
|
938
940
|
if (this.row.f_isdecimal === '是') {
|
|
939
941
|
str = str + item.f_price + ' x ' + item.f_gas + '+'
|
|
@@ -209,7 +209,7 @@ let getPrice = async function (self) {
|
|
|
209
209
|
await self.$LoadParams.loadParam(self.$login.f.orgid)
|
|
210
210
|
await self.$getConfig(self, 'ChargeMeter')
|
|
211
211
|
self.isGas = (self.row.f_collection_type == '按气量')
|
|
212
|
-
self.config.hasAudit = true
|
|
212
|
+
// self.config.hasAudit = true
|
|
213
213
|
let http = new HttpResetClass()
|
|
214
214
|
let param = {
|
|
215
215
|
tablename: 't_detailprice',
|