sale-client-xianyang 3.3.445 → 3.3.447
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
|
@@ -713,6 +713,8 @@ let ChangeMeterService = {
|
|
|
713
713
|
f_user_id: row.f_user_id,
|
|
714
714
|
f_userfiles_id: row.f_userfiles_id,
|
|
715
715
|
version: row.version,
|
|
716
|
+
// 要求计入累购的情况下需要给 f_balance_gas 加上本次收费气量
|
|
717
|
+
f_balance_gas: (row.f_balance_gas - 0) + (model.f_pregas - 0),
|
|
716
718
|
f_total_gas: (model.f_pregas - 0) + (row.f_total_gas - 0),
|
|
717
719
|
f_total_fee: (model.f_preamount - 0) + (row.f_total_fee - 0)
|
|
718
720
|
// f_meter_base: (model.f_pregas - 0) + (row.f_total_gas - 0),
|
|
@@ -729,6 +731,8 @@ let ChangeMeterService = {
|
|
|
729
731
|
f_user_id: row.f_user_id,
|
|
730
732
|
f_userfiles_id: row.f_userfiles_id,
|
|
731
733
|
version: row.version,
|
|
734
|
+
// 要求计入累购的情况下需要给 f_balance_amount 加上本次收费金额
|
|
735
|
+
f_balance_amount: (row.f_balance_amount - 0) + (model.f_preamount - 0),
|
|
732
736
|
f_total_gas: (model.f_pregas - 0) + (row.f_total_gas - 0),
|
|
733
737
|
f_total_fee: (model.f_preamount - 0) + (row.f_total_fee - 0)
|
|
734
738
|
// f_meter_base: (model.f_pregas - 0) + (row.f_total_gas - 0),
|