Procházet zdrojové kódy

🐞 fix(修改数据):

修改数据
tags/小炒逻辑变更前
txb před 2 roky
rodič
revize
4ce6e72131
3 změnil soubory, kde provedl 13 přidání a 13 odebrání
  1. +5
    -5
      src/pages/order/cost-of-sales/index.jsx
  2. +3
    -3
      src/pages/order/gross-profit-store-sales/index.jsx
  3. +5
    -5
      src/pages/order/sales-gross-profit/index.jsx

+ 5
- 5
src/pages/order/cost-of-sales/index.jsx Zobrazit soubor

@@ -49,7 +49,7 @@ const LoadingCard = () => {

/**
* 销售成本分析
* @returns
* @returns
*/
export default function Index() {

@@ -82,16 +82,16 @@ export default function Index() {
//查询
const onQueryReportSalescost = async () => {
const jsonData = {
"storeId": storeIdArray,
"goodsId": goodsIdArray,
"goodsTypeId": goodsTypeArray,
"storeId": storeIdArray[0],
"goodsId": goodsIdArray[0],
"goodsTypeId": goodsTypeArray[0],
"begintime": timeRange[0],
"endtime": timeRange[1],
current,
pageSize
}
setShowLoading(true);
const response = await costSalesAPI.getReportSalescost({});
const response = await costSalesAPI.getReportSalescost(jsonData);
setShowLoading(false);
if (response.statusCode === 200) {
setCostSalesData(response.data.data);


+ 3
- 3
src/pages/order/gross-profit-store-sales/index.jsx Zobrazit soubor

@@ -29,7 +29,7 @@ const LoadingCard = () => {

/**
* 门店销售毛利分析
* @returns
* @returns
*/
export default function Index() {

@@ -56,14 +56,14 @@ export default function Index() {
//查询
const onQueryReportSalescost = async () => {
const jsonData = {
"storeId": storeIdArray,
"storeId": storeIdArray[0],
"begintime": timeRange[0],
"endtime": timeRange[1],
current,
pageSize
}
setShowLoading(true);
const response = await costSalesAPI.getReportOrgsalesmargin({});
const response = await costSalesAPI.getReportOrgsalesmargin(jsonData);
setShowLoading(false);
if (response.statusCode === 200) {
setCostSalesData(response.data.data);


+ 5
- 5
src/pages/order/sales-gross-profit/index.jsx Zobrazit soubor

@@ -34,7 +34,7 @@ const LoadingCard = () => {

/**
* 销售毛利分析
* @returns
* @returns
*/
export default function Index() {

@@ -67,16 +67,16 @@ export default function Index() {
//查询
const onQueryReportSalescost = async () => {
const jsonData = {
"storeId": storeIdArray,
"goodsId": goodsIdArray,
"goodsTypeId": goodsTypeArray,
"storeId": storeIdArray[0],
"goodsId": goodsIdArray[0],
"goodsTypeId": goodsTypeArray[0],
"begintime": timeRange[0],
"endtime": timeRange[1],
current,
pageSize
}
setShowLoading(true);
const response = await costSalesAPI.getReportSalesmargin({});
const response = await costSalesAPI.getReportSalesmargin(jsonData);
setShowLoading(false);
if (response.statusCode === 200) {
setCostSalesData(response.data.data);


Načítá se…
Zrušit
Uložit