ts-glitter 18.3.1 → 18.3.2
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/lowcode/Entry.js +1 -1
- package/lowcode/Entry.ts +1 -1
- package/lowcode/cms-plugin/shopping-finance-setting.js +17 -3
- package/lowcode/cms-plugin/shopping-finance-setting.ts +276 -262
- package/lowcode/public-components/checkout/index.js +7 -7
- package/lowcode/public-components/checkout/index.ts +8 -7
- package/package.json +1 -1
- package/src/api-public/services/shopping.js +1 -0
- package/src/api-public/services/shopping.js.map +1 -1
- package/src/api-public/services/shopping.ts +3 -1
|
@@ -2026,13 +2026,15 @@ export class Shopping {
|
|
|
2026
2026
|
.filter((dd) => {
|
|
2027
2027
|
return (keyData as any)[dd.key] && (keyData as any)[dd.key].toggle;
|
|
2028
2028
|
})
|
|
2029
|
-
.filter((dd) => {
|
|
2029
|
+
.filter((dd:any) => {
|
|
2030
|
+
dd.custome_name=(keyData as any)[dd.key].custome_name;
|
|
2030
2031
|
if (carData.orderSource === 'POS') {
|
|
2031
2032
|
if (dd.key === 'ut_credit_card') {
|
|
2032
2033
|
(dd as any).pwd = (keyData as any)[dd.key]['pwd'];
|
|
2033
2034
|
}
|
|
2034
2035
|
return dd.type === 'pos';
|
|
2035
2036
|
} else {
|
|
2037
|
+
|
|
2036
2038
|
return dd.type !== 'pos';
|
|
2037
2039
|
}
|
|
2038
2040
|
});
|