tplus-components-touch 3.56.7 → 3.57.1
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/dist/components/cloudPrint/printDispatch.js +13 -7
- package/dist/components/cloudPrint/printDispatch.js.map +1 -1
- package/dist/components/commonForm/addressPicker/index.js +8 -22
- package/dist/components/commonForm/addressPicker/index.js.map +1 -1
- package/dist/components/hotKey/index.js +5 -10
- package/dist/components/hotKey/index.js.map +1 -1
- package/dist/components/hotKey/localConfig.js +0 -13
- package/dist/components/hotKey/localConfig.js.map +1 -1
- package/dist/components/inventorySearch/store.js +2 -6
- package/dist/components/inventorySearch/store.js.map +1 -1
- package/dist/components/inventorySearch/tab.js +12 -14
- package/dist/components/inventorySearch/tab.js.map +1 -1
- package/dist/components/message/index.js +3 -11
- package/dist/components/message/index.js.map +1 -1
- package/dist/components/settlement/settlement.js +168 -155
- package/dist/components/settlement/settlement.js.map +1 -1
- package/dist/components/settlement/settlementStore.js +6 -11
- package/dist/components/settlement/settlementStore.js.map +1 -1
- package/dist/components/touchTable/index.js +0 -25
- package/dist/components/touchTable/index.js.map +1 -1
- package/package.json +2 -2
@@ -169,7 +169,7 @@ function _initializerWarningHelper(descriptor, context) {
|
|
169
169
|
var t = _mutantsMicrofx.i18n.getFixedT(null, 'newretail');
|
170
170
|
|
171
171
|
var SettlementStore = (_class = (_temp = _class2 = function () {
|
172
|
-
//
|
172
|
+
// 预售都是全款;预订是否全款,在点击确认支付时计算订金和商品金额计算得出
|
173
173
|
function SettlementStore() {
|
174
174
|
(0, _classCallCheck3.default)(this, SettlementStore);
|
175
175
|
|
@@ -180,7 +180,8 @@ var SettlementStore = (_class = (_temp = _class2 = function () {
|
|
180
180
|
if (params) this.cloudPrintArguments = params;
|
181
181
|
this.setNewStyle();
|
182
182
|
this.SettlementApi = _settlementApi2.default;
|
183
|
-
} //
|
183
|
+
} //type==2
|
184
|
+
|
184
185
|
|
185
186
|
(0, _createClass3.default)(SettlementStore, [{
|
186
187
|
key: 'initPaymodes',
|
@@ -1696,11 +1697,6 @@ var SettlementStore = (_class = (_temp = _class2 = function () {
|
|
1696
1697
|
_initDefineProp(this, 'newStyle', _descriptor, this);
|
1697
1698
|
|
1698
1699
|
this.isFull = true;
|
1699
|
-
this.isCanSettleOnQuickKey = true;
|
1700
|
-
|
1701
|
-
this.setCanSettleOnQuickKey = function (value) {
|
1702
|
-
_this13.isCanSettleOnQuickKey = value;
|
1703
|
-
};
|
1704
1700
|
|
1705
1701
|
_initDefineProp(this, 'setNewStyle', _descriptor2, this);
|
1706
1702
|
|
@@ -2203,6 +2199,9 @@ exports.default = SettlementStore;
|
|
2203
2199
|
var PayMode = exports.PayMode = (_class3 = function () {
|
2204
2200
|
//预订场景下,现场提货,且选项设置订金比例非100% or 取货最大补款数大于0时 为 true
|
2205
2201
|
function PayMode() {
|
2202
|
+
// this.amount=getFixedNumber(amount);
|
2203
|
+
// this.calcReserved();
|
2204
|
+
|
2206
2205
|
(0, _classCallCheck3.default)(this, PayMode);
|
2207
2206
|
this._counter = 0;
|
2208
2207
|
this.amount = 0;
|
@@ -2239,10 +2238,6 @@ var PayMode = exports.PayMode = (_class3 = function () {
|
|
2239
2238
|
_initDefineProp(this, 'setCouponNum', _descriptor15, this);
|
2240
2239
|
|
2241
2240
|
_initDefineProp(this, 'addDjqs', _descriptor16, this);
|
2242
|
-
|
2243
|
-
// this.amount=getFixedNumber(amount);
|
2244
|
-
// this.calcReserved();
|
2245
|
-
this.SettlementApi = _settlementApi2.default;
|
2246
2241
|
}
|
2247
2242
|
// @observable store = null;
|
2248
2243
|
//只是预订场景下,现场提货,且选项设置订金比例非100%时 为 true
|