@pisell/pisellos 2.2.35 → 2.2.36
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.
|
@@ -7,7 +7,6 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
7
7
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
8
8
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
9
9
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
10
|
-
import Decimal from 'decimal.js';
|
|
11
10
|
import { getScheduleStartEndTimePoints } from "../modules/schedule/utils";
|
|
12
11
|
import { getUniqueId } from "../../modules/Cart/utils";
|
|
13
12
|
|
|
@@ -121,9 +120,6 @@ export function applyPriceDataToProducts(products, priceData) {
|
|
|
121
120
|
if (priceBi) {
|
|
122
121
|
// 处理 markdown 类型
|
|
123
122
|
var price = priceBi.price;
|
|
124
|
-
if (priceBi.price_type === 'markdown') {
|
|
125
|
-
price = new Decimal(price || 0).mul(-1).toNumber();
|
|
126
|
-
}
|
|
127
123
|
return _objectSpread(_objectSpread({}, bi), {}, {
|
|
128
124
|
price: String(price),
|
|
129
125
|
base_price: String(priceBi.base_price)
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
var __create = Object.create;
|
|
2
1
|
var __defProp = Object.defineProperty;
|
|
3
2
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
6
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
5
|
var __export = (target, all) => {
|
|
8
6
|
for (var name in all)
|
|
@@ -16,14 +14,6 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
14
|
}
|
|
17
15
|
return to;
|
|
18
16
|
};
|
|
19
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
-
mod
|
|
26
|
-
));
|
|
27
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
18
|
|
|
29
19
|
// src/server/utils/product.ts
|
|
@@ -34,7 +24,6 @@ __export(product_exports, {
|
|
|
34
24
|
getIsSessionProduct: () => getIsSessionProduct
|
|
35
25
|
});
|
|
36
26
|
module.exports = __toCommonJS(product_exports);
|
|
37
|
-
var import_decimal = __toESM(require("decimal.js"));
|
|
38
27
|
var import_utils = require("../modules/schedule/utils");
|
|
39
28
|
var import_utils2 = require("../../modules/Cart/utils");
|
|
40
29
|
function buildPriceIndexMap(priceData) {
|
|
@@ -108,9 +97,6 @@ function applyPriceDataToProducts(products, priceData) {
|
|
|
108
97
|
const priceBi = groupItemMap.get(bi.id);
|
|
109
98
|
if (priceBi) {
|
|
110
99
|
let price = priceBi.price;
|
|
111
|
-
if (priceBi.price_type === "markdown") {
|
|
112
|
-
price = new import_decimal.default(price || 0).mul(-1).toNumber();
|
|
113
|
-
}
|
|
114
100
|
return {
|
|
115
101
|
...bi,
|
|
116
102
|
price: String(price),
|